From 75310de9425184905cda6137c3326aa10614a281 Mon Sep 17 00:00:00 2001 From: Reto Lehmann Date: Tue, 16 Jul 2024 00:57:17 +0200 Subject: [PATCH] Update TLS test matrix (#15394) * Update TLS test matrix for istio and contour * Remove contour-tls from test matrix --- test/e2e-common.sh | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/test/e2e-common.sh b/test/e2e-common.sh index b4fbdeb91cae..369a663fe170 100644 --- a/test/e2e-common.sh +++ b/test/e2e-common.sh @@ -389,10 +389,12 @@ function install() { fi if (( ENABLE_TLS )); then - echo "Patch config-network to enable encryption features" - toggle_feature system-internal-tls enabled config-network - - if [[ "$INGRESS_CLASS" == "kourier.ingress.networking.knative.dev" ]] || [[ "$INGRESS_CLASS" == "istio.ingress.networking.knative.dev" ]]; then + if [[ "$INGRESS_CLASS" == "kourier.ingress.networking.knative.dev" ]] || [[ "$INGRESS_CLASS" == "contour.ingress.networking.knative.dev" ]]; then + echo "Patch config-network to enable system-internal-tls feature (kourier/contour)" + toggle_feature system-internal-tls enabled config-network + fi + if [[ "$INGRESS_CLASS" == "kourier.ingress.networking.knative.dev" ]] || [[ "$INGRESS_CLASS" == "istio.ingress.networking.knative.dev" ]] || [[ "$INGRESS_CLASS" == "contour.ingress.networking.knative.dev" ]]; then + echo "Patch config-network to enable cluster-local-domain-tls feature (kourier/istio/contour)" toggle_feature cluster-local-domain-tls enabled config-network fi