File tree Expand file tree Collapse file tree 3 files changed +7
-6
lines changed Expand file tree Collapse file tree 3 files changed +7
-6
lines changed Original file line number Diff line number Diff line change 8
8
type : {{ .Values.fire.service.type }}
9
9
ports :
10
10
- port : {{ .Values.fire.service.port }}
11
- targetPort : http
11
+ targetPort : {{ .Values.fire.service.port_name }}
12
12
protocol : TCP
13
- name : http
13
+ name : {{ .Values.fire.service.port_name }}
14
14
selector :
15
15
{{- include "fire.selectorLabels" . | nindent 4 }}
16
16
---
24
24
type : {{ .Values.fire.service.type }}
25
25
ports :
26
26
- port : {{ .Values.fire.service.port }}
27
- targetPort : http
27
+ targetPort : {{ .Values.fire.service.port_name }}
28
28
protocol : TCP
29
- name : http
29
+ name : {{ .Values.fire.service.port_name }}
30
30
selector :
31
31
{{- include "fire.selectorLabels" . | nindent 4 }}
32
32
Original file line number Diff line number Diff line change @@ -37,13 +37,13 @@ spec:
37
37
- " -{{ $key }}={{ $value }}"
38
38
{{- end }}
39
39
ports :
40
- - name : http
40
+ - name : {{ .Values.fire.service.port_name }}
41
41
containerPort : 4100
42
42
protocol : TCP
43
43
readinessProbe :
44
44
httpGet :
45
45
path : /ready
46
- port : http
46
+ port : {{ .Values.fire.service.port_name }}
47
47
volumeMounts :
48
48
- name : config
49
49
mountPath : /etc/fire/config.yaml
Original file line number Diff line number Diff line change 45
45
service :
46
46
type : ClusterIP
47
47
port : 4100
48
+ port_name : http
48
49
49
50
resources : {}
50
51
# We usually recommend not to specify default resources and to leave this as a conscious
You can’t perform that action at this time.
0 commit comments