Skip to content

Commit 389e9cb

Browse files
authored
Release Playground v0.6.0 (#1041)
Signed-off-by: Frank Jogeleit <frank.jogeleit@web.de>
1 parent 632e2f6 commit 389e9cb

7 files changed

Lines changed: 33 additions & 4 deletions

File tree

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
KIND_IMAGE ?= kindest/node:v1.33.1
66
KIND_NAME ?= kind
7-
KYVERNO_VERSION ?= v1.15.0
7+
KYVERNO_VERSION ?= v1.15.1
88
KOCACHE ?= /tmp/ko-cache
99
USE_CONFIG ?= standard,no-ingress,in-cluster,all-read-rbac
1010
KUBECONFIG ?= ""

charts/kyverno-playground/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
apiVersion: v2
22
name: kyverno-playground
33
type: application
4-
version: 0.5.3
5-
appVersion: v0.5.3
4+
version: 0.6.0
5+
appVersion: v0.6.0
66
icon: https://github.com/kyverno/kyverno/raw/main/img/logo.png
77
description: Kyverno Playground Web Application
88
keywords:

charts/kyverno-playground/README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Kyverno Playground Web Application
44

5-
![Version: 0.5.3](https://img.shields.io/badge/Version-0.5.3-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v0.5.3](https://img.shields.io/badge/AppVersion-v0.5.3-informational?style=flat-square)
5+
![Version: 0.6.0](https://img.shields.io/badge/Version-0.6.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v0.6.0](https://img.shields.io/badge/AppVersion-v0.6.0-informational?style=flat-square)
66

77
## About
88

@@ -62,6 +62,8 @@ helm install kyverno-playground --namespace kyverno --create-namespace kyverno-p
6262
| serviceAccount.annotations | object | `{}` | Service account annotations |
6363
| serviceAccount.name | string | `""` | Service account name (required if `serviceAccount.create` is `false`) |
6464
| podAnnotations | object | `{}` | Pod annotations |
65+
| podLabels | object | `{}` | Additional labels to add to each pod |
66+
| global.labels | object | `{}` | additional labels added on each resource |
6567
| podSecurityContext | object | `{"fsGroup":2000}` | Pod security context |
6668
| securityContext | object | See [values.yaml](values.yaml) | Container security context |
6769
| service.type | string | `"ClusterIP"` | Service type |

charts/kyverno-playground/templates/_helpers.tpl

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,9 @@ helm.sh/chart: {{ include "kyverno-playground.chart" . }}
4040
app.kubernetes.io/version: {{ .Chart.AppVersion | quote }}
4141
{{- end }}
4242
app.kubernetes.io/managed-by: {{ .Release.Service }}
43+
{{- with .Values.global.labels }}
44+
{{ toYaml . }}
45+
{{- end -}}
4346
{{- end }}
4447

4548
{{/*

charts/kyverno-playground/templates/deployment.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,12 @@ spec:
2020
{{- end }}
2121
labels:
2222
{{- include "kyverno-playground.selectorLabels" . | nindent 8 }}
23+
{{- with .Values.podLabels }}
24+
{{- toYaml . | nindent 8 }}
25+
{{- end }}
26+
{{- with .Values.global.labels }}
27+
{{- toYaml . | nindent 8 }}
28+
{{- end }}
2329
spec:
2430
{{- with .Values.priorityClassName }}
2531
priorityClassName: {{ . }}

charts/kyverno-playground/values.yaml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,13 @@ serviceAccount:
4242
# -- Pod annotations
4343
podAnnotations: {}
4444

45+
# -- Additional labels to add to each pod
46+
podLabels: {}
47+
48+
global:
49+
# -- additional labels added on each resource
50+
labels: {}
51+
4552
# -- Pod security context
4653
podSecurityContext:
4754
fsGroup: 2000

release-notes/v0.6.0.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Release notes
2+
3+
Release notes for `v0.6.0`.
4+
5+
## :guitar: Misc :guitar:
6+
- Bump Kyverno to `v1.15.1`
7+
- Support ValidatingPolicy
8+
- Support ImageValidatingPolicy
9+
- Support MutatingPolicy
10+
- Support GeneratingPolicy
11+
- Support DeletingPolicy

0 commit comments

Comments
 (0)