Skip to content

Commit

Permalink
Disable mTLS on Istio 1.3 (knative#5726)
Browse files Browse the repository at this point in the history
This patch disables mTLS on Istio 1.3.
  • Loading branch information
nak3 authored and knative-prow-robot committed Oct 1, 2019
1 parent f5b7081 commit 1525fac
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion test/e2e-common.sh
Original file line number Diff line number Diff line change
Expand Up @@ -337,7 +337,12 @@ function test_setup() {
echo ">> Creating test resources (test/config/)"
ko apply ${KO_FLAGS} -f test/config/ || return 1
if (( ISTIO_MESH )); then
ko apply ${KO_FLAGS} -f test/config/mtls/ || return 1
if [[ ${ISTIO_VERSION} =~ 1.3.* ]]; then
# TODO: Enable mTLS with Istio 1.3 once https://github.com/knative/serving/issues/5725 is identified.
continue
else
ko apply ${KO_FLAGS} -f test/config/mtls/ || return 1
fi
fi
${REPO_ROOT_DIR}/test/upload-test-images.sh || return 1
wait_until_pods_running knative-serving || return 1
Expand Down

0 comments on commit 1525fac

Please sign in to comment.