Kubernetes: add helm plugins

This commit is contained in:
Filippo Berto 2023-11-02 20:54:25 +01:00
parent 7b77fe874a
commit a2924f4caf
No known key found for this signature in database
GPG key ID: FE98AE5EC52B1056

View file

@ -1,4 +1,14 @@
{ pkgs, ... }: {
home.packages =
builtins.attrValues { inherit (pkgs) awscli2 kubectl kubernetes-helm openlens; };
home.packages = [
(pkgs.wrapHelm pkgs.kubernetes-helm {
plugins = with pkgs.kubernetes-helmPlugins; [
helm-diff
helm-secrets
];
})
pkgs.kubectl
# pkgs.kustomize
pkgs.awscli2
pkgs.openlens
];
}