10 lines
156 B
Plaintext
Raw Normal View History

2022-04-17 21:28:35 +02:00
#!/usr/bin/env bash
2023-10-07 10:43:32 +02:00
2022-04-17 21:28:35 +02:00
set -euo pipefail
2023-10-07 10:43:32 +02:00
if ! context=$(kubectl config get-contexts -o name | fzf); then
2022-06-09 05:49:10 +02:00
exit $?
2022-04-17 21:28:35 +02:00
fi
kubectl config use-context "$context"