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
(cherry picked from commit 1304a190ed)
This commit is contained in:
committed by
Lukas Bezdicka
parent
31b0774f91
commit
cb52cab6a2
@@ -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