couchdb-helm icon indicating copy to clipboard operation
couchdb-helm copied to clipboard

A value for couchdbConfig.couchdb.uuid must be set

Open alwindoss opened this issue 5 years ago • 2 comments

Describe the bug I followed the instructions to add a repo from here when I run the command helm install mycouchdb couchdb/couchdb I get the following error

Error: execution error at (couchdb/templates/configmap.yaml:12:54): A value for couchdbConfig.couchdb.uuid must be set

Version of Helm and Kubernetes: helm I am running the development version of it by builing master Kubernetes: I am running minikube

minikube version: v1.12.3
commit: 2243b4b97c131e3244c5f014faedca0d846599f5-dirty

What happened: Error: execution error at (couchdb/templates/configmap.yaml:12:54): A value for couchdbConfig.couchdb.uuid must be set

What you expected to happen: Expected couchdb to be installed

How to reproduce it (as minimally and precisely as possible): See "Describe the bug section" above

alwindoss avatar Aug 22 '20 05:08 alwindoss

Hit the link just below those instructions (the Helm chart readme link) - the tl;dr section there solves this issue..

helm install couchdb/couchdb \
  --set allowAdminParty=true \
  --set couchdbConfig.couchdb.uuid=$(curl https://www.uuidgenerator.net/api/version4 2>/dev/null | tr -d -)

You can, of course, generate a UUID in other ways, too.

jpapejr avatar Oct 07 '20 16:10 jpapejr

But since that is a mandatory field shouldn't it be included in the link mentioned?

alwindoss avatar Oct 18 '20 20:10 alwindoss