Skip to content

Latest commit

 

History

History
45 lines (30 loc) · 723 Bytes

4.istio-setup.md

File metadata and controls

45 lines (30 loc) · 723 Bytes

Setup Istio

Download istio release

$ curl -L https://istio.io/downloadIstio | sh -

Move to the Istio package directory

$ cd istio-1.6.2

Add istioctl to path

$ export PATH=$PWD/bin:$PATH

Install Istio

$ istioctl install --set profile=demo

Manage Istio

Enable access log

$ istioctl manifest apply --set values.global.proxy.accessLogFile="/dev/stdout"

Enable mts

$ istioctl manifest apply --set values.global.mtls.enabled=true --set values.global.controlPlaneSecurityEnabled=true

Enable tracing

$ istioctl manifest apply --set values.tracing.enabled=disable --set values.tracing.provider=zipkin