Skip to content

Commit

Permalink
Prepare Release v2.22.0 (#406)
Browse files Browse the repository at this point in the history
Signed-off-by: Frank Jogeleit <frank.jogeleit@lovoo.com>
  • Loading branch information
fjogeleit committed Feb 4, 2024
1 parent facd520 commit 7607a98
Show file tree
Hide file tree
Showing 15 changed files with 40 additions and 22 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -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

Expand Down
8 changes: 4 additions & 4 deletions charts/policy-reporter/Chart.lock
Original file line number Diff line number Diff line change
@@ -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"
8 changes: 4 additions & 4 deletions charts/policy-reporter/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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"
2 changes: 1 addition & 1 deletion charts/policy-reporter/README.md
Original file line number Diff line number Diff line change
@@ -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

Expand Down
4 changes: 2 additions & 2 deletions charts/policy-reporter/charts/kyvernoPlugin/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion charts/policy-reporter/charts/kyvernoPlugin/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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: []

Expand Down
2 changes: 1 addition & 1 deletion charts/policy-reporter/charts/monitoring/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 2 additions & 0 deletions charts/policy-reporter/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down
5 changes: 4 additions & 1 deletion charts/policy-reporter/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ image:
registry: ghcr.io
repository: kyverno/policy-reporter
pullPolicy: IfNotPresent
tag: 2.17.5
tag: 2.18.0

imagePullSecrets: []

Expand Down Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions manifest/policy-reporter-kyverno-ui-ha/install.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions manifest/policy-reporter-kyverno-ui/install.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion manifest/policy-reporter-ui/install.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion manifest/policy-reporter/install.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion manifest/violations-email-report/cronjob.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 7607a98

Please sign in to comment.