File tree 3 files changed +11
-0
lines changed
3 files changed +11
-0
lines changed Original file line number Diff line number Diff line change 61
61
{{- toYaml .Values.connector.volumeMounts | nindent 12 }}
62
62
{{- end }}
63
63
ports :
64
+ - name : http
65
+ containerPort : {{ .Values.connector.config.addr.http }}
66
+ protocol : TCP
64
67
- name : https
65
68
containerPort : {{ .Values.connector.config.addr.https }}
66
69
protocol : TCP
Original file line number Diff line number Diff line change 26
26
sessionAffinity : {{ .Values.connector.service.sessionAffinity }}
27
27
{{- end }}
28
28
ports :
29
+ - port : {{ .Values.connector.service.port }}
30
+ name : {{ .Values.connector.service.portName }}
31
+ targetPort : http
32
+ protocol : TCP
33
+ {{- if eq .Values.connector.service.type "NodePort" }}
34
+ nodePort : {{ .Values.connector.service.nodePort }}
35
+ {{- end }}
29
36
- port : {{ .Values.connector.service.securePort }}
30
37
name : {{ .Values.connector.service.securePortName }}
31
38
targetPort : https
Original file line number Diff line number Diff line change @@ -1061,6 +1061,7 @@ connector:
1061
1061
1062
1062
# # Connector container service ports
1063
1063
addr :
1064
+ http : 9080
1064
1065
https : 9443
1065
1066
metrics : 9091
1066
1067
You can’t perform that action at this time.
0 commit comments