Skip to content

Commit

Permalink
fix: cachet ingress use tls key
Browse files Browse the repository at this point in the history
  • Loading branch information
AlessandroLorenzi committed Nov 27, 2023
1 parent d2b4272 commit bf43fd2
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 4 deletions.
6 changes: 3 additions & 3 deletions stable/cachet/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
apiVersion: v1
appVersion: "2.3.15"
appVersion: "2.3.16"
description: The open source status page system
name: cachet
version: 1.3.2
Expand All @@ -8,5 +8,5 @@ sources:
- https://github.com/CachetHQ/Docker
- https://github.com/CachetHQ/Cachet
maintainers:
- name: nyambati
email: [email protected]
- name: nyambati
email: [email protected]
2 changes: 1 addition & 1 deletion stable/cachet/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# cachet

![Version: 1.3.2](https://img.shields.io/badge/Version-1.3.2-informational?style=flat-square) ![AppVersion: 2.3.15](https://img.shields.io/badge/AppVersion-2.3.15-informational?style=flat-square)
![Version: 1.3.2](https://img.shields.io/badge/Version-1.3.2-informational?style=flat-square) ![AppVersion: 2.3.16](https://img.shields.io/badge/AppVersion-2.3.16-informational?style=flat-square)

The open source status page system

Expand Down
10 changes: 10 additions & 0 deletions stable/cachet/templates/ingress.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,16 @@ spec:
{{- if .Values.ingress.ingressClassName }}
ingressClassName: {{ .Values.ingress.ingressClassName }}
{{- end }}
{{- if .Values.ingress.tls }}
tls:
{{- range .Values.ingress.tls }}
- hosts:
{{- range .hosts }}
- {{ . | quote }}
{{- end }}
secretName: {{ .secretName }}
{{- end }}
{{- end }}
rules:
- host: {{ .Values.ingress.host }}
http:
Expand Down

0 comments on commit bf43fd2

Please sign in to comment.