Skip to content

Commit

Permalink
[stable/cachet] ingress use tls key (#550)
Browse files Browse the repository at this point in the history
fix: cachet ingress use tls key
  • Loading branch information
AlessandroLorenzi authored Nov 28, 2023
1 parent d2b4272 commit 2532100
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
2 changes: 1 addition & 1 deletion stable/cachet/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v1
appVersion: "2.3.15"
description: The open source status page system
name: cachet
version: 1.3.2
version: 1.3.3
home: https://cachethq.io/
sources:
- https://github.com/CachetHQ/Docker
Expand Down
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.3](https://img.shields.io/badge/Version-1.3.3-informational?style=flat-square) ![AppVersion: 2.3.15](https://img.shields.io/badge/AppVersion-2.3.15-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 2532100

Please sign in to comment.