blob: 52da1ba32c5cdcd7c32ae595638ff4e7b722ea13 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
{ pkgs, ... }:
with pkgs;
third_party.writeShellScriptBin "kontemplate" ''
export PATH="${ops.kms_pass}/bin:$PATH"
if [[ -z $1 ]]; then
exec ${ops.kontemplate}/bin/kontemplate
fi
exec ${ops.kontemplate}/bin/kontemplate $1 ${./../..}/ops/infra/kubernetes/primary-cluster.yaml ''${@:2}
''
|