mirror of
https://github.com/ahmetb/kubectx.git
synced 2025-10-21 19:02:13 +00:00
9 lines
208 B
Bash
9 lines
208 B
Bash
_kube_contexts()
|
|
{
|
|
local curr_arg;
|
|
curr_arg=${COMP_WORDS[COMP_CWORD]}
|
|
COMPREPLY=( $(compgen -W "- $(kubectl config get-contexts --output='name')" -- $curr_arg ) );
|
|
}
|
|
|
|
complete -F _kube_contexts kubectx
|