SynfraCore
Synfracore
Start Learning
Navigation

Academies

Platform

RoadmapsLabsCertificationsInterviewPYQsAI AssistantCareer
Start Learning Free Learning Roadmaps

Service Mesh — IstioCheatsheets

Quick reference — commands, syntax, and patterns

📄
Last updated Jul 2026
Expert Content

Istio Cheatsheet

bash
# Install
istioctl install --set profile=production
kubectl label namespace production istio-injection=enabled

# Traffic management
kubectl apply -f - <<EOF
apiVersion: networking.istio.io/v1alpha3
kind: VirtualService
metadata:
  name: myapp
spec:
  hosts: [myapp]
  http:
  - match:
    - headers: {x-canary: {exact: "true"}}
    route:
    - destination: {host: myapp, subset: v2}
  - route:
    - destination: {host: myapp, subset: v1}
      weight: 90
    - destination: {host: myapp, subset: v2}
      weight: 10
EOF

# Observability
istioctl dashboard kiali
istioctl dashboard jaeger
kubectl exec -it <pod> -c istio-proxy -- pilot-agent request GET stats
Share:
Join our Community
Daily tips, job alerts, interview help — join engineers learning together
Up Next
📝
Service Mesh — IstioNotes
Key takeaways, tips, and important points to remember
Also Worth Exploring
← Back to all Service Mesh — Istio modules
CertificationNotes