Fix URL to net-istio for istio manifest (#2748)

This commit is contained in:
Kenjiro Nakayama 2020-08-13 22:41:06 +09:00 committed by GitHub
parent c3523dd1bb
commit e39d247be5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -17,14 +17,14 @@
source $(dirname $0)/../vendor/knative.dev/test-infra/scripts/e2e-tests.sh
function install_istio() {
ISTIO_VERSION=$(curl https://raw.githubusercontent.com/knative/serving/master/third_party/istio-1.5-latest)
ISTIO_VERSION=$(curl https://raw.githubusercontent.com/knative-sandbox/net-istio/master/third_party/istio-stable)
echo ">> Bringing up Istio"
echo ">> Running Istio CRD installer"
kubectl apply -f "https://raw.githubusercontent.com/knative/serving/master/third_party/${ISTIO_VERSION}/istio-crds.yaml" || return 1
kubectl apply -f "https://raw.githubusercontent.com/knative-sandbox/net-istio/master/third_party/${ISTIO_VERSION}/istio-crds.yaml" || return 1
wait_until_batch_job_complete istio-system || return 1
echo ">> Running Istio"
kubectl apply -f "https://raw.githubusercontent.com/knative/serving/master/third_party/${ISTIO_VERSION}/istio-ci-no-mesh.yaml" || return 1
kubectl apply -f "https://raw.githubusercontent.com/knative-sandbox/net-istio/master/third_party/${ISTIO_VERSION}/istio-ci-no-mesh.yaml" || return 1
wait_until_pods_running istio-system || return 1
}