Skip to content

Instantly share code, notes, and snippets.

@gintsgints
Last active June 9, 2019 10:54
Show Gist options
  • Save gintsgints/4285387ca3cd27b74dfb2b00801f48e3 to your computer and use it in GitHub Desktop.
Save gintsgints/4285387ca3cd27b74dfb2b00801f48e3 to your computer and use it in GitHub Desktop.

Install Istio.

Setup with minikube - https://istio.io/docs/setup/kubernetes/prepare/platform-setup/minikube/ Install with helm (use demo-auth) variant

Start minikube tunnel in different console, for Balancer.

minikube tunnel

After install

Install demo app

https://istio.io/docs/examples/bookinfo/

After you setup app access within Istio Gateway, you can access app to:

http://your.cluster.IP/productpage

Starting dashboards.

Kiali:

kubectl -n istio-system port-forward $(kubectl -n istio-system get pod -l app=kiali -o jsonpath='{.items[0].metadata.name}') 20001:20001

Then go - http://localhost:20001/kiali/console

Grafana:

kubectl -n istio-system port-forward $(kubectl -n istio-system get pod -l app=grafana -o jsonpath='{.items[0].metadata.name}') 3000:3000

Then go - http://localhost:3000

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment