Skip to content

Commit

Permalink
integration-test: fix hostnames
Browse files Browse the repository at this point in the history
  • Loading branch information
cblaettl committed Oct 17, 2023
1 parent c2d3432 commit 777d009
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion charts/integration-test/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ name: integration-test
description: Emporium app used for integration testing.

type: application
version: 0.1.1
version: 0.1.2
appVersion: 0.1.0

home: https://emporium.build
Expand Down
4 changes: 2 additions & 2 deletions charts/integration-test/templates/ingress-2.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,14 +31,14 @@ spec:
{{- range .Values.ingress.tls }}
- hosts:
{{- range .hosts }}
- second.{{ . | quote }}
- {{ printf "second.%s" . | quote }}
{{- end }}
secretName: second-{{ .secretName }}
{{- end }}
{{- end }}
rules:
{{- range .Values.ingress.hosts }}
- host: second.{{ .host | quote }}
- host: {{ printf "second.%s" .host | quote }}
http:
paths:
{{- range .paths }}
Expand Down
4 changes: 2 additions & 2 deletions charts/integration-test/templates/ingress-3.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,14 +31,14 @@ spec:
{{- range .Values.ingress.tls }}
- hosts:
{{- range .hosts }}
- third.{{ . | quote }}
- {{ printf "third.%s" . | quote }}
{{- end }}
secretName: third-{{ .secretName }}
{{- end }}
{{- end }}
rules:
{{- range .Values.ingress.hosts }}
- host: third.{{ .host | quote }}
- host: {{ printf "third.%s" .host | quote }}
http:
paths:
{{- range .paths }}
Expand Down

0 comments on commit 777d009

Please sign in to comment.