diff --git a/.github/workflows/conformance.yaml b/.github/workflows/conformance.yaml index 6a0b989472..9de530be5c 100644 --- a/.github/workflows/conformance.yaml +++ b/.github/workflows/conformance.yaml @@ -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 diff --git a/charts/kyverno/templates/cleanup-controller/role.yaml b/charts/kyverno/templates/cleanup-controller/role.yaml index ddcf55c50f..f5f06a7865 100644 --- a/charts/kyverno/templates/cleanup-controller/role.yaml +++ b/charts/kyverno/templates/cleanup-controller/role.yaml @@ -9,9 +9,10 @@ metadata: namespace: {{ template "kyverno.namespace" . }} rules: - apiGroups: - - "" + - '' resources: - secrets + - configmaps verbs: - get - list