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
flags.StringVar(&o.ClientClusterContext, options.FlagClusterContextName, "", "Client context to use for cluster administrator")
229
229
flags.BoolVar(&o.PreventModification, options.FlagPreventModificationName, false, "If true, may be set to prevent diagnostics making any changes via the API")
Copy file name to clipboardexpand all lines: test/cmd/config.sh
+2-1
Original file line number
Diff line number
Diff line change
@@ -31,7 +31,8 @@ os::cmd::expect_success_and_not_text 'oc get bc' 'does not exist'
31
31
32
32
os::cmd::expect_failure_and_text 'env -u KUBERNETES_SERVICE_HOST oc get buildconfigs --context="test"''context was not found for specified context: test'
33
33
os::cmd::expect_failure_and_text 'env -u KUBERNETES_SERVICE_HOST oc get buildconfigs --cluster="test"''no server found for cluster "test"'
34
-
os::cmd::expect_failure_and_text 'env -u KUBERNETES_SERVICE_HOST oc get buildconfigs --user="test"''auth info "test" does not exist'
34
+
# need some level of default (both upstream and here) to get the pretty auth message because you fail on namespace first.
35
+
os::cmd::expect_failure_and_text 'KUBERNETES_MASTER=anything env -u KUBERNETES_SERVICE_HOST oc get buildconfigs --user="test"''auth info "test" does not exist'
35
36
36
37
os::cmd::expect_failure_and_text 'oc get bc --config=missing''missing: no such file or directory'
0 commit comments