Check proxy status istio
Get sync status of all Envoy proxies in the mesh
istioctl proxy-status
more istio
all 19 commands →
Analyze config
istioctl analyze
View Envoy config
istioctl proxy-config all deploy/myapp
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