mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-27 10:36:12 +01:00
26 lines
442 B
Nix
26 lines
442 B
Nix
|
{
|
||
|
fetchFromGitHub,
|
||
|
runCommandNoCC,
|
||
|
kubernetes-helm,
|
||
|
formats,
|
||
|
lib,
|
||
|
istioctl,
|
||
|
}: {
|
||
|
helmChart,
|
||
|
values ? {},
|
||
|
name,
|
||
|
attrs ? {},
|
||
|
namespace ? "default",
|
||
|
}: let
|
||
|
inherit
|
||
|
(lib)
|
||
|
getExe'
|
||
|
;
|
||
|
in
|
||
|
runCommandNoCC (name + ".yaml") attrs ''
|
||
|
${getExe' kubernetes-helm "helm"} template \
|
||
|
--namespace ${namespace} \
|
||
|
-f ${(formats.json {}).generate "values.yaml" values} \
|
||
|
${name} ${helmChart} > $out
|
||
|
''
|