Traffic routing — DestinationRule istio
Apply a DestinationRule to define load balancing and circuit breaker policies
kubectl apply -f destinationrule.yaml
more istio
all 19 commands →
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
Dashboard (Jaeger)
istioctl dashboard jaeger
View access logs
kubectl logs -l app=myapp -c istio-proxy | head -50