Move the kubelet yaml config into nix.

This commit is contained in:
Tom Alexander
2025-12-29 21:54:27 -05:00
parent a7f2a97125
commit 5ab245b124
4 changed files with 53 additions and 31 deletions

View File

@@ -267,7 +267,15 @@ makeScope newScope (
helm_namespace = "kube-system";
helm_path = "charts/coredns";
helm_manifest_name = "coredns.yaml";
helm_values = { };
helm_values = {
"service" = {
"clusterIP" = "fd00:3e42:e349::10";
"clusterIPs" = [
"fd00:3e42:e349::10"
"10.197.0.10"
];
};
};
}
));
all_keys = (callPackage ./package/k8s-keys/package.nix additional_vars);