7 lines
183 B
Plaintext
7 lines
183 B
Plaintext
function _kns() {
|
|
mapfile -t COMPREPLY < <(compgen -W \
|
|
"$(kubectl get namespace -o jsonpath='{..metadata.name}')" \
|
|
-- "${COMP_WORDS[1]}")
|
|
}
|
|
complete -F _kns kns
|