couchdb-helm
couchdb-helm copied to clipboard
Apache CouchDB Helm Chart
#### What this PR does / why we need it: This pull request removes the third-party HTTP call to generate a random UUID, which seems unnecessary. - uuidgen is by...
Would it be reasonable to create the `_users` database upon cluster initialization? If it doesn't make sense in all cases, would it be reasonable to do it optionally if a...
**Describe the bug** If your namespace has a deny-all network policy in place pods get crashing. If the chart has the option to enable networking it should set correct network...
**Describe the bug** https://github.com/apache/couchdb-helm/blob/master/couchdb/templates/service.yaml There is no option of loadbalancerIP We should have something like ```yml {{- if eq .Values.service.type "LoadBalancer" }} {{- if not (empty .Values.service.loadBalancerIP) }} loadBalancerIP: {{...
#### What this PR does / why we need it: This PR adds the `clusterSetup` variable, which defaults to false. When enabled, a Helm `post-install` hook is initialized which waits...
**Describe the bug** I followed the instructions to add a repo from [here](https://docs.couchdb.org/en/latest/install/kubernetes.html) when I run the command `helm install mycouchdb couchdb/couchdb` I get the following error `Error: execution error...
**Is your feature request related to a problem? Please describe.** CouchDB provided an error on Read-Only storage but did not trigger the readiness check on the _up endpoint (default provided...
**Describe the bug** In my work on #42, I'm unable to successfully run the test suite, even on `master`. I've tried kind 0.9.0, [as well as 0.8.1, which @willholley has...
**Describe the bug** Couchdb pods are continuously crashing under OpenShift. **Version of Helm and Kubernetes**: Helm $ helm version Client: &version.Version{SemVer:"v2.12.3", GitCommit:"eecf22f77df5f65c823aacd2dbd30ae6c65f186e", GitTreeState:"clean"} Server: &version.Version{SemVer:"v2.12.3", GitCommit:"eecf22f77df5f65c823aacd2dbd30ae6c65f186e", GitTreeState:"clean"} OpenShift $ oc...
The CouchDB Dockerfiles lay down an `[admins]` section in `/opt/couchdb/etc/local.d/docker.ini` [here](https://github.com/apache/couchdb-docker/blob/master/2.3.1/docker-entrypoint.sh#L68). The Helm chart is currently configured such that `/opt/couchdb/etc/default.d` is [persistent](https://github.com/apache/couchdb-helm/blob/e0d2ab9e8780a872c7537f88632893074bce5b92/couchdb/templates/statefulset.yaml#L92) but `/opt/couchdb/etc/local.d` is not. This results in regeneration...