You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
kubectl supports setting KUBECONFIG to a colon-delimited list of configuration files (KUBECONFIG=/path/to/config1:/some/other/config:$HOME/.kube/config). This is also supported by the underlying client-go package.
kubestr falls over when KUBECONFIG is configured with mulitple config files:
$ kubestr
stat /home/lars/.kube/configs/default:/home/lars/.kube/configs/cluster1:/home/lars/.kube/configs/cluster2
Error: ...:: no such file or directory
It's possible to work around that by giving kubestr a KUBECONFIG of it's very own:
kubectl
supports settingKUBECONFIG
to a colon-delimited list of configuration files (KUBECONFIG=/path/to/config1:/some/other/config:$HOME/.kube/config
). This is also supported by the underlyingclient-go
package.kubestr
falls over whenKUBECONFIG
is configured with mulitple config files:It's possible to work around that by giving
kubestr
aKUBECONFIG
of it's very own:But it would be nice if
kubestr
would support the same semantics askubectl
.The text was updated successfully, but these errors were encountered: