File tree Expand file tree Collapse file tree 3 files changed +5
-0
lines changed Expand file tree Collapse file tree 3 files changed +5
-0
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
3
## In Development
4
+ * Add support for providing ` ingressClassName ` . (#336 ) (by @mamercad )
4
5
* Add an experimental GitHu/K3s Lint and End-to-End testing workflow. (#243 ) (by @mamercad )
5
6
* Set ` st2client ` resources by ` values.yaml ` . (#337 ) (by @mamercad )
6
7
* Switch to the official ` bats ` Docker image for e2e tests. (#338 )
Original file line number Diff line number Diff line change @@ -17,6 +17,9 @@ metadata:
17
17
{{- toYaml .Values.ingress.annotations | nindent 4 }}
18
18
{{- end }}
19
19
spec :
20
+ {{- if .Values.ingress.ingressClassName }}
21
+ ingressClassName : {{ .Values.ingress.ingressClassName }}
22
+ {{- end }}
20
23
rules :
21
24
{{- range .Values.ingress.hosts }}
22
25
- host : {{ .host }}
Original file line number Diff line number Diff line change @@ -289,6 +289,7 @@ ingress:
289
289
# - secretName: chart-example-tls
290
290
# hosts:
291
291
# - chart-example.test
292
+ # ingressClassName: nginx-ingress
292
293
293
294
# #
294
295
# # NOTE: there used to be a secrets.st2 section here. These values have moved into st2.* above. Please update your values.
You can’t perform that action at this time.
0 commit comments