Skip to content

Commit

Permalink
PR #121 fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
yahel2410 committed May 28, 2024
1 parent a3b457c commit c5510d9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
6 changes: 2 additions & 4 deletions charts/localstack/templates/ingress.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,17 +26,15 @@ spec:
tls:
{{- range .Values.ingress.tls }}
- hosts:
{{- $base := . }}
{{- range .hosts }}
- {{ tpl . $base | quote }}
- {{ tpl . $ | quote }}
{{- end }}
secretName: {{ .secretName }}
{{- end }}
{{- end }}
rules:
{{- $base := . }}
{{- range .Values.ingress.hosts }}
- host: {{ tpl .host $base | quote }}
- host: {{ tpl .host $ | quote }}
http:
paths:
{{- range .paths }}
Expand Down
2 changes: 1 addition & 1 deletion charts/localstack/test-values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ ingressHost: chart-example.local
ingress:
enabled: true
hosts:
- host: {{ .Values.ingressHost }}
- host: "{{ .Values.ingressHost }}"

# enable localstack pro (don't forget to set your API key)
# image:
Expand Down

0 comments on commit c5510d9

Please sign in to comment.