Test iptables fix (#10385)

This commit is contained in:
Eric Van Norman 2021-09-27 16:39:40 -05:00 committed by GitHub
parent 65c240814e
commit 30a826dc62
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

@ -18,6 +18,9 @@ set -o errexit
set -o nounset
set -o pipefail
# Workaround https://github.com/kubernetes/test-infra/issues/23741. Should be removed once its fixed upstream
iptables -t mangle -A POSTROUTING -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu
export ISTIO_REMOTE=${ISTIO_REMOTE:-origin}
export ISTIO_BRANCH=${ISTIO_BRANCH:-master}