nix/scripts/bin/kubfn
2023-09-05 15:15:43 -05:00

13 lines
243 B
Bash
Executable file

#!/usr/bin/env sh
has_command kubectl || {
echo "kubectl command not found"
exit 1
}
kubectl get namespaces --show-labels | \
uniq | \
sort | \
cut -d ' ' -f1 | \
sk | \
xargs -I{} kubectl config set-context --current --namespace='{}'