about summary refs log tree commit diff
path: root/pkgs/applications/networking/cluster/kubernetes
diff options
context:
space:
mode:
authorArthur Koziel <arthur@arthurkoziel.com>2022-04-21 09:34:37 +0800
committerzowoq <59103226+zowoq@users.noreply.github.com>2022-04-21 12:58:44 +1000
commitcdfcc5cecf00fd0be74c1e03effe10970212576a (patch)
tree1c885aa2fd85c33975220359c14a73fc4fa20f6c /pkgs/applications/networking/cluster/kubernetes
parentee7879090119123ba8608208cb436d09fd26ab64 (diff)
kubectl: add fish completions
Install completions for fish shell
Diffstat (limited to 'pkgs/applications/networking/cluster/kubernetes')
-rw-r--r--pkgs/applications/networking/cluster/kubernetes/kubectl.nix1
1 files changed, 1 insertions, 0 deletions
diff --git a/pkgs/applications/networking/cluster/kubernetes/kubectl.nix b/pkgs/applications/networking/cluster/kubernetes/kubectl.nix
index b1c15458543d3..ae8db695b9fe0 100644
--- a/pkgs/applications/networking/cluster/kubernetes/kubectl.nix
+++ b/pkgs/applications/networking/cluster/kubernetes/kubectl.nix
@@ -25,6 +25,7 @@ stdenv.mkDerivation rec {
 
     installShellCompletion --cmd kubectl \
       --bash <($out/bin/kubectl completion bash) \
+      --fish <($out/bin/kubectl completion fish) \
       --zsh <($out/bin/kubectl completion zsh)
     runHook postInstall
   '';