mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-26 10:06:13 +01:00
8e492c9450
Signed-off-by: magic_rb <magic_rb@redalder.org>
26 lines
661 B
Nix
26 lines
661 B
Nix
{
|
|
fetchFromGitHub,
|
|
runCommandNoCC,
|
|
kubernetes-helm,
|
|
formats,
|
|
lib,
|
|
istioctl,
|
|
}: let
|
|
inherit
|
|
(lib)
|
|
getExe'
|
|
;
|
|
istioSrc =
|
|
istioctl.src
|
|
+ "/manifests/charts";
|
|
|
|
extractHelmChart = helmChart: values: name: attrs:
|
|
runCommandNoCC (name + ".yaml") attrs ''
|
|
(
|
|
${getExe' kubernetes-helm "helm"} template --namespace kube-system -f ${(formats.json {}).generate "values.yaml" values} ${helmChart}/base
|
|
${getExe' kubernetes-helm "helm"} template --namespace kube-system -f ${(formats.json {}).generate "values.yaml" values} ${helmChart}/istiod
|
|
) > $out
|
|
'';
|
|
in
|
|
extractHelmChart istioSrc {} "istio" {}
|