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
I added some spaces character in my Kubernetes contexte name. For example my first cluster.
In such a case, running the plugin give the following result, and returned code is 1.
kubectl node-shell my-node
Error: flags cannot be placed before plugin name: --context=my
A workaround is to generated a (temporary) kube config file without space, like this: kubectl config view --minify --flatten | sed -r 's/: ([[:alnum:]-]+) /: \1-/;s/: ([[:alnum:]-]+) /: \1-/', and use it with this plugin.
The text was updated successfully, but these errors were encountered:
I added some spaces character in my Kubernetes contexte name. For example my first cluster.
In such a case, running the plugin give the following result, and returned code is 1.
A workaround is to generated a (temporary) kube config file without space, like this:
kubectl config view --minify --flatten | sed -r 's/: ([[:alnum:]-]+) /: \1-/;s/: ([[:alnum:]-]+) /: \1-/'
, and use it with this plugin.The text was updated successfully, but these errors were encountered: