Skip to content

Commit dc034cb

Browse files
fix(installer): declare appProtocol parameter (#64)
1 parent fb58aa8 commit dc034cb

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

charts/installer/templates/service.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,9 @@ spec:
1818
port: {{ .port }}
1919
targetPort: {{ default "http" .name }}
2020
protocol: {{ default "TCP" .protocol }}
21+
{{- if .appProtocol }}
22+
appProtocol: {{ .appProtocol }}
23+
{{- end }}
2124
{{- end }}
2225
{{- if .Values.toolchain.monitoring.enabled }}
2326
- name: metrics

charts/installer/values-statefulset.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,9 @@ service:
115115
[]
116116
# - name: http
117117
# port: 8080
118-
# protocol: TCP
118+
# protocol: TCP
119+
## Specify custom appProtocol for a service port.
120+
# appProtocol: ""
119121

120122
### health probes (disabled by default)
121123
### default liveness: fail 6 times in 1 minute to trigger

charts/installer/values.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,9 @@ service:
110110
[]
111111
# - name: http
112112
# port: 8080
113-
# protocol: TCP
113+
# protocol: TCP
114+
## Specify custom appProtocol for a service port.
115+
# appProtocol: ""
114116

115117
### health probes (disabled by default)
116118
### default liveness: fail 6 times in 1 minute to trigger

0 commit comments

Comments
 (0)