Add config for kubectl and krew
This commit is contained in:
15
rc.d/kubectl
Normal file
15
rc.d/kubectl
Normal 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
|
Reference in New Issue
Block a user