Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Changelog

## In Development
* Add support for providing `ingressClassName`. (#336) (by @mamercad)
* Add an experimental GitHu/K3s Lint and End-to-End testing workflow. (#243) (by @mamercad)
* Set `st2client` resources by `values.yaml`. (#337) (by @mamercad)
* Switch to the official `bats` Docker image for e2e tests. (#338)
Expand Down
3 changes: 3 additions & 0 deletions templates/ingress.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@ metadata:
{{- toYaml .Values.ingress.annotations | nindent 4 }}
{{- end }}
spec:
{{- if .Values.ingress.ingressClassName }}
ingressClassName: {{ .Values.ingress.ingressClassName }}
{{- end }}
rules:
{{- range .Values.ingress.hosts }}
- host: {{ .host }}
Expand Down
1 change: 1 addition & 0 deletions values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -289,6 +289,7 @@ ingress:
# - secretName: chart-example-tls
# hosts:
# - chart-example.test
# ingressClassName: nginx-ingress

##
## NOTE: there used to be a secrets.st2 section here. These values have moved into st2.* above. Please update your values.
Expand Down