Kubernetes: kubectl alias

This commit is contained in:
Filippo Berto 2023-11-28 18:11:44 +01:00
parent 1e97b179af
commit f83909a7fc
Signed by: bertof
GPG key ID: 9DBF7E6A1D2CE9ED

View file

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