Skip to content

Instantly share code, notes, and snippets.

@didil
Created October 5, 2020 16:38
Show Gist options
  • Save didil/20c24727db68e0cd8df8df4eb9697594 to your computer and use it in GitHub Desktop.
Save didil/20c24727db68e0cd8df8df4eb9697594 to your computer and use it in GitHub Desktop.
Hello Webhook Conf
apiVersion: admissionregistration.k8s.io/v1
kind: MutatingWebhookConfiguration
metadata:
name: "hello-webhook.leclouddev.com"
webhooks:
- name: "hello-webhook.leclouddev.com"
objectSelector:
matchLabels:
hello: "true"
rules:
- apiGroups: [""]
apiVersions: ["v1"]
operations: ["CREATE"]
resources: ["pods"]
scope: "Namespaced"
clientConfig:
service:
namespace: "default"
name: "hello-webhook-service"
path: /mutate
admissionReviewVersions: ["v1", "v1beta1"]
sideEffects: None
timeoutSeconds: 10
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment