cbickel closed pull request #3906: Correct documentation to setup database. URL: https://github.com/apache/incubator-openwhisk/pull/3906
This is a PR merged from a forked repository. As GitHub hides the original diff on merge, it is displayed below for the sake of provenance: As this is a foreign pull request (from a fork), the diff is supplied below (as it won't show otherwise due to GitHub magic): diff --git a/ansible/README.md b/ansible/README.md index 04cf9ff18c..ff62568167 100644 --- a/ansible/README.md +++ b/ansible/README.md @@ -100,8 +100,19 @@ db_password= db_protocol= db_host= db_port= + +[controller] +db_username= +db_password= + +[invoker] +db_username= +db_password= ``` +The section [db_creds] is to configure the admin access. The sections controller and invoker are for the authentication that these components are using. +You can use any username and password you like here. They will be generated automatically later, using the admin credentials from above. + This file is generated automatically if you are using an ephermeral CouchDB instance. Otherwise, you must create it explicitly. For convenience, you can use shell environment variables that are read by the playbook to generate the required `db_local.ini` file as shown below. ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services
