13 lines
305 B
Nix
13 lines
305 B
Nix
{ depot, ... }:
|
|
|
|
with depot;
|
|
|
|
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}
|
|
''
|