Skip to content

Commit 23e32b1

Browse files
committed
Fix in-cluster kubectl --namespace override
Before this change, if the config was empty, ConfirmUsable() would return an "invalid configuration" error instead of examining and honoring the value of the --namespace flag. This change looks at the overrides first, and returns the overridden value if it exists before attempting to check if the config is usable. This is most applicable to in-cluster clients, where they don't have a kubeconfig but they do have a token and can use KUBERNETES_SERVICE_HOST/_PORT.
1 parent 1e21058 commit 23e32b1

File tree

2 files changed

+31
-5
lines changed

2 files changed

+31
-5
lines changed

staging/src/k8s.io/client-go/tools/clientcmd/client_config.go

+9-5
Original file line numberDiff line numberDiff line change
@@ -296,6 +296,14 @@ func canIdentifyUser(config restclient.Config) bool {
296296

297297
// Namespace implements ClientConfig
298298
func (config *DirectClientConfig) Namespace() (string, bool, error) {
299+
if config.overrides != nil && config.overrides.Context.Namespace != "" {
300+
// In the event we have an empty config but we do have a namespace override, we should return
301+
// the namespace override instead of having config.ConfirmUsable() return an error. This allows
302+
// things like in-cluster clients to execute `kubectl get pods --namespace=foo` and have the
303+
// --namespace flag honored instead of being ignored.
304+
return config.overrides.Context.Namespace, true, nil
305+
}
306+
299307
if err := config.ConfirmUsable(); err != nil {
300308
return "", false, err
301309
}
@@ -309,11 +317,7 @@ func (config *DirectClientConfig) Namespace() (string, bool, error) {
309317
return v1.NamespaceDefault, false, nil
310318
}
311319

312-
overridden := false
313-
if config.overrides != nil && config.overrides.Context.Namespace != "" {
314-
overridden = true
315-
}
316-
return configContext.Namespace, overridden, nil
320+
return configContext.Namespace, false, nil
317321
}
318322

319323
// ConfigAccess implements ClientConfig

staging/src/k8s.io/client-go/tools/clientcmd/client_config_test.go

+22
Original file line numberDiff line numberDiff line change
@@ -504,3 +504,25 @@ func matchByteArg(expected, got []byte, t *testing.T) {
504504
t.Errorf("Expected %v, got %v", expected, got)
505505
}
506506
}
507+
508+
func TestNamespaceOverride(t *testing.T) {
509+
config := &DirectClientConfig{
510+
overrides: &ConfigOverrides{
511+
Context: clientcmdapi.Context{
512+
Namespace: "foo",
513+
},
514+
},
515+
}
516+
517+
ns, overridden, err := config.Namespace()
518+
519+
if err != nil {
520+
t.Errorf("Unexpected error: %v", err)
521+
}
522+
523+
if !overridden {
524+
t.Errorf("Expected overridden = true")
525+
}
526+
527+
matchStringArg("foo", ns, t)
528+
}

0 commit comments

Comments
 (0)