Skip to content

Commit

Permalink
Fix Ingress host name
Browse files Browse the repository at this point in the history
  • Loading branch information
gornication committed Jan 10, 2024
1 parent 021af8a commit 8728745
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion charts/brokencrystals-experimental/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ description: |
Benchmark application that uses modern technologies and implements a set of
common security vulnerabilities
type: application
version: 0.0.27
version: 0.0.28
keywords:
- brokencrystals-exp
- brkn-e
4 changes: 2 additions & 2 deletions charts/brokencrystals-experimental/templates/ingress.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ metadata:
spec:
tls:
- hosts:
- {{ .Release.Name }}.{{ .Values.ingress.url }}
- {{ .Values.ingress.url }}
secretName: {{ if eq .Values.ingress.cert "" }}{{ include "brokencrystals.fullname" . }}-brokencrystals-secret{{ else }}{{ .Values.ingress.cert }}{{ end }}
rules:
- host: {{ .Release.Name }}.{{ .Values.ingress.url }}
- host: {{ .Values.ingress.url }}
http:
paths:
- path: /
Expand Down

0 comments on commit 8728745

Please sign in to comment.