Skip to content

Commit

Permalink
Leave admission webhook default off
Browse files Browse the repository at this point in the history
  • Loading branch information
tamalsaha committed Feb 28, 2018
1 parent fe8bc55 commit c699a23
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion chart/stable/kubedb/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 | `` |


Expand Down
2 changes: 1 addition & 1 deletion chart/stable/kubedb/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
3 changes: 2 additions & 1 deletion docs/setup/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -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).
Expand Down

0 comments on commit c699a23

Please sign in to comment.