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
`client.Client` and `kube.Ctl` treated `namespace` (`client.InNamespace`) as an
optional parameter. If not provided, it default to `"default"`.
This parameter has been missed multiple times across various places in our
codebase and resulted in latent errors, often because tests utilised the
default namespace.
This commit changes the signature of `Ctl.List` to require a `namespace string`
parameter to make it impossible to forget. It additionally adds it to a few
places (lifecycle client) that it was previously forgotten.
0 commit comments