Add config for kubectl and krew

This commit is contained in:
Xavier Logerais 2020-11-18 12:44:46 +01:00
parent 799201d887
commit cc25e775d3
2 changed files with 21 additions and 0 deletions

6
rc.d/krew Normal file
View File

@ -0,0 +1,6 @@
#!/bin/bash
if [ -d ~/.krew/bin ]
then
export PATH="${KREW_ROOT:-$HOME/.krew}/bin:$PATH"
fi

15
rc.d/kubectl Normal file
View File

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