Skip to content

Instantly share code, notes, and snippets.

@Stono
Created February 23, 2018 14:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Stono/90991972655fe54edbd8fac2cee49f5d to your computer and use it in GitHub Desktop.
Save Stono/90991972655fe54edbd8fac2cee49f5d to your computer and use it in GitHub Desktop.
#!/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