March 2020
Intermediate to advanced
626 pages
14h 45m
English
To enable Istio for an existing application, we will use istioctl to generate additional artifacts in bookinfo.yaml, so the sidecar proxy is added to every pod:
$ cd ~/servicemesh$ istioctl kube-inject -f bookinfo.yaml > bookinfo_proxy.yaml$ cat bookinfo_proxy.yaml... template: metadata: annotations: sidecar.istio.io/interceptionMode: REDIRECT... traffic.sidecar.istio.io/excludeInboundPorts: "15020" traffic.sidecar.istio.io/includeInboundPorts: "9080" traffic.sidecar.istio.io/includeOutboundIPRanges: '*'...
Read now
Unlock full access