mirror of
https://github.com/kyverno/policy-reporter.git
synced 2024-12-14 11:57:32 +00:00
UI update to v1.0.1 (#93)
Signed-off-by: Frank Jogeleit <frank.jogeleit@web.de>
This commit is contained in:
parent
8775715b8f
commit
571b07ea86
6 changed files with 15 additions and 8 deletions
|
@ -1,5 +1,10 @@
|
|||
# Changelog
|
||||
|
||||
# 2.0.1
|
||||
* Remove NetworkPolicy ingress rule for UI if not enabled
|
||||
* Update Policy Reporter UI
|
||||
* Fix: Show PolicyReportResult Properties in Tables
|
||||
|
||||
# 2.0.0
|
||||
|
||||
## Chart
|
||||
|
|
|
@ -4,9 +4,9 @@ dependencies:
|
|||
version: 2.0.0
|
||||
- name: ui
|
||||
repository: ""
|
||||
version: 2.0.0
|
||||
version: 2.0.1
|
||||
- name: kyvernoPlugin
|
||||
repository: ""
|
||||
version: 1.0.0
|
||||
digest: sha256:7346779f27b9446f94271cb4b7233bac1b2549cf1205219b055bef926d2ea110
|
||||
generated: "2021-12-13T15:40:00.73344+01:00"
|
||||
digest: sha256:d91a458143907a34e0fb4478ce1e43a1da553d34a4e83f96d203f21eb4d5f493
|
||||
generated: "2021-12-17T13:18:52.621629+01: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.0.0
|
||||
version: 2.0.1
|
||||
appVersion: 2.0.0
|
||||
|
||||
icon: https://github.com/kyverno/kyverno/raw/main/img/logo.png
|
||||
|
@ -21,7 +21,7 @@ dependencies:
|
|||
version: "2.0.0"
|
||||
- name: ui
|
||||
condition: ui.enabled
|
||||
version: "2.0.0"
|
||||
version: "2.0.1"
|
||||
- name: kyvernoPlugin
|
||||
condition: kyvernoPlugin.enabled
|
||||
version: "1.0.0"
|
||||
|
|
|
@ -3,5 +3,5 @@ name: ui
|
|||
description: Policy Reporter UI
|
||||
|
||||
type: application
|
||||
version: 2.0.0
|
||||
appVersion: 1.0.0
|
||||
version: 2.0.1
|
||||
appVersion: 1.0.1
|
||||
|
|
|
@ -14,7 +14,7 @@ image:
|
|||
registry: ghcr.io
|
||||
repository: kyverno/policy-reporter-ui
|
||||
pullPolicy: IfNotPresent
|
||||
tag: 1.0.0
|
||||
tag: 1.0.1
|
||||
|
||||
imagePullSecrets: []
|
||||
|
||||
|
|
|
@ -11,12 +11,14 @@ spec:
|
|||
- Ingress
|
||||
- Egress
|
||||
ingress:
|
||||
{{- if .Values.ui.enabled }}
|
||||
- from:
|
||||
- podSelector:
|
||||
matchLabels: {{- include "ui.selectorLabels" . | nindent 10 }}
|
||||
ports:
|
||||
- protocol: TCP
|
||||
port: 8080
|
||||
{{- end }}
|
||||
{{- with .Values.networkPolicy.ingress }}
|
||||
{{- toYaml . | nindent 2 }}
|
||||
{{- end }}
|
||||
|
|
Loading…
Reference in a new issue