Skip to content

Commit

Permalink
fix(installer): declare appProtocol parameter (#64)
Browse files Browse the repository at this point in the history
  • Loading branch information
thuban-arrakis authored Apr 17, 2023
1 parent fb58aa8 commit dc034cb
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
3 changes: 3 additions & 0 deletions charts/installer/templates/service.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@ spec:
port: {{ .port }}
targetPort: {{ default "http" .name }}
protocol: {{ default "TCP" .protocol }}
{{- if .appProtocol }}
appProtocol: {{ .appProtocol }}
{{- end }}
{{- end }}
{{- if .Values.toolchain.monitoring.enabled }}
- name: metrics
Expand Down
4 changes: 3 additions & 1 deletion charts/installer/values-statefulset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,9 @@ service:
[]
# - name: http
# port: 8080
# protocol: TCP
# protocol: TCP
## Specify custom appProtocol for a service port.
# appProtocol: ""

### health probes (disabled by default)
### default liveness: fail 6 times in 1 minute to trigger
Expand Down
4 changes: 3 additions & 1 deletion charts/installer/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,9 @@ service:
[]
# - name: http
# port: 8080
# protocol: TCP
# protocol: TCP
## Specify custom appProtocol for a service port.
# appProtocol: ""

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

0 comments on commit dc034cb

Please sign in to comment.