Files
kubectx/completion/kubectx.bash
Ahmet Alp Balkan 17b32b1f64 Add basic bash completion
Signed-off-by: Ahmet Alp Balkan <ahmetb@google.com>
2017-04-04 12:29:27 -07:00

8 lines
223 B
Bash

_kube_contexts()
{
local curr_arg;
curr_arg=${COMP_WORDS[COMP_CWORD]}
COMPREPLY=( $(compgen -W "- $(kubectl config get-contexts | awk '{print $2}' | tail -n +2)" -- $curr_arg ) );
}
complete -F _kube_contexts kubectx