1
0
Fork 0
mirror of https://github.com/kyverno/kyverno.git synced 2025-03-31 03:45:17 +00:00

fix: missing permission in cleanup controller role (#5646)

Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com>

Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com>
This commit is contained in:
Charles-Edouard Brétéché 2022-12-11 22:22:06 +01:00 committed by GitHub
parent 718f80c5a1
commit 5d95a62769
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 3 deletions

View file

@ -33,5 +33,7 @@ jobs:
kubectl get mutatingwebhookconfigurations,validatingwebhookconfigurations
kubectl -n kyverno get pod
kubectl -n kyverno describe pod | grep -i events -A10
kubectl -n kyverno logs deploy/kyverno -p || true
kubectl -n kyverno logs deploy/kyverno
kubectl -n kyverno logs deploy/kyverno --all-containers -p || true
kubectl -n kyverno logs deploy/kyverno --all-containers
kubectl -n kyverno logs deploy/cleanup-controller --all-containers -p || true
kubectl -n kyverno logs deploy/cleanup-controller --all-containers

View file

@ -9,9 +9,10 @@ metadata:
namespace: {{ template "kyverno.namespace" . }}
rules:
- apiGroups:
- ""
- ''
resources:
- secrets
- configmaps
verbs:
- get
- list