We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b0f13f5 commit b641715Copy full SHA for b641715
charts/fluentd/templates/ingress.yaml
@@ -14,6 +14,9 @@ metadata:
14
{{- toYaml . | nindent 4 }}
15
{{- end }}
16
spec:
17
+ {{- if and .Values.ingress.className (semverCompare ">=1.18-0" .Capabilities.KubeVersion.GitVersion) }}
18
+ ingressClassName: {{ .Values.ingress.className }}
19
+ {{- end }
20
{{- if .Values.ingress.tls }}
21
tls:
22
{{- range .Values.ingress.tls }}
charts/fluentd/values.yaml
@@ -380,6 +380,7 @@ fileConfigs:
380
381
ingress:
382
enabled: false
383
+ className: ""
384
annotations: {}
385
# kubernetes.io/ingress.class: nginx
386
# kubernetes.io/tls-acme: "true"
0 commit comments