Правила назначения — DestinationRule istio
Применить DestinationRule для балансировки нагрузки и circuit breaker
kubectl apply -f destinationrule.yaml
more istio
all 19 commands →
Включить mTLS (строгий)
kubectl apply -f - <<EOF
apiVersion: security.istio.io/v1beta1
kind: PeerAuthentication
metadata:
name: default
namespace: default
spec:
mtls:
mode: STRICT
EOF
Инжект сайдкара вручную
istioctl kube-inject -f deployment.yaml | kubectl apply -f -
Дашборд (Kiali)
istioctl dashboard kiali
Дашборд (Jaeger)
istioctl dashboard jaeger
Просмотр логов доступа
kubectl logs -l app=myapp -c istio-proxy | head -50