Last active
January 15, 2019 17:14
-
-
Save garystafford/0b1d232f35d0f1bb24f0e20015c190c2 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 | |
# install istio, add-ons, and roles | |
# https://cloud.google.com/kubernetes-engine/docs/tutorials/istio-on-gke | |
ISTIO_HOME="/Applications/istio-0.4.0" | |
# required dashboard access and istio roles | |
kubectl apply \ | |
-f ./other/kube-system-cluster-admin.yaml \ | |
-f ./other/cluster-admin-binding.yaml | |
# istio | |
kubectl apply \ | |
-f $ISTIO_HOME/install/kubernetes/istio-auth.yaml \ | |
-f $ISTIO_HOME/install/kubernetes/istio-initializer.yaml | |
# add-ons | |
kubectl apply \ | |
-f $ISTIO_HOME/install/kubernetes/addons/prometheus.yaml \ | |
-f $ISTIO_HOME/install/kubernetes/addons/grafana.yaml \ | |
-f $ISTIO_HOME/install/kubernetes/addons/servicegraph.yaml \ | |
-f $ISTIO_HOME/install/kubernetes/addons/zipkin.yaml \ | |
-f $ISTIO_HOME/install/kubernetes/addons/zipkin-to-stackdriver.yaml |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment