jessebot commented on code in PR #132:
URL: https://github.com/apache/couchdb-helm/pull/132#discussion_r1618695588


##########
couchdb/README.md:
##########
@@ -53,30 +53,30 @@ This will create a Secret containing the admin credentials 
for the cluster.
 Those credentials can be retrieved as follows:
 
 ```bash
-$ kubectl get secret my-release-couchdb -o go-template='{{ .data.adminPassword 
}}' | base64 --decode
+kubectl get secret my-release-couchdb -o go-template='{{ .data.adminPassword 
}}' | base64 --decode
 ```
 
 If you prefer to configure the admin credentials directly you can create a
-Secret containing `adminUsername`, `adminPassword` and `cookieAuthSecret` keys:
+Secret containing `adminUsername`, `adminPassword` and `erlangCookie` keys:
 
 ```bash
-$  kubectl create secret generic my-release-couchdb 
--from-literal=adminUsername=foo --from-literal=adminPassword=bar 
--from-literal=cookieAuthSecret=baz
+kubectl create secret generic my-release-couchdb 
--from-literal=adminUsername=foo --from-literal=adminPassword=bar 
--from-literal=erlangCookie=baz
 ```
 
 If you want to set the `adminHash` directly to achieve consistent salts between
 different nodes you need to add it to the secret:
 
 ```bash
-$  kubectl create secret generic my-release-couchdb \
+kubectl create secret generic my-release-couchdb \
    --from-literal=adminUsername=foo \
-   --from-literal=cookieAuthSecret=baz \
+   --from-literal=erlangCookie=baz \

Review Comment:
   ```suggestion
      --from-literal=erlangCookie=baz \
      --from-literal=cookieAuthSecret=beep \
   ```



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to