feat: refacto aliases/completion kubectl, helm, stern

This commit is contained in:
2023-04-03 10:38:42 +02:00
parent 2cae0f7d03
commit 0e58fa99f4
4 changed files with 4 additions and 13 deletions

View File

@@ -1,9 +0,0 @@
#!/bin/bash
if (which helm &> /dev/null)
then
# activate completion
source <( helm completion bash )
fi

View File

@@ -1,17 +0,0 @@
#!/bin/bash
if (which kubectl &> /dev/null)
then
# activate completion
source <(kubectl completion bash)
# create a quick alias
alias k=kubectl
alias ks="kubectl --namespace kube-system"
# add completion for the alias as well
complete -o default -F __start_kubectl k
complete -o default -F __start_kubectl ks
fi

View File

@@ -1,9 +0,0 @@
#!/bin/bash
if (which stern &> /dev/null)
then
# activate completion
source <(stern --completion bash)
fi