mirror of
https://github.com/kyverno/kyverno.git
synced 2024-12-15 17:51:20 +00:00
18 lines
656 B
YAML
18 lines
656 B
YAML
# Example of MutatingWebhookConfiguration which can be used for debug, when controller is placed on master node
|
|
# To register webhook for debug, replace ${CA_BUNDLE} with corresponding data from ~/.kube/config and create this resource
|
|
apiVersion: admissionregistration.k8s.io/v1beta1
|
|
kind: MutatingWebhookConfiguration
|
|
metadata:
|
|
name: nirmata-kyverno-webhook-cfg-debug
|
|
labels:
|
|
app: kyverno
|
|
webhooks:
|
|
- name: webhook.nirmata.kyverno
|
|
clientConfig:
|
|
url: "https://localhost/mutate"
|
|
caBundle: ${CA_BUNDLE}
|
|
rules:
|
|
- operations: [ "CREATE" ]
|
|
resources: [ "*/*" ]
|
|
apiGroups: [ "*" ]
|
|
apiVersions: [ "*" ]
|