mirror of
https://github.com/kyverno/policy-reporter.git
synced 2024-12-14 11:57:32 +00:00
fix TLS template rendering
Signed-off-by: Frank Jogeleit <frank.jogeleit@web.de>
This commit is contained in:
parent
3d52131068
commit
3f943cd8ed
8 changed files with 15 additions and 12 deletions
|
@ -1,5 +1,8 @@
|
|||
# Changelog
|
||||
|
||||
# 2.19.3
|
||||
* Helm Chart
|
||||
* Fix ingress TLS rendering
|
||||
# 2.19.3
|
||||
* Helm Chart
|
||||
* Fix Ingress TLS block [[#317](https://github.com/kyverno/policy-reporter/pull/317) by [rufusnufus](https://github.com/rufusnufus)]
|
||||
|
|
|
@ -4,9 +4,9 @@ dependencies:
|
|||
version: 2.7.1
|
||||
- name: ui
|
||||
repository: ""
|
||||
version: 2.9.5
|
||||
version: 2.9.6
|
||||
- name: kyvernoPlugin
|
||||
repository: ""
|
||||
version: 1.5.5
|
||||
digest: sha256:bd96fe77e2f2bf55dba6332a1e61241e494b1f20f1ac5a3bfa181a3d16146d3c
|
||||
generated: "2023-06-03T16:16:30.05684+03:00"
|
||||
version: 1.5.6
|
||||
digest: sha256:f5d6911c70a5472dbf753983c924b6e8dbdf48eba43f4b65dd28d92221440616
|
||||
generated: "2023-07-06T16:57:22.253715+02:00"
|
||||
|
|
|
@ -5,7 +5,7 @@ description: |
|
|||
It creates Prometheus Metrics and can send rule validation events to different targets like Loki, Elasticsearch, Slack or Discord
|
||||
|
||||
type: application
|
||||
version: 2.19.3
|
||||
version: 2.19.4
|
||||
appVersion: 2.15.2
|
||||
|
||||
icon: https://github.com/kyverno/kyverno/raw/main/img/logo.png
|
||||
|
@ -21,7 +21,7 @@ dependencies:
|
|||
version: "2.7.1"
|
||||
- name: ui
|
||||
condition: ui.enabled
|
||||
version: "2.9.5"
|
||||
version: "2.9.6"
|
||||
- name: kyvernoPlugin
|
||||
condition: kyvernoPlugin.enabled
|
||||
version: "1.5.5"
|
||||
version: "1.5.6"
|
||||
|
|
|
@ -3,5 +3,5 @@ name: kyvernoPlugin
|
|||
description: Policy Reporter Kyverno Plugin
|
||||
|
||||
type: application
|
||||
version: 1.5.5
|
||||
version: 1.5.6
|
||||
appVersion: 1.5.1
|
|
@ -35,7 +35,7 @@ spec:
|
|||
{{- if .Values.ingress.tls }}
|
||||
tls:
|
||||
{{- toYaml .Values.ingress.tls | nindent 4 }}
|
||||
{{- end -}}
|
||||
{{- end }}
|
||||
rules:
|
||||
{{- range .Values.ingress.hosts }}
|
||||
- host: {{ .host | quote }}
|
||||
|
|
|
@ -3,5 +3,5 @@ name: ui
|
|||
description: Policy Reporter UI
|
||||
|
||||
type: application
|
||||
version: 2.9.5
|
||||
version: 2.9.6
|
||||
appVersion: 1.8.4
|
||||
|
|
|
@ -35,7 +35,7 @@ spec:
|
|||
{{- if .Values.ingress.tls }}
|
||||
tls:
|
||||
{{- toYaml .Values.ingress.tls | nindent 4 }}
|
||||
{{- end -}}
|
||||
{{- end }}
|
||||
rules:
|
||||
{{- range .Values.ingress.hosts }}
|
||||
- host: {{ .host | quote }}
|
||||
|
|
|
@ -35,7 +35,7 @@ spec:
|
|||
{{- if .Values.ingress.tls }}
|
||||
tls:
|
||||
{{- toYaml .Values.ingress.tls | nindent 4 }}
|
||||
{{- end -}}
|
||||
{{- end }}
|
||||
rules:
|
||||
{{- range .Values.ingress.hosts }}
|
||||
- host: {{ .host | quote }}
|
||||
|
|
Loading…
Reference in a new issue