diff --git a/chart/stable/kubedb/README.md b/chart/stable/kubedb/README.md index 442a0560c..efca05bb4 100644 --- a/chart/stable/kubedb/README.md +++ b/chart/stable/kubedb/README.md @@ -54,7 +54,7 @@ The following tables lists the configurable parameters of the KubeDB chart and t | `rbac.serviceAccountName` | ServiceAccount KubeDB will use (ignored if rbac.create=true) | `default` | | `apiserver.groupPriorityMinimum` | The minimum priority the group should have. | 10000 | | `apiserver.versionPriority` | The ordering of this API inside of the group. | 15 | -| `apiserver.enableAdmissionWebhook` | Configure apiserver as admission webhooks for KubeDB CRDs | true | +| `apiserver.enableAdmissionWebhook` | Configure apiserver as admission webhooks for KubeDB CRDs | false | | `apiserver.ca` | CA certificate used by main Kubernetes api server | `` | diff --git a/chart/stable/kubedb/values.yaml b/chart/stable/kubedb/values.yaml index a5794f15b..1fe911489 100644 --- a/chart/stable/kubedb/values.yaml +++ b/chart/stable/kubedb/values.yaml @@ -43,6 +43,6 @@ apiserver: # for more information on proper values of this field versionPriority: 15 # enableAdmissionWebhook is used to configure apiserver as admission webhook for KubeDB CRDs - enableAdmissionWebhook: true + enableAdmissionWebhook: false # CA certificate used by main Kubernetes api server ca: diff --git a/docs/setup/install.md b/docs/setup/install.md index 6c9e89dd3..a8fbe0124 100644 --- a/docs/setup/install.md +++ b/docs/setup/install.md @@ -130,7 +130,8 @@ $ helm install stable/kubedb --name my-release # Kubernetes 1.9.0 or later $ helm repo update $ helm install stable/kubedb --name my-release \ - --set apiserver.ca="$(onessl get kube-ca)" + --set apiserver.ca="$(onessl get kube-ca)" \ + --set apiserver.enableAdmissionWebhook=true ``` To see the detailed configuration options, visit [here](https://github.com/kubedb/cli/tree/master/chart/stable/kubedb).