9 lines
254 B
Bash
9 lines
254 B
Bash
|
_kube_namespaces()
|
||
|
{
|
||
|
local curr_arg;
|
||
|
curr_arg=${COMP_WORDS[COMP_CWORD]}
|
||
|
COMPREPLY=( $(compgen -W "- $(kubectl get namespaces -o=jsonpath='{range .items[*].metadata.name}{@}{"\n"}{end}')" -- $curr_arg ) );
|
||
|
}
|
||
|
|
||
|
complete -F _kube_namespaces kubens kns
|