From 08cebd166667ee527e2e958eb5322083b628605d Mon Sep 17 00:00:00 2001 From: Alex Snaps Date: Mon, 28 Oct 2024 09:22:51 -0400 Subject: [PATCH] Default to use v1beta3 in e2e tests Signed-off-by: Alex Snaps --- tests/e2e-test.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/e2e-test.sh b/tests/e2e-test.sh index 3e502eed..fefb7f70 100755 --- a/tests/e2e-test.sh +++ b/tests/e2e-test.sh @@ -8,7 +8,7 @@ for cmd in realpath kubectl curl jq base64; do done namespace=${NAMESPACE:-"authorino"} -authconfig_version=${AUTHCONFIG_VERSION:-"v1beta2"} +authconfig_version=${AUTHCONFIG_VERSION:-"v1beta3"} authconfig=${AUTHCONFIG:-"$(dirname $(realpath $0))/${authconfig_version}/authconfig.yaml"} authconfig_invalid=${AUTHCONFIG_INVALID:-"$(dirname $(realpath $0))/${authconfig_version}/authconfig-invalid.yaml"} verbose=${VERBOSE}