View Envoy config istio
Show complete Envoy proxy config for a deployment
istioctl proxy-config all deploy/myapp
more istio
all 19 commands →
Traffic routing — VirtualService
kubectl apply -f virtualservice.yaml
Traffic routing — DestinationRule
kubectl apply -f destinationrule.yaml
Enable mTLS (strict)
kubectl apply -f - <<EOF
apiVersion: security.istio.io/v1beta1
kind: PeerAuthentication
metadata:
name: default
namespace: default
spec:
mtls:
mode: STRICT
EOF
Inject sidecar manually
istioctl kube-inject -f deployment.yaml | kubectl apply -f -
Dashboard (Kiali)
istioctl dashboard kiali