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
when a Project has a name with spaces in it, this results in generated commands in the kubectl config helper UI being broken due to the spaces. eg.:
Set up the credentials: kubectl config set-credentials [email protected]_acp-test_ACP Test Team --token=a1b2c3-...etc Set up the context: kubectl config set-context acp-test_ACP Test Team --cluster=acp-test [email protected]_acp-test_ACP Test Team Now you can access the cluster: kubectl --context=acp-test_ACP Test Team --namespace=<namespace> get pods
suggestions:
quote the user and context name in all cases
replace spaces with another valid non whitespace character on command generation
backend/frontend validate input of Project names to make spaces invalid
The text was updated successfully, but these errors were encountered:
when a Project has a name with spaces in it, this results in generated commands in the kubectl config helper UI being broken due to the spaces.
eg.:
Set up the credentials:
kubectl config set-credentials [email protected]_acp-test_ACP Test Team --token=a1b2c3-...etc
Set up the context:
kubectl config set-context acp-test_ACP Test Team --cluster=acp-test [email protected]_acp-test_ACP Test Team
Now you can access the cluster:
kubectl --context=acp-test_ACP Test Team --namespace=<namespace> get pods
suggestions:
The text was updated successfully, but these errors were encountered: