This repository has been archived on 2021-04-14. You can view files and clone it, but cannot push or open issues/pull-requests.
|
_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
|