Skip to content

Instantly share code, notes, and snippets.

@inchoate
Created December 5, 2018 17:37
Show Gist options
  • Save inchoate/c666acca147c63cbbca7c1a2cd4e9647 to your computer and use it in GitHub Desktop.
Save inchoate/c666acca147c63cbbca7c1a2cd4e9647 to your computer and use it in GitHub Desktop.
Accessing Istio Dashboards
# Service Graph:
kubectl -n istio-system port-forward $(kubectl -n istio-system get pod -l app=servicegraph -o jsonpath='{.items[0].metadata.name}') 8088:8088 &
# Kiali:
kubectl -n istio-system port-forward $(kubectl -n istio-system get pod -l app=kiali -o jsonpath='{.items[0].metadata.name}') 20001:20001 &
# Grafana:
kubectl -n istio-system port-forward $(kubectl -n istio-system get pod -l app=grafana -o jsonpath='{.items[0].metadata.name}') 3000:3000 &
# Prometheus:
kubectl -n istio-system port-forward $(kubectl -n istio-system get pod -l app=prometheus -o jsonpath='{.items[0].metadata.name}') 9090:9090 &
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment