fix(helm): add ingressClassName support to Helm chart

Adds `ingress.className` value and renders `ingressClassName` in the
Ingress spec, allowing users to specify the ingress controller class.
Closes #377.
This commit is contained in:
jubnl
2026-04-03 19:15:30 +02:00
parent e0105115f4
commit 98813a9b40
2 changed files with 4 additions and 0 deletions

View File

@@ -10,6 +10,9 @@ metadata:
{{- toYaml . | nindent 4 }}
{{- end }}
spec:
{{- if .Values.ingress.className }}
ingressClassName: {{ .Values.ingress.className }}
{{- end }}
{{- if .Values.ingress.tls }}
tls:
{{- toYaml .Values.ingress.tls | nindent 4 }}

View File

@@ -97,6 +97,7 @@ resources:
ingress:
enabled: false
className: ""
annotations: {}
hosts:
- host: chart-example.local