We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f6bec73 commit 6ac86e6Copy full SHA for 6ac86e6
1 file changed
helm-chart/templates/ingress.yaml
@@ -1,4 +1,4 @@
1
-if {{ Values.ingress.enabled }}
+{{- if .Values.ingress.enabled }}
2
apiVersion: networking.k8s.io/v1
3
kind: Ingress
4
metadata:
@@ -14,7 +14,7 @@ spec:
14
- {{ .Values.ingress.domain }}
15
secretName: letsencrypt-tls
16
rules:
17
- - host: {{ .Values.ingres.domain }}
+ - host: {{ .Values.ingress.domain }}
18
http:
19
paths:
20
- pathType: Prefix
@@ -24,4 +24,4 @@ spec:
24
name: my-app
25
port:
26
number: 80
27
-{{ end }}
+{{- end }}
0 commit comments