From 70d607d87e4073fd97fd2ac1c0c7dad83320dde9 Mon Sep 17 00:00:00 2001 From: Ryan Richard Date: Fri, 16 Apr 2021 18:32:30 -0700 Subject: [PATCH] prepare-supervisor-on-kind.sh was accidentally double base64 encoding $PINNIPED_TEST_SUPERVISOR_UPSTREAM_OIDC_ISSUER_CA_BUNDLE was recently changed to be a base64 encoded value, so this script does not need to base64 encode the value itself anymore. --- hack/prepare-supervisor-on-kind.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hack/prepare-supervisor-on-kind.sh b/hack/prepare-supervisor-on-kind.sh index d2645de8..5fccad0a 100755 --- a/hack/prepare-supervisor-on-kind.sh +++ b/hack/prepare-supervisor-on-kind.sh @@ -82,7 +82,7 @@ metadata: spec: issuer: "$PINNIPED_TEST_SUPERVISOR_UPSTREAM_OIDC_ISSUER" tls: - certificateAuthorityData: "$(echo "$PINNIPED_TEST_SUPERVISOR_UPSTREAM_OIDC_ISSUER_CA_BUNDLE" | base64)" + certificateAuthorityData: "$PINNIPED_TEST_SUPERVISOR_UPSTREAM_OIDC_ISSUER_CA_BUNDLE" authorizationConfig: additionalScopes: [ ${PINNIPED_TEST_SUPERVISOR_UPSTREAM_OIDC_ADDITIONAL_SCOPES} ] claims: