You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
425 B
10 lines
425 B
#!/bin/bash
|
|
set -e
|
|
echo "Installing Istio-cni (with ExtAuthZ from oauth2-proxy) ..."
|
|
cd common/istio-cni-1-24
|
|
kustomize build istio-crds/base | kubectl apply -f -
|
|
kustomize build istio-namespace/base | kubectl apply -f -
|
|
kustomize build istio-install/overlays/oauth2-proxy | kubectl apply -f -
|
|
|
|
echo "Waiting for all Istio Pods to become ready..."
|
|
kubectl wait --for=condition=Ready pods --all -n istio-system --timeout 300s
|
|
|