Generate random password for ironic
Ironic config use default value(PW_PLACEHOLDER) for password. Other component(ex:Glance) generate random value for password. This change ironic also use random value for password. Change-Id: I3af60e7df6e16e13ff73cdbb87bc2293546d88c7 Closes-Bug: #1423035
This commit is contained in:
committed by
Gael Chamoulaud
parent
92e69bd080
commit
1304a190ed
@@ -43,7 +43,7 @@ def initConfig(controller):
|
||||
"PROCESSORS": [processors.process_password],
|
||||
"MASK_INPUT": True,
|
||||
"LOOSE_VALIDATION": False,
|
||||
"USE_DEFAULT": True,
|
||||
"USE_DEFAULT": False,
|
||||
"NEED_CONFIRM": True,
|
||||
"CONDITION": False},
|
||||
|
||||
@@ -58,7 +58,7 @@ def initConfig(controller):
|
||||
"PROCESSORS": [processors.process_password],
|
||||
"MASK_INPUT": True,
|
||||
"LOOSE_VALIDATION": False,
|
||||
"USE_DEFAULT": True,
|
||||
"USE_DEFAULT": False,
|
||||
"NEED_CONFIRM": True,
|
||||
"CONDITION": False},
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user