Created
February 23, 2018 14:47
-
-
Save Stono/90991972655fe54edbd8fac2cee49f5d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
set -e | |
array=( istio istio-crd istio-grafana istio-prometheus istio-jaeger ) | |
for i in "${array[@]}" | |
do | |
echo "Installing: $i" | |
helm upgrade --install $i --namespace istio-system $i/ --debug -f $ENV | |
done | |
echo "Doing manual tasks..." | |
cd manual | |
./install-sidecar-injection.sh |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment