1
0
Fork 0
mirror of https://github.com/kyverno/policy-reporter.git synced 2024-12-14 11:57:32 +00:00

Prepare Release v2.22.0 (#406)

Signed-off-by: Frank Jogeleit <frank.jogeleit@lovoo.com>
This commit is contained in:
Frank Jogeleit 2024-02-04 10:52:38 +01:00 committed by GitHub
parent facd520e64
commit 7607a987ab
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
15 changed files with 40 additions and 22 deletions

View file

@ -1,5 +1,18 @@
# Changelog
# 2.22.0
* Helm Chart
* Policy Reporter v2.18.0
* Support HTTP BasicAuth for Loki [[#394](https://github.com/kyverno/policy-reporter/pull/394) by [YannickTeKulve](https://github.com/YannickTeKulve)]
* Update README Targets and Links [[#396](https://github.com/kyverno/policy-reporter/pull/396) by [vponoikoait](https://github.com/vponoikoait)]
* AccoundID for SecurityHub is now optional if IRSA is used.
* Removed unused from config.yaml. Stream name isn't a property of SecurityHub [[#403](https://github.com/kyverno/policy-reporter/pull/403) by [vponoikoait](https://github.com/vponoikoait)]
* Support `certificate` and `skipTLS` configuration for SMTP Client configuration.
* Policy Reporter Kyverno Plugin v1.6.3
* Fix HTML Report Details
* Monitoring Chart
* Add Rule filter to Grafana PolicyReport Details Dashboard [[#399](https://github.com/kyverno/policy-reporter/pull/399) by [lukashankeln](https://github.com/lukashankeln)]
# 2.21.6
* Helm Chart
* Policy Reporter v2.17.5

View file

@ -1,7 +1,7 @@
GO ?= go
BUILD ?= build
REPO ?= ghcr.io/kyverno/policy-reporter
IMAGE_TAG ?= 2.17.5
IMAGE_TAG ?= 2.18.0
LD_FLAGS=-s -w -linkmode external -extldflags "-static"
PLATFORMS ?= linux/arm64,linux/amd64,linux/s390x

View file

@ -1,12 +1,12 @@
dependencies:
- name: monitoring
repository: ""
version: 2.8.1
version: 2.8.2
- name: ui
repository: ""
version: 2.10.5
- name: kyvernoPlugin
repository: ""
version: 1.6.4
digest: sha256:ae8c14cad2e0bb5f5c2c1107f40a5a34164164473fcafb223114825cb35ded05
generated: "2024-01-12T10:57:00.878845+01:00"
version: 1.6.5
digest: sha256:5ee2b291bc447466442a8ea81f94fc852352ac8ae15045525778fdea3769c7c2
generated: "2024-02-04T10:42:39.448841+01:00"

View file

@ -5,8 +5,8 @@ description: |
It creates Prometheus Metrics and can send rule validation events to different targets like Loki, Elasticsearch, Slack or Discord
type: application
version: 2.21.6
appVersion: 2.17.5
version: 2.22.0
appVersion: 2.18.0
icon: https://github.com/kyverno/kyverno/raw/main/img/logo.png
home: https://kyverno.github.io/policy-reporter
@ -18,10 +18,10 @@ maintainers:
dependencies:
- name: monitoring
condition: monitoring.enabled
version: "2.8.1"
version: "2.8.2"
- name: ui
condition: ui.enabled
version: "2.10.5"
- name: kyvernoPlugin
condition: kyvernoPlugin.enabled
version: "1.6.4"
version: "1.6.5"

View file

@ -1,6 +1,6 @@
# Policy Reporter
![Version: v2.21.6](https://img.shields.io/badge/Version-v2.21.6-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v2.17.5](https://img.shields.io/badge/AppVersion-v2.17.5-informational?style=flat-square)
![Version: v2.22.0](https://img.shields.io/badge/Version-v2.22.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v2.18.0](https://img.shields.io/badge/AppVersion-v2.18.0-informational?style=flat-square)
## Motivation

View file

@ -3,5 +3,5 @@ name: kyvernoPlugin
description: Policy Reporter Kyverno Plugin
type: application
version: 1.6.4
appVersion: 1.6.2
version: 1.6.5
appVersion: 1.6.3

View file

@ -2,7 +2,7 @@ image:
registry: ghcr.io
repository: kyverno/policy-reporter-kyverno-plugin
pullPolicy: IfNotPresent
tag: 1.6.2
tag: 1.6.3
imagePullSecrets: []

View file

@ -3,5 +3,5 @@ name: monitoring
description: Policy Reporter Monitoring with predefined ServiceMonitor and Grafana Dashboards
type: application
version: 2.8.1
version: 2.8.2
appVersion: 0.0.0

View file

@ -7,6 +7,8 @@ loki:
mountedSecret: {{ .Values.target.loki.mountedSecret | quote }}
minimumPriority: {{ .Values.target.loki.minimumPriority | quote }}
skipExistingOnStartup: {{ .Values.target.loki.skipExistingOnStartup }}
username: {{ .Values.target.loki.username | quote }}
password: {{ .Values.target.loki.password | quote }}
{{- with .Values.target.loki.customLabels }}
customLabels:
{{- toYaml . | nindent 4 }}

View file

@ -5,7 +5,7 @@ image:
registry: ghcr.io
repository: kyverno/policy-reporter
pullPolicy: IfNotPresent
tag: 2.17.5
tag: 2.18.0
imagePullSecrets: []
@ -328,6 +328,9 @@ target:
skipExistingOnStartup: true
# Added as additional labels to each Loki event
customLabels: {}
# HTTP BasicAuth credentials for Loki
username: ""
password: ""
# Filter Results which should send to this target by report labels, namespaces, priorities or policies
# Wildcars for namespaces and policies are supported, you can either define exclude or include values
# Filters are available for all targets except the UI

View file

@ -339,7 +339,7 @@ spec:
automountServiceAccountToken: true
containers:
- name: "kyverno-plugin"
image: "ghcr.io/kyverno/policy-reporter-kyverno-plugin:1.6.2"
image: "ghcr.io/kyverno/policy-reporter-kyverno-plugin:1.6.3"
imagePullPolicy: IfNotPresent
securityContext:
allowPrivilegeEscalation: false
@ -480,7 +480,7 @@ spec:
fsGroup: 1234
containers:
- name: policy-reporter
image: "ghcr.io/kyverno/policy-reporter:2.17.5"
image: "ghcr.io/kyverno/policy-reporter:2.18.0"
imagePullPolicy: IfNotPresent
securityContext:
allowPrivilegeEscalation: false

View file

@ -259,7 +259,7 @@ spec:
automountServiceAccountToken: true
containers:
- name: "kyverno-plugin"
image: "ghcr.io/kyverno/policy-reporter-kyverno-plugin:1.6.2"
image: "ghcr.io/kyverno/policy-reporter-kyverno-plugin:1.6.3"
imagePullPolicy: IfNotPresent
securityContext:
allowPrivilegeEscalation: false
@ -367,7 +367,7 @@ spec:
fsGroup: 1234
containers:
- name: policy-reporter
image: "ghcr.io/kyverno/policy-reporter:2.17.5"
image: "ghcr.io/kyverno/policy-reporter:2.18.0"
imagePullPolicy: IfNotPresent
securityContext:
allowPrivilegeEscalation: false

View file

@ -223,7 +223,7 @@ spec:
fsGroup: 1234
containers:
- name: policy-reporter
image: "ghcr.io/kyverno/policy-reporter:2.17.5"
image: "ghcr.io/kyverno/policy-reporter:2.18.0"
imagePullPolicy: IfNotPresent
securityContext:
allowPrivilegeEscalation: false

View file

@ -113,7 +113,7 @@ spec:
automountServiceAccountToken: true
containers:
- name: policy-reporter
image: "ghcr.io/kyverno/policy-reporter:2.17.5"
image: "ghcr.io/kyverno/policy-reporter:2.18.0"
imagePullPolicy: IfNotPresent
securityContext:
allowPrivilegeEscalation: false

View file

@ -26,7 +26,7 @@ spec:
restartPolicy: Never
containers:
- name: policy-reporter
image: "ghcr.io/kyverno/policy-reporter:2.17.5"
image: "ghcr.io/kyverno/policy-reporter:2.18.0"
imagePullPolicy: IfNotPresent
securityContext:
allowPrivilegeEscalation: false