Skip to content

Commit

Permalink
Update TLS test matrix (#15394)
Browse files Browse the repository at this point in the history
* Update TLS test matrix for istio and contour

* Remove contour-tls from test matrix
  • Loading branch information
ReToCode authored Jul 15, 2024
1 parent 44a5d78 commit 75310de
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions test/e2e-common.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 75310de

Please sign in to comment.