Skip to content
This repository has been archived by the owner on Jan 14, 2024. It is now read-only.

Commit

Permalink
fix: Typo in Helm that blocked useHostPorts option from working
Browse files Browse the repository at this point in the history
  • Loading branch information
blackandred authored May 3, 2022
1 parent 60fa352 commit a6f1405
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions helm/sni-router/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,14 +46,14 @@ spec:
ports:
- containerPort: 8080
name: http
{{- if .values.service.useHostPorts }}
{{- if .Values.service.useHostPorts }}
hostPort: 80
{{- end }}
- containerPort: 8081
name: metrics
- containerPort: 4443
name: tls
{{- if .values.service.useHostPorts }}
{{- if .Values.service.useHostPorts }}
hostPort: 443
{{- end }}
volumeMounts:
Expand Down

0 comments on commit a6f1405

Please sign in to comment.