install-custom-resources.sh.tpl 915 Bytes
Newer Older
Caleb Bron's avatar
Caleb Bron committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
{{ define "install-custom-resources.sh.tpl" }}
#!/bin/sh

set -x

if [ "$#" -ne "1" ]; then
    echo "first argument should be path to custom resource yaml"
    exit 1
fi

pathToResourceYAML=${1}

kubectl get validatingwebhookconfiguration istio-galley 2>/dev/null
if [ "$?" -eq 0 ]; then
    echo "istio-galley validatingwebhookconfiguration found - waiting for istio-galley deployment to be ready"
    while true; do
        kubectl -n {{ .Release.Namespace }} get deployment istio-galley 2>/dev/null
        if [ "$?" -eq 0 ]; then
            break
        fi
        sleep 1
    done
    kubectl -n {{ .Release.Namespace }} rollout status deployment istio-galley
    if [ "$?" -ne 0 ]; then
        echo "istio-galley deployment rollout status check failed"
        exit 1
    fi
    echo "istio-galley deployment ready for configuration validation"
fi
sleep 5
kubectl apply -f ${pathToResourceYAML}
{{ end }}