Kubernetes Admission webhook for Statefulset Kubernetes Admission webhook for Statefulset kubernetes kubernetes

Kubernetes Admission webhook for Statefulset


It should be, for example, the PingCap TiDB operator has an option to enable/disable the admission controller for the StatefulSet it manages.

I'm not really sure what behavior you are seeing? It's not allowing you to create a StatefulSet? If yes, you can start you with '*' values and work your way down. For example, allow all namespaces:

apiVersion: admissionregistration.k8s.io/v1kind: ValidatingWebhookConfiguration...webhooks:- name: my-webhook.example.com  rules:  - operations: ["CREATE", "UPDATE"]    apiGroups: ["apps"]    apiVersions: ["v1", "v1beta1"]    resources: ["deployments", "replicasets", "statefulsets"]    scope: "*"