mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-06 07:57:07 +00:00
* chore: bump chainsaw Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com> * policy lib Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com> * more changes Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com> * 2.11 Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com> * shards Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com> --------- Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com>
43 lines
1.1 KiB
YAML
43 lines
1.1 KiB
YAML
name: Kyverno logs
|
|
|
|
description: Show kyverno pods logs
|
|
|
|
runs:
|
|
using: composite
|
|
steps:
|
|
- shell: bash
|
|
run: |
|
|
set -e
|
|
kubectl get mutatingwebhookconfigurations
|
|
- shell: bash
|
|
run: |
|
|
set -e
|
|
kubectl get validatingwebhookconfigurations
|
|
- shell: bash
|
|
run: |
|
|
set -e
|
|
kubectl auth can-i --list --as system:serviceaccount:kyverno:kyverno-background-controller
|
|
- shell: bash
|
|
run: |
|
|
set -e
|
|
kubectl -n kyverno get pod
|
|
- shell: bash
|
|
run: |
|
|
set -e
|
|
kubectl -n kyverno describe pod | grep -i events -A10
|
|
- shell: bash
|
|
run: |
|
|
set -e
|
|
kubectl -n kyverno logs deploy/kyverno-admission-controller --all-containers
|
|
- shell: bash
|
|
run: |
|
|
set -e
|
|
kubectl -n kyverno logs deploy/kyverno-background-controller --all-containers
|
|
- shell: bash
|
|
run: |
|
|
set -e
|
|
kubectl -n kyverno logs deploy/kyverno-reports-controller --all-containers
|
|
- shell: bash
|
|
run: |
|
|
set -e
|
|
kubectl -n kyverno logs deploy/kyverno-cleanup-controller --all-containers
|