Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Disable admission controllers for webhook server (#468)
Since [1.10 release](https://github.com/kubernetes/apiserver/blob/release-1.10/pkg/server/options/recommended.go#L43) admission options are enabled by default . This was not the case in 1.9 release. Admission plugins seem unnecessary for a webhook server. So, I am disabling it. If this is left enabled, then RBAC permissions need to be updated accordingly. ``` - apiGroups: - admissionregistration.k8s.io resources: - mutatingwebhookconfigurations - validatingwebhookconfigurations verbs: ["get","list"] ```
- Loading branch information