File tree Expand file tree Collapse file tree 3 files changed +6
-0
lines changed Expand file tree Collapse file tree 3 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -76,6 +76,7 @@ Now you're ready to follow [the installation instructions above](#installation).
7676| image.tag | string | ` "11.4-0" ` | |
7777| imagePullSecrets | list | ` [] ` | |
7878| ingress.annotations | object | ` {} ` | |
79+ | ingress.className | string | ` nil ` | |
7980| ingress.enabled | bool | ` false ` | |
8081| ingress.hosts[ 0] .host | string | ` "zulip.example.com" ` | |
8182| ingress.hosts[ 0] .paths[ 0] .path | string | ` "/" ` | |
Original file line number Diff line number Diff line change @@ -12,6 +12,9 @@ metadata:
1212 {{- toYaml . | nindent 4 }}
1313 {{- end }}
1414spec :
15+ {{- if .Values.ingress.className }}
16+ ingressClassName : {{ .Values.ingress.className }}
17+ {{- end }}
1518 {{- if .Values.ingress.tls }}
1619 tls :
1720 {{- range .Values.ingress.tls }}
Original file line number Diff line number Diff line change @@ -94,6 +94,8 @@ ingress:
9494 # - secretName: chart-example-tls
9595 # hosts:
9696 # - zulip.example.com
97+ # # Provide an explicit className for the ingress
98+ className :
9799
98100resources :
99101 {}
You can’t perform that action at this time.
0 commit comments