We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c6a3218 commit 9f4a6baCopy full SHA for 9f4a6ba
2 files changed
charts/keycloak/templates/keycloak-ingress.yaml
@@ -17,7 +17,9 @@ spec:
17
port:
18
number: 8443
19
rules:
20
- - host: {{ .Values.ingress.hostname | quote }}
+ {{- if .Values.ingress.hostname }}
21
+ - host: {{ .Values.ingress.hostname }}
22
+ {{- end }}
23
http:
24
paths:
25
- backend:
charts/keycloak/templates/keycloak.yaml
@@ -15,9 +15,9 @@ spec:
15
key: username
16
name: postgresql-db
vendor: postgres
- {{- if .Values.ingress.enabled }}
hostname:
- hostname: {{ .Values.ingress.hostname | quote }}
+ hostname: {{ .Values.ingress.hostname }}
{{- end }}
tlsSecret: keycloak-tls
0 commit comments