diff --git a/helm/charts/infra/templates/connector/deployment.yaml b/helm/charts/infra/templates/connector/deployment.yaml index e68bc45b84..55989747fc 100644 --- a/helm/charts/infra/templates/connector/deployment.yaml +++ b/helm/charts/infra/templates/connector/deployment.yaml @@ -61,6 +61,9 @@ spec: {{- toYaml .Values.connector.volumeMounts | nindent 12 }} {{- end }} ports: + - name: http + containerPort: {{ .Values.connector.config.addr.http }} + protocol: TCP - name: https containerPort: {{ .Values.connector.config.addr.https }} protocol: TCP diff --git a/helm/charts/infra/templates/connector/service.yaml b/helm/charts/infra/templates/connector/service.yaml index f2d5c753f8..9067152d51 100644 --- a/helm/charts/infra/templates/connector/service.yaml +++ b/helm/charts/infra/templates/connector/service.yaml @@ -26,6 +26,13 @@ spec: sessionAffinity: {{ .Values.connector.service.sessionAffinity }} {{- end }} ports: + - port: {{ .Values.connector.service.port }} + name: {{ .Values.connector.service.portName }} + targetPort: http + protocol: TCP +{{- if eq .Values.connector.service.type "NodePort" }} + nodePort: {{ .Values.connector.service.nodePort }} +{{- end }} - port: {{ .Values.connector.service.securePort }} name: {{ .Values.connector.service.securePortName }} targetPort: https diff --git a/helm/charts/infra/values.yaml b/helm/charts/infra/values.yaml index 253a2ce3d4..3c02ee5d91 100644 --- a/helm/charts/infra/values.yaml +++ b/helm/charts/infra/values.yaml @@ -1061,6 +1061,7 @@ connector: ## Connector container service ports addr: + http: 9080 https: 9443 metrics: 9091