@@ -130,17 +130,18 @@ const (
130130
131131 /* Istio Ingress Config */
132132
133- // IstioMeshGateway.spec.deployment. resources
133+ // Kubernetes Deployment resources for Istio ingress gateway
134134 defaultIstioIngressRequestResourceCpu = "100m"
135135 defaultIstioIngressRequestResourceMemory = "128Mi"
136136 defaultIstioIngressLimitResourceCpu = "2000m"
137137 defaultIstioIngressLimitResourceMemory = "1024Mi"
138138
139- // IstioMeshGateway.spec.deployment.replicas.count
140- // IstioMeshGateway.spec.deployment.replicas.min
141- // IstioMeshGateway.spec.deployment.replicas.max
139+ // Kubernetes Deployment replicas for Istio ingress gateway
142140 defaultReplicas = 1
143141
142+ // DefaultIstioProxyImage is the default Istio proxy image for mesh gateway
143+ DefaultIstioProxyImage = "docker.io/istio/proxyv2:1.27.1"
144+
144145 /* Monitor Config */
145146
146147 // KafkaBrokerPod.spec.initContainer[jmx-exporter].image
@@ -521,7 +522,7 @@ type IstioIngressConfig struct {
521522 Annotations map [string ]string `json:"annotations,omitempty"`
522523 TLSOptions * v1beta1.TLSOptions `json:"gatewayConfig,omitempty"`
523524 VirtualServiceAnnotations map [string ]string `json:"virtualServiceAnnotations,omitempty"`
524- // Envs allows to add additional env vars to the istio meshgateway resource
525+ // Envs allows to add additional env vars to the istio ingress gateway deployment
525526 Envs []* corev1.EnvVar `json:"envs,omitempty"`
526527 // If specified and supported by the platform, traffic through the
527528 // cloud-provider load-balancer will be restricted to the specified client
0 commit comments