Cheat Sheet
Istio tips and tricks.
Quick start
curl -sL https://istio.io/downloadIstioctl | sh -export PATH=$PATH:$HOME/.istioctl/binistioctl x precheckistioctl install --set profile=demoReferences
Gateway and Virtual Service
apiVersion: networking.istio.io/v1alpha3
kind: Gateway
metadata:
name: my-app-gw
spec:
selector:
istio: ingressgateway
servers:
- port:
number: 80
name: http
protocol: HTTP
hosts:
- "my-app.com"References
TLS
References
Commands
List routes
Last updated