Skip to content

Commit

Permalink
Merge pull request #8 from flanksource/fix-ingress-template
Browse files Browse the repository at this point in the history
fix: ingress tls hosts should be array and not a string
  • Loading branch information
moshloop authored Jul 25, 2023
2 parents fc54b0b + f7710d2 commit c9a1623
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion chart/templates/ingress.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@ metadata:
kubernetes.io/tls-acme: "true"
spec:
tls:
- hosts: {{ .Values.domain | quote }}
- hosts:
- {{ .Values.domain | quote }}
secretName: mission-control-tls-{{ .Release.Name }}
rules:
- host: {{ .Values.domain | quote }}
Expand Down

0 comments on commit c9a1623

Please sign in to comment.