diff options
Diffstat (limited to '')
-rw-r--r-- | modules/common/profiles/dev/containers.nix | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/modules/common/profiles/dev/containers.nix b/modules/common/profiles/dev/containers.nix index da6b0e1..06826f9 100644 --- a/modules/common/profiles/dev/containers.nix +++ b/modules/common/profiles/dev/containers.nix @@ -33,7 +33,6 @@ in { clusterctl cmctl datree - helm istioctl k9s kubeconform @@ -42,8 +41,9 @@ in { kubectl-images kubectl-tree kubectx - kubelogin + kubelogin-oidc kubent + kubernetes-helm kubescape kubeseal kubespy @@ -51,18 +51,18 @@ in { skaffold skopeo stern - telepresence + telepresence2 werf ]; }; programs.bash = { shellAliases = with pkgs; { - b = "${buildah}/bin/buildah"; - h = "${helm}/bin/helm"; - k = "${kubectl}/bin/kubectl"; - kns = "${kubectx}/bin/kubens"; - ktx = "${kubectx}/bin/kubectx"; + b = "buildah"; + h = "helm"; + k = "kubectl"; + kns = "kubens"; + ktx = "kubectx"; }; initExtra = mkAfter '' _complete_alias b _buildah buildah |