Add some scripts that are helpful for configuring kubernetes.

This commit is contained in:
Tom Alexander
2025-03-08 17:22:32 -05:00
parent 84bd6be8e6
commit 2b54630053
2 changed files with 7 additions and 0 deletions

View File

@@ -48,6 +48,12 @@ in
};
};
}
(lib.mkIf config.me.kubernetes.enable {
environment.systemPackages = with pkgs; [
tfk8s # Converts k8s yaml manifests to terraform kubernetes_manifest.
k2tf # Converts k8s yaml manifests to terraform real types.
];
})
]
);
}