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-sql support resource paths that include lists by using the list index as a field key.
# Get the memory request for the first container.
kubectl-sql --all-namespaces get pods where "spec.containers.1.resources.requests.memory = 200Mi"
Identifier escaping
If identifier include characters that need escaping ( e.g. "-" or ":") it is possible
to escape the identifier name by wrapping it with [...] , `...` or "..."