diff options
author | Trevor Bramwell <tbramwell@linuxfoundation.org> | 2018-10-01 10:28:17 -0700 |
---|---|---|
committer | Trevor Bramwell <tbramwell@linuxfoundation.org> | 2018-10-01 10:31:09 -0700 |
commit | 42aeeea8514b0ca99005ae64ca360a949ef9c6ef (patch) | |
tree | 234a5cd3abe85b5763376058ebcaa4514ee89ae0 /config.env.sample | |
parent | 7d275735c62c9d0ce423327d67494859e285fce7 (diff) |
Use Upstream Rabbitmq Docker Container
The upstream rabbitmq container supports specifying the default admin
user and password through the environment variables:
RABBITMQ_DEFAULT_USER and RABBITMQ_DEFAULT_PASS.
Utilizing these variables removes the need to build a rabbitmq container
specific to the Pharos LaaS Dashboard.
Change-Id: I390d7fa9254a0f28b374235254caff59b219cd87
Signed-off-by: Trevor Bramwell <tbramwell@linuxfoundation.org>
Diffstat (limited to 'config.env.sample')
-rw-r--r-- | config.env.sample | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/config.env.sample b/config.env.sample index 8d0afd6..a2675ef 100644 --- a/config.env.sample +++ b/config.env.sample @@ -20,8 +20,8 @@ JIRA_USER_NAME=sample_jira_user JIRA_USER_PASSWORD=sample_jira_pass # Rabbitmq -RABBITMQ_USER=opnfv -RABBITMQ_PASSWORD=opnfvopnfv +RABBITMQ_DEFAULT_USER=opnfv +RABBITMQ_DEFAULT_PASS=opnfvopnfv # Cleanup: time is in days BOOKING_EXPIRE_TIME=30 |