File tree Expand file tree Collapse file tree 5 files changed +20
-7
lines changed Expand file tree Collapse file tree 5 files changed +20
-7
lines changed Original file line number Diff line number Diff line change @@ -197,6 +197,11 @@ spec:
197
197
- name : http
198
198
containerPort : {{ .Values.service.port }}
199
199
protocol : TCP
200
+ {{- if .Values.server.config.https.enabled }}
201
+ - name : https
202
+ containerPort : {{ .Values.server.config.https.port }}
203
+ protocol : TCP
204
+ {{- end }}
200
205
{{- if $coordinatorJmx.enabled }}
201
206
- name : jmx-registry
202
207
containerPort : {{ $coordinatorJmx.registryPort }}
Original file line number Diff line number Diff line change @@ -171,6 +171,11 @@ spec:
171
171
- name : http
172
172
containerPort : {{ .Values.service.port }}
173
173
protocol : TCP
174
+ {{- if .Values.server.config.https.enabled }}
175
+ - name : https
176
+ containerPort : {{ .Values.server.config.https.port }}
177
+ protocol : TCP
178
+ {{- end }}
174
179
{{- if $workerJmx.enabled }}
175
180
- name : jmx-registry
176
181
containerPort : {{ $workerJmx.registryPort }}
Original file line number Diff line number Diff line change 32
32
service :
33
33
name : {{ include "trino.fullname" $ }}
34
34
port :
35
+ {{- if $.Values.server.config.https.enabled }}
36
+ number : {{ $.Values.server.config.https.port }}
37
+ {{- else }}
35
38
number : {{ $.Values.service.port }}
39
+ {{- end }}
36
40
{{- end }}
37
41
{{- end }}
38
42
{{- end }}
Original file line number Diff line number Diff line change 19
19
{{- if .Values.service.nodePort }}
20
20
nodePort : {{ .Values.service.nodePort }}
21
21
{{- end }}
22
+ {{- if .Values.server.config.https.enabled }}
23
+ - port : {{ .Values.server.config.https.port }}
24
+ targetPort : https
25
+ protocol : TCP
26
+ name : https
27
+ {{- end }}
22
28
{{- if $coordinatorJmx.exporter.enabled }}
23
29
- port : {{ $coordinatorJmx.exporter.port }}
24
30
targetPort : jmx-exporter
Original file line number Diff line number Diff line change @@ -100,13 +100,6 @@ coordinator:
100
100
mountPath : /etc/trino/generated
101
101
readOnly : false
102
102
103
- additionalExposedPorts :
104
- https :
105
- servicePort : 8443
106
- name : https
107
- port : 8443
108
- protocol : TCP
109
-
110
103
annotations :
111
104
custom/name : value
112
105
You can’t perform that action at this time.
0 commit comments