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
{{ message }}
This repository was archived by the owner on Nov 19, 2020. It is now read-only.
Because we already use the empty string "" to indicate AllNamespaces
it's unclear if the following statement is attempting to list all
namespaces or have the namespace value defaulted:
client.List(ctx, "", &deployments)
Alternatives such as creating another special variable:
client.List(ctx, k8s.DefaultNamespace, &deployments)
Seem clunckier than just doing:
cleint.List(ctx, client.Namespace, &deployments)
0 commit comments