Default rabbitmq username/passwould should not be 'guest'

Change-Id: I83c1a2f9fd3cb8c7c854a96c32ed18fcc818f15e
Resolves: https://bugzilla.redhat.com/show_bug.cgi?id=1232025
This commit is contained in:
James Slagle 2015-06-15 17:10:30 -04:00
parent 28c645e858
commit 8baa6217dd
2 changed files with 10 additions and 8 deletions

View File

@ -204,12 +204,12 @@ _auth_opts = [
'If left unset, one will be automatically generated.')
),
cfg.StrOpt('undercloud_rabbit_password',
default='guest',
help='Rabbitmq password.'
help=('Rabbitmq password. '
'If left unset, one will be automatically generated.')
),
cfg.StrOpt('undercloud_rabbit_username',
default='guest',
help='Rabbitmq username.'
help=('Rabbitmq username. '
'If left unset, one will be automatically generated.')
),
cfg.StrOpt('undercloud_heat_stack_domain_admin_password',
help=('Heat stack domain admin password. '

View File

@ -127,11 +127,13 @@
# (string value)
#undercloud_rabbit_cookie = <None>
# Rabbitmq password. (string value)
#undercloud_rabbit_password = guest
# Rabbitmq password. If left unset, one will be automatically
# generated. (string value)
#undercloud_rabbit_password = <None>
# Rabbitmq username. (string value)
#undercloud_rabbit_username = guest
# Rabbitmq username. If left unset, one will be automatically
# generated. (string value)
#undercloud_rabbit_username = <None>
# Heat stack domain admin password. If left unset, one will be
# automatically generated. (string value)