Merge pull request #117671 from pawbana/enable-auth-provider-in-test

Set ENABLE_AUTH_PROVIDER_GCP to true in gce tests
This commit is contained in:
Kubernetes Prow Robot 2023-04-28 14:14:27 -07:00 committed by GitHub
commit be7b2eeec6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -600,3 +600,11 @@ export TLS_CIPHER_SUITES=""
# CLOUD_PROVIDER_FLAG defines the cloud-provider value presented to KCM, apiserver,
# and kubelet
export CLOUD_PROVIDER_FLAG="${CLOUD_PROVIDER_FLAG:-gce}"
# When ENABLE_AUTH_PROVIDER_GCP is set, following flags for out-of-tree credential provider for GCP
# are presented to kubelet:
# --image-credential-provider-config=${path-to-config}
# --image-credential-provider-bin-dir=${path-to-auth-provider-binary}
# Also, it is required that DisableKubeletCloudCredentialProviders and KubeletCredentialProviders
# feature gates are set to true for kubelet to use external credential provider.
ENABLE_AUTH_PROVIDER_GCP="${ENABLE_AUTH_PROVIDER_GCP:-true}"