mirror of
https://github.com/kyverno/policy-reporter.git
synced 2024-12-14 11:57:32 +00:00
Update Container Registry
Signed-off-by: fjogeleit <frank.jogeleit@web.de>
This commit is contained in:
parent
442fccdbcd
commit
88be026041
11 changed files with 31 additions and 29 deletions
12
.github/workflows/ci.yaml
vendored
12
.github/workflows/ci.yaml
vendored
|
@ -7,10 +7,6 @@ on:
|
|||
- main
|
||||
- development
|
||||
|
||||
# Publish `v1.2.3` tags as releases.
|
||||
tags:
|
||||
- v*
|
||||
|
||||
paths-ignore:
|
||||
- README.md
|
||||
- charts/**
|
||||
|
@ -23,10 +19,10 @@ jobs:
|
|||
test:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Set up Go 1.16
|
||||
- name: Set up Go 1.17
|
||||
uses: actions/setup-go@v1
|
||||
with:
|
||||
go-version: 1.16
|
||||
go-version: 1.17
|
||||
- name: Check out code into the Go module directory
|
||||
uses: actions/checkout@v2
|
||||
- name: Get dependencies
|
||||
|
@ -37,10 +33,10 @@ jobs:
|
|||
coverage:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Set up Go 1.16
|
||||
- name: Set up Go 1.17
|
||||
uses: actions/setup-go@v2
|
||||
with:
|
||||
go-version: 1.16
|
||||
go-version: 1.17
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v2
|
||||
- name: Get dependencies
|
||||
|
|
|
@ -1,5 +1,11 @@
|
|||
# Changelog
|
||||
|
||||
# 1.10.0
|
||||
* Update Policy Reporter UI to v0.15.0
|
||||
* Add Filters as Query Parameters, make them shareable over links
|
||||
* Hosting all new Images on the GitHub Container Registry instead of DockerHub
|
||||
* Go Version updates to Go 1.17 of all components
|
||||
|
||||
# 1.9.4
|
||||
* Make the Image Registry configurable with `image.registry` [[#74](https://github.com/kyverno/policy-reporter/pull/74) by [stone-z](https://github.com/stone-z)]
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
FROM golang:1.16-buster as builder
|
||||
FROM golang:1.17-buster as builder
|
||||
|
||||
ARG LD_FLAGS
|
||||
ARG TARGETPLATFORM
|
||||
|
|
2
Makefile
2
Makefile
|
@ -1,7 +1,7 @@
|
|||
GO ?= go
|
||||
BUILD ?= build
|
||||
REPO ?= ghcr.io/kyverno/policy-reporter
|
||||
IMAGE_TAG ?= 1.8.6
|
||||
IMAGE_TAG ?= 1.8.7
|
||||
LD_FLAGS="-s -w"
|
||||
|
||||
all: build
|
||||
|
|
|
@ -4,9 +4,9 @@ dependencies:
|
|||
version: 1.4.4
|
||||
- name: ui
|
||||
repository: ""
|
||||
version: 1.9.2
|
||||
version: 1.10.0
|
||||
- name: kyvernoPlugin
|
||||
repository: ""
|
||||
version: 0.6.3
|
||||
digest: sha256:f4705a800b1204b5809798a324d90dee7d8b837c61db08b980a53aa5bc52cbc4
|
||||
generated: "2021-09-16T22:04:10.3473405+02:00"
|
||||
version: 0.7.0
|
||||
digest: sha256:93996a41bb416445ba7e5c8fe29650a811671b9970bd0366aa09c860cfedc91c
|
||||
generated: "2021-09-27T09:56:18.1815481+02: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
|
||||
|
||||
type: application
|
||||
version: 1.9.4
|
||||
appVersion: 1.8.6
|
||||
version: 1.10.0
|
||||
appVersion: 1.8.7
|
||||
|
||||
dependencies:
|
||||
- name: monitoring
|
||||
|
@ -16,8 +16,8 @@ dependencies:
|
|||
- name: ui
|
||||
condition: ui.enabled
|
||||
repository: ""
|
||||
version: "1.9.2"
|
||||
version: "1.10.0"
|
||||
- name: kyvernoPlugin
|
||||
condition: kyvernoPlugin.enabled
|
||||
repository: ""
|
||||
version: "0.6.3"
|
||||
version: "0.7.0"
|
||||
|
|
|
@ -3,5 +3,5 @@ name: kyvernoPlugin
|
|||
description: Policy Reporter Kyverno Plugin
|
||||
|
||||
type: application
|
||||
version: 0.6.3
|
||||
version: 0.7.0
|
||||
appVersion: 0.3.2
|
|
@ -1,6 +1,6 @@
|
|||
image:
|
||||
registry: docker.io
|
||||
repository: fjogeleit/policy-reporter-kyverno-plugin
|
||||
registry: ghcr.io
|
||||
repository: kyverno/policy-reporter-kyverno-plugin
|
||||
pullPolicy: IfNotPresent
|
||||
tag: 0.3.2
|
||||
|
||||
|
|
|
@ -3,5 +3,5 @@ name: ui
|
|||
description: Policy Reporter UI
|
||||
|
||||
type: application
|
||||
version: 1.9.2
|
||||
appVersion: 0.14.0
|
||||
version: 1.10.0
|
||||
appVersion: 0.15.0
|
||||
|
|
|
@ -8,10 +8,10 @@ plugins:
|
|||
kyverno: false
|
||||
|
||||
image:
|
||||
registry: docker.io
|
||||
repository: fjogeleit/policy-reporter-ui
|
||||
registry: ghcr.io
|
||||
repository: kyverno/policy-reporter-ui
|
||||
pullPolicy: IfNotPresent
|
||||
tag: 0.14.0
|
||||
tag: 0.15.0
|
||||
|
||||
imagePullSecrets: []
|
||||
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
image:
|
||||
registry: docker.io
|
||||
repository: fjogeleit/policy-reporter
|
||||
registry: ghcr.io
|
||||
repository: kyverno/policy-reporter
|
||||
pullPolicy: IfNotPresent
|
||||
tag: 1.8.6
|
||||
tag: 1.8.7
|
||||
|
||||
imagePullSecrets: []
|
||||
|
||||
|
|
Loading…
Reference in a new issue