Skip to content

Commit

Permalink
Merge pull request #6 from koslib:ingress-class-name
Browse files Browse the repository at this point in the history
Remove odd dashes from if statement
  • Loading branch information
koslib authored Aug 17, 2023
2 parents a39e948 + 09fe5b7 commit d35a7a8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ apiVersion: v2
name: servicetpl
description: A Helm chart for services running on Kubernetes

version: 0.16.0
version: 0.16.1
2 changes: 1 addition & 1 deletion templates/ingress.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ metadata:
{{- toYaml . | nindent 4 }}
{{- end }}
spec:
{{- if .Values.ingress.ingressClassName -}}
{{- if .Values.ingress.ingressClassName }}
ingressClassName: {{ .Values.ingress.ingressClassName }}
{{- end }}

Expand Down
2 changes: 1 addition & 1 deletion templates/ingress_private.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ metadata:
{{- toYaml . | nindent 4 }}
{{- end }}
spec:
{{- if .Values.ingress_private.ingressClassName -}}
{{- if .Values.ingress_private.ingressClassName }}
ingressClassName: {{ .Values.ingress_private.ingressClassName }}
{{- end }}

Expand Down

0 comments on commit d35a7a8

Please sign in to comment.