From ccbd9d767ad08455382e2cec91e0bfc4ed7ea942 Mon Sep 17 00:00:00 2001 From: Pramod Date: Wed, 23 Oct 2019 16:14:19 -0700 Subject: Upgrade istio-operator Issue-ID: AAF-1023 Signed-off-by: Pramod Change-Id: I863a06ee8f504febb822d02c054860065ad888b9 --- .../helm/servicemesh/istio-operator/templates/operator-service.yaml | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'deployments/helm/servicemesh/istio-operator/templates/operator-service.yaml') diff --git a/deployments/helm/servicemesh/istio-operator/templates/operator-service.yaml b/deployments/helm/servicemesh/istio-operator/templates/operator-service.yaml index 04ffc835..bc49dcfd 100644 --- a/deployments/helm/servicemesh/istio-operator/templates/operator-service.yaml +++ b/deployments/helm/servicemesh/istio-operator/templates/operator-service.yaml @@ -2,6 +2,7 @@ apiVersion: v1 kind: Service metadata: name: "{{ include "istio-operator.fullname" . }}-operator" + namespace: {{ .Release.Namespace }} {{- if and .Values.prometheusMetrics.enabled (not .Values.prometheusMetrics.authProxy.enabled) }} annotations: prometheus.io/scrape: "true" @@ -26,8 +27,12 @@ spec: app.kubernetes.io/component: operator ports: - name: https + protocol: TCP port: 443 + targetPort: 443 {{- if and .Values.prometheusMetrics.enabled (not .Values.prometheusMetrics.authProxy.enabled) }} - name: metrics + protocol: TCP port: 8080 + targetPort: 8080 {{- end }} -- cgit 1.2.3-korg