mirror of
https://github.com/kyverno/policy-reporter.git
synced 2024-12-14 11:57:32 +00:00
Release linux/s390x support
Signed-off-by: Frank Jogeleit <frank.jogeleit@web.de>
This commit is contained in:
parent
6d075054e6
commit
4b528681c5
9 changed files with 26 additions and 16 deletions
10
CHANGELOG.md
10
CHANGELOG.md
|
@ -1,5 +1,15 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
# 2.3.0
|
||||||
|
* Policy Reporter
|
||||||
|
* Add Support for linux/s390x [[#115](https://github.com/kyverno/policy-reporter/pull/115) by [skuethe](https://github.com/skuethe)]
|
||||||
|
|
||||||
|
* Policy Reporter UI
|
||||||
|
* Add Support for linux/s390x [[#98](https://github.com/kyverno/policy-reporter-ui/pull/98) by [skuethe](https://github.com/skuethe)]
|
||||||
|
|
||||||
|
* Policy Reporter KyvernoPlugin
|
||||||
|
* Add Support for linux/s390x [[#13](https://github.com/kyverno/policy-reporter-kyverno-plugin/pull/13) by [skuethe](https://github.com/skuethe)]
|
||||||
|
|
||||||
# 2.2.6
|
# 2.2.6
|
||||||
* Use upper case on drop capabilities [[#113](https://github.com/kyverno/policy-reporter/pull/113) by [skuethe](https://github.com/skuethe)]
|
* Use upper case on drop capabilities [[#113](https://github.com/kyverno/policy-reporter/pull/113) by [skuethe](https://github.com/skuethe)]
|
||||||
|
|
||||||
|
|
2
Makefile
2
Makefile
|
@ -1,7 +1,7 @@
|
||||||
GO ?= go
|
GO ?= go
|
||||||
BUILD ?= build
|
BUILD ?= build
|
||||||
REPO ?= ghcr.io/kyverno/policy-reporter
|
REPO ?= ghcr.io/kyverno/policy-reporter
|
||||||
IMAGE_TAG ?= 2.0.2
|
IMAGE_TAG ?= 2.1.0
|
||||||
LD_FLAGS='-s -w -linkmode external -extldflags "-static"'
|
LD_FLAGS='-s -w -linkmode external -extldflags "-static"'
|
||||||
|
|
||||||
all: build
|
all: build
|
||||||
|
|
|
@ -4,9 +4,9 @@ dependencies:
|
||||||
version: 2.0.1
|
version: 2.0.1
|
||||||
- name: ui
|
- name: ui
|
||||||
repository: ""
|
repository: ""
|
||||||
version: 2.2.1
|
version: 2.3.0
|
||||||
- name: kyvernoPlugin
|
- name: kyvernoPlugin
|
||||||
repository: ""
|
repository: ""
|
||||||
version: 1.1.2
|
version: 1.2.0
|
||||||
digest: sha256:fedf9695b8543b1d8c61d0ae0c8b6397deccc886a1a9c9816d969d6de140594c
|
digest: sha256:bb2e616bb0ec6be95b4592201ac24fbe796d10478a8c89adde86df602dfdd303
|
||||||
generated: "2022-02-17T11:25:13.499347+01:00"
|
generated: "2022-02-22T11:59:51.844439+01:00"
|
||||||
|
|
|
@ -5,8 +5,8 @@ description: |
|
||||||
It creates Prometheus Metrics and can send rule validation events to different targets like Loki, Elasticsearch, Slack or Discord
|
It creates Prometheus Metrics and can send rule validation events to different targets like Loki, Elasticsearch, Slack or Discord
|
||||||
|
|
||||||
type: application
|
type: application
|
||||||
version: 2.2.6
|
version: 2.3.0
|
||||||
appVersion: 2.0.2
|
appVersion: 2.1.0
|
||||||
|
|
||||||
icon: https://github.com/kyverno/kyverno/raw/main/img/logo.png
|
icon: https://github.com/kyverno/kyverno/raw/main/img/logo.png
|
||||||
home: https://kyverno.github.io/policy-reporter
|
home: https://kyverno.github.io/policy-reporter
|
||||||
|
@ -21,7 +21,7 @@ dependencies:
|
||||||
version: "2.0.1"
|
version: "2.0.1"
|
||||||
- name: ui
|
- name: ui
|
||||||
condition: ui.enabled
|
condition: ui.enabled
|
||||||
version: "2.2.1"
|
version: "2.3.0"
|
||||||
- name: kyvernoPlugin
|
- name: kyvernoPlugin
|
||||||
condition: kyvernoPlugin.enabled
|
condition: kyvernoPlugin.enabled
|
||||||
version: "1.1.2"
|
version: "1.2.0"
|
||||||
|
|
|
@ -3,5 +3,5 @@ name: kyvernoPlugin
|
||||||
description: Policy Reporter Kyverno Plugin
|
description: Policy Reporter Kyverno Plugin
|
||||||
|
|
||||||
type: application
|
type: application
|
||||||
version: 1.1.2
|
version: 1.2.0
|
||||||
appVersion: 1.1.1
|
appVersion: 1.2.0
|
|
@ -2,7 +2,7 @@ image:
|
||||||
registry: ghcr.io
|
registry: ghcr.io
|
||||||
repository: kyverno/policy-reporter-kyverno-plugin
|
repository: kyverno/policy-reporter-kyverno-plugin
|
||||||
pullPolicy: IfNotPresent
|
pullPolicy: IfNotPresent
|
||||||
tag: 1.1.1
|
tag: 1.2.0
|
||||||
|
|
||||||
imagePullSecrets: []
|
imagePullSecrets: []
|
||||||
|
|
||||||
|
|
|
@ -3,5 +3,5 @@ name: ui
|
||||||
description: Policy Reporter UI
|
description: Policy Reporter UI
|
||||||
|
|
||||||
type: application
|
type: application
|
||||||
version: 2.2.1
|
version: 2.3.0
|
||||||
appVersion: 1.2.1
|
appVersion: 1.3.0
|
||||||
|
|
|
@ -14,7 +14,7 @@ image:
|
||||||
registry: ghcr.io
|
registry: ghcr.io
|
||||||
repository: kyverno/policy-reporter-ui
|
repository: kyverno/policy-reporter-ui
|
||||||
pullPolicy: IfNotPresent
|
pullPolicy: IfNotPresent
|
||||||
tag: 1.2.1
|
tag: 1.3.0
|
||||||
|
|
||||||
imagePullSecrets: []
|
imagePullSecrets: []
|
||||||
|
|
||||||
|
|
|
@ -2,7 +2,7 @@ image:
|
||||||
registry: ghcr.io
|
registry: ghcr.io
|
||||||
repository: kyverno/policy-reporter
|
repository: kyverno/policy-reporter
|
||||||
pullPolicy: IfNotPresent
|
pullPolicy: IfNotPresent
|
||||||
tag: 2.0.2
|
tag: 2.1.0
|
||||||
|
|
||||||
imagePullSecrets: []
|
imagePullSecrets: []
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue