Cheat Sheet
Istio tips and tricks.
Quick start
Install latest istioctl.
curl -sL https://istio.io/downloadIstioctl | sh -Configure PATH`.
export PATH=$PATH:$HOME/.istioctl/binRun pre-install check.
istioctl x precheckDeploy Istio.
istioctl install --set profile=demoReferences
https://medium.com/expedia-group-tech/flagger-get-started-with-istio-and-kubernetes-896261c3ed88
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
https://istio.io/latest/docs/reference/config/networking/gateway/
Commands
List routes
Last updated