Allow for no kubeconfig

This commit is contained in:
Thomas Forgione 2023-04-22 11:08:04 +02:00
parent 969f042778
commit fe37aaac19
1 changed files with 2 additions and 2 deletions

View File

@ -120,8 +120,8 @@ if [ $? -eq 0 ]; then
kube() {
local kube_config=$HOME/.kubes/$1/config
if [ $# -ne 1 ]; then
echo >&2 error: kube expects a single argument
return 1
rm ~/.kubes/current-cube
export KUBECONFIG=""
elif [ ! -f $kube_config ]; then
echo >&2 error: no such kube config: $kube_config
return 1