Merge pull request #306 from weaveworks/e2e-updates

Update end-to-end tests to Istio 1.3.0
This commit is contained in:
Stefan Prodan
2019-09-22 12:37:05 +03:00
committed by GitHub
2 changed files with 5 additions and 5 deletions
+4 -4
View File
@@ -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")"
@@ -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
+1 -1
View File
@@ -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