diff --git a/CHANGELOG.md b/CHANGELOG.md index 479f0d24..32137fc9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +# 2.24.0 +* Helm Chart + * GrafanaDashboard configuration [[#441](https://github.com/kyverno/policy-reporter/pull/441) by [nlamirault](https://github.com/nlamirault)] + * Added support of sidecars and extraManifests [[#439](https://github.com/kyverno/policy-reporter/pull/439) by [wbmillogo](https://github.com/wbmillogo)] + * Policy Reporter v2.20.0 + * fix(S3): Make `bucket` for S3 targets mendatory and don't show error logs if WebIdentity is used. + * fix(email): Fix violations "email sent to" log [[#444](https://github.com/kyverno/policy-reporter/pull/444) by [cosimomeli](https://github.com/cosimomeli)] + * feature(SecurityHub): fix product name field and allow to set company name [[#446](https://github.com/kyverno/policy-reporter/pull/446) by [balonik](https://github.com/balonik)] + * feature(AWS): recognize if AWS Pod Identity is present [[#452](https://github.com/kyverno/policy-reporter/pull/452) by [balonik](https://github.com/balonik)] + * feature(metrics); Add kind attribute in the Metrics filter [[#442](https://github.com/kyverno/policy-reporter/pull/442) by [abdul-jabbar01](https://github.com/abdul-jabbar01)] + * docs: point to ui subchart's values.yaml [[#450](https://github.com/kyverno/policy-reporter/pull/450) by [ustuehler](https://github.com/ustuehler)] + # 2.23.1 * Helm Chart * Update AppVersion in `values.yaml` diff --git a/Makefile b/Makefile index 6902c9d8..f41e7125 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ GO ?= go BUILD ?= build REPO ?= ghcr.io/kyverno/policy-reporter -IMAGE_TAG ?= 2.18.2 +IMAGE_TAG ?= 2.20.0 LD_FLAGS=-s -w -linkmode external -extldflags "-static" PLATFORMS ?= linux/arm64,linux/amd64,linux/s390x diff --git a/charts/policy-reporter/Chart.yaml b/charts/policy-reporter/Chart.yaml index 00ff5648..8d3ef533 100644 --- a/charts/policy-reporter/Chart.yaml +++ b/charts/policy-reporter/Chart.yaml @@ -6,7 +6,7 @@ description: | type: application version: 2.24.0 -appVersion: 2.19.0 +appVersion: 2.20.0 icon: https://github.com/kyverno/kyverno/raw/main/img/logo.png home: https://kyverno.github.io/policy-reporter diff --git a/charts/policy-reporter/README.md b/charts/policy-reporter/README.md index dfa01e30..ac0c9021 100644 --- a/charts/policy-reporter/README.md +++ b/charts/policy-reporter/README.md @@ -1,6 +1,6 @@ # Policy Reporter -![Version: v2.23.1](https://img.shields.io/badge/Version-v2.23.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v2.19.0](https://img.shields.io/badge/AppVersion-v2.19.0-informational?style=flat-square) +![Version: v2.24.0](https://img.shields.io/badge/Version-v2.24.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v2.20.0](https://img.shields.io/badge/AppVersion-v2.20.0-informational?style=flat-square) ## Motivation diff --git a/charts/policy-reporter/values.yaml b/charts/policy-reporter/values.yaml index 25d52eeb..94a667f8 100644 --- a/charts/policy-reporter/values.yaml +++ b/charts/policy-reporter/values.yaml @@ -5,7 +5,7 @@ image: registry: ghcr.io repository: kyverno/policy-reporter pullPolicy: IfNotPresent - tag: 2.19.0 + tag: 2.20.0 imagePullSecrets: [] diff --git a/manifest/policy-reporter-kyverno-ui-ha/install.yaml b/manifest/policy-reporter-kyverno-ui-ha/install.yaml index b0dff8bf..8937a4fe 100644 --- a/manifest/policy-reporter-kyverno-ui-ha/install.yaml +++ b/manifest/policy-reporter-kyverno-ui-ha/install.yaml @@ -481,7 +481,7 @@ spec: fsGroup: 1234 containers: - name: policy-reporter - image: "ghcr.io/kyverno/policy-reporter:2.19.0" + image: "ghcr.io/kyverno/policy-reporter:2.20.0" imagePullPolicy: IfNotPresent securityContext: allowPrivilegeEscalation: false diff --git a/manifest/policy-reporter-kyverno-ui/install.yaml b/manifest/policy-reporter-kyverno-ui/install.yaml index d10ddd5f..b9a74e6b 100644 --- a/manifest/policy-reporter-kyverno-ui/install.yaml +++ b/manifest/policy-reporter-kyverno-ui/install.yaml @@ -368,7 +368,7 @@ spec: fsGroup: 1234 containers: - name: policy-reporter - image: "ghcr.io/kyverno/policy-reporter:2.19.0" + image: "ghcr.io/kyverno/policy-reporter:2.20.0" imagePullPolicy: IfNotPresent securityContext: allowPrivilegeEscalation: false diff --git a/manifest/policy-reporter-ui/install.yaml b/manifest/policy-reporter-ui/install.yaml index f6251752..24b8f5fe 100644 --- a/manifest/policy-reporter-ui/install.yaml +++ b/manifest/policy-reporter-ui/install.yaml @@ -223,7 +223,7 @@ spec: fsGroup: 1234 containers: - name: policy-reporter - image: "ghcr.io/kyverno/policy-reporter:2.19.0" + image: "ghcr.io/kyverno/policy-reporter:2.20.0" imagePullPolicy: IfNotPresent securityContext: allowPrivilegeEscalation: false diff --git a/manifest/policy-reporter/install.yaml b/manifest/policy-reporter/install.yaml index 089b2472..b3bda7bb 100644 --- a/manifest/policy-reporter/install.yaml +++ b/manifest/policy-reporter/install.yaml @@ -113,7 +113,7 @@ spec: automountServiceAccountToken: true containers: - name: policy-reporter - image: "ghcr.io/kyverno/policy-reporter:2.19.0" + image: "ghcr.io/kyverno/policy-reporter:2.20.0" imagePullPolicy: IfNotPresent securityContext: allowPrivilegeEscalation: false diff --git a/manifest/violations-email-report/cronjob.yaml b/manifest/violations-email-report/cronjob.yaml index cbdc92d6..d5963ebe 100644 --- a/manifest/violations-email-report/cronjob.yaml +++ b/manifest/violations-email-report/cronjob.yaml @@ -26,7 +26,7 @@ spec: restartPolicy: Never containers: - name: policy-reporter - image: "ghcr.io/kyverno/policy-reporter:2.19.0" + image: "ghcr.io/kyverno/policy-reporter:2.20.0" imagePullPolicy: IfNotPresent securityContext: allowPrivilegeEscalation: false