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
Clusters accept extensions such as Telepresence. The way the plugin extracts information conflicts with the extension config. In the case of namespaces we are using kubectl config view --minify --output 'jsonpath={..namespace}' and this json query searches for every occurrence of namespace which can lead to conflict with other parts of configuration.
I fix this issue by revising the query to .contexts[].context.namespace, fixing the problem and minimizing conflicts if the solution seems adequate, I'd be happy to prepare a pull request.
The text was updated successfully, but these errors were encountered:
Clusters accept extensions such as Telepresence. The way the plugin extracts information conflicts with the extension config. In the case of namespaces we are using
kubectl config view --minify --output 'jsonpath={..namespace}'
and this json query searches for every occurrence ofnamespace
which can lead to conflict with other parts of configuration.I fix this issue by revising the query to
.contexts[].context.namespace
, fixing the problem and minimizing conflicts if the solution seems adequate, I'd be happy to prepare a pull request.The text was updated successfully, but these errors were encountered: