#!/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