From 105b28bf42e3472e500fff7718ecf89121d32df7 Mon Sep 17 00:00:00 2001 From: stefanprodan Date: Sun, 22 Sep 2019 12:05:35 +0300 Subject: [PATCH 1/2] Update e2e to Kind 0.5.1 and Istio to 1.3.0 --- test/e2e-istio.sh | 2 +- test/e2e-kind.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/test/e2e-istio.sh b/test/e2e-istio.sh index 8eabc72dd..b7a4edbc0 100755 --- a/test/e2e-istio.sh +++ b/test/e2e-istio.sh @@ -2,7 +2,7 @@ set -o errexit -ISTIO_VER="1.2.3" +ISTIO_VER="1.3.0" REPO_ROOT=$(git rev-parse --show-toplevel) export KUBECONFIG="$(kind get kubeconfig-path --name="kind")" diff --git a/test/e2e-kind.sh b/test/e2e-kind.sh index 05b133346..7120a1e93 100755 --- a/test/e2e-kind.sh +++ b/test/e2e-kind.sh @@ -3,7 +3,7 @@ set -o errexit REPO_ROOT=$(git rev-parse --show-toplevel) -KIND_VERSION=v0.4.0 +KIND_VERSION=v0.5.1 if [[ "$1" ]]; then KIND_VERSION=$1 From c667c947ad2b9b4f6f260698ef7013a39d48e225 Mon Sep 17 00:00:00 2001 From: stefanprodan Date: Sun, 22 Sep 2019 12:12:06 +0300 Subject: [PATCH 2/2] Istio e2e: update job names --- test/e2e-istio.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/e2e-istio.sh b/test/e2e-istio.sh index b7a4edbc0..7ae9c7f84 100755 --- a/test/e2e-istio.sh +++ b/test/e2e-istio.sh @@ -13,9 +13,9 @@ echo '>>> Installing Istio CRDs' helm upgrade -i istio-init istio.io/istio-init --wait --namespace istio-system echo '>>> Waiting for Istio CRDs to be ready' -kubectl -n istio-system wait --for=condition=complete job/istio-init-crd-10 -kubectl -n istio-system wait --for=condition=complete job/istio-init-crd-11 -kubectl -n istio-system wait --for=condition=complete job/istio-init-crd-12 +kubectl -n istio-system wait --for=condition=complete job/istio-init-crd-10-${ISTIO_VER} +kubectl -n istio-system wait --for=condition=complete job/istio-init-crd-11-${ISTIO_VER} +kubectl -n istio-system wait --for=condition=complete job/istio-init-crd-12-${ISTIO_VER} echo '>>> Installing Istio control plane' helm upgrade -i istio istio.io/istio --wait --namespace istio-system -f ${REPO_ROOT}/test/e2e-istio-values.yaml