8 lines
174 B
Plaintext
8 lines
174 B
Plaintext
|
#!/usr/bin/env sh
|
||
|
kubectl get namespaces --show-labels | \
|
||
|
uniq | \
|
||
|
sort | \
|
||
|
cut -d ' ' -f1 | \
|
||
|
fzf | \
|
||
|
xargs -I{} kubectl config set-context --current --namespace='{}'
|