You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Test egress to olive namespace (allowed by Sidecar)
kubectl exec -n lime sleep-lime -- curl -sS http://olive-echo.olive.svc.cluster.local
# Expected: Success# Test egress to istio-system namespace (allowed by Sidecar)
kubectl exec -n lime sleep-lime -- curl -sS http://istiod.istio-system.svc.cluster.local:15014/version
# Expected: Success# Verify Sidecar configuration
kubectl get sidecar default -n lime -o yaml
# Check that egress is restricted - test access to namespace not in egress list
kubectl exec -n lime sleep-lime -- curl -sS http://echo-pearl.pearl.svc.cluster.local --max-time 5
# Expected: Connection timeout or error (pearl namespace not in allowed egress list)# With outboundTrafficPolicy: REGISTRY_ONLY, only services in egress hosts are accessible