Allow nova key/partition/password injection
This commit adds the following new variables to customise whether nova will allow key/partition/password injection: nova_libvirt_inject_key nova_libvirt_inject_partition nova_libvirt_inject_password Additionally, the following variable has been added to allow setting password via Horizon: horizon_can_set_password Lastly, password injection can now be tested with tempest via: tempest_compute_change_password Note that all variables have been defaulted to their current values. Closes-Bug: #1469238 Change-Id: Iff434ed7c042f7990990485c34d0f35b9a7baa7a
This commit is contained in:
parent
a7080fdfa2
commit
5bd7a5540c
@ -55,6 +55,8 @@ horizon_time_zone: UTC
|
||||
horizon_enforce_password_check: False
|
||||
horizon_disable_password_reveal: False
|
||||
horizon_enable_password_retrieve: False
|
||||
# If nova_libvirt_inject_password is set to True, then this can also be enabled:
|
||||
horizon_can_set_password: False
|
||||
|
||||
## Horizon SSL
|
||||
horizon_ssl_cert: /etc/ssl/certs/horizon.pem
|
||||
|
@ -239,7 +239,7 @@ LAUNCH_INSTANCE_NG_ENABLED = {{ horizon_launch_instance_ng }}
|
||||
# from the UI.
|
||||
OPENSTACK_HYPERVISOR_FEATURES = {
|
||||
'can_set_mount_point': False,
|
||||
'can_set_password': False,
|
||||
'can_set_password': {{ horizon_can_set_password }},
|
||||
}
|
||||
|
||||
# The OPENSTACK_CINDER_FEATURES settings can be used to enable optional
|
||||
|
Loading…
x
Reference in New Issue
Block a user