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
// Istio automtls config is not applied if istio integration is disabled on the helm chart.
113
118
// When istio integration is disabled via istioSds.enabled=false, there is no sds or istio-proxy sidecar present
114
-
if!p.settings.EnableIstioIntegration {
119
+
if!st.EnableIstioIntegration {
115
120
contextutils.LoggerFrom(ctx).Desugar().Error("Istio integration must be enabled to use auto mTLS. Enable integration with istioIntegration.enabled=true")
116
121
} else {
117
122
// Note: If EnableIstioSidecarOnGateway is enabled, Istio automtls will not be able to generate the endpoint
118
123
// metadata from the Pod to match the transport socket match. We will still translate the transport socket match
119
124
// configuration. EnableIstioSidecarOnGateway should be removed as part of: https://github.com/solo-io/solo-projects/issues/5743
120
-
ifp.settings.EnableIstioSidecarOnGateway {
125
+
ifst.EnableIstioSidecarOnGateway {
121
126
contextutils.LoggerFrom(ctx).Desugar().Warn("Istio sidecar injection (istioIntegration.EnableIstioSidecarOnGateway) should be disabled for Istio automtls mode")
0 commit comments