🔨 chore: add KUBECONFIG check (and reword it)

Signed-off-by: dyn <oss+dyn@xtrm.me>
This commit is contained in:
dyn
2025-12-18 14:06:18 +01:00
parent 49b642ed4f
commit 8a95776286
2 changed files with 12 additions and 1 deletions

View File

@ -1,7 +1,10 @@
#!/usr/bin/env sh
if [ -z "$KUBECONFIG" ]; then
echo "KUBECONFIG is not set"
echo "KUBECONFIG is not set!"
echo
echo "You can add it to your .bashrc or .zshrc:"
echo '> export KUBECONFIG="$HOME/.kube/config"'
exit 1
fi