compute.pp's admin_password should sync with $nova_user_password of controller.pp.
This commit is contained in:
@@ -129,6 +129,7 @@ node /openstack_compute/ {
|
||||
network_manager => 'nova.network.manager.FlatDHCPManager',
|
||||
multi_host => false,
|
||||
sql_connection => $sql_connection,
|
||||
nova_user_password => $nova_user_password,
|
||||
rabbit_host => $controller_node_internal,
|
||||
rabbit_password => $rabbit_password,
|
||||
rabbit_user => $rabbit_user,
|
||||
|
@@ -23,6 +23,7 @@
|
||||
# [sql_connection] SQL connection information. Optional. Defaults to false
|
||||
# which indicates that exported resources will be used to determine connection
|
||||
# information.
|
||||
# [nova_user_password] Nova service password.
|
||||
# [rabbit_host] RabbitMQ host. False indicates it should be collected.
|
||||
# Optional. Defaults to false,
|
||||
# [rabbit_password] RabbitMQ password. Optional. Defaults to 'rabbit_pw',
|
||||
@@ -55,6 +56,7 @@ class openstack::compute(
|
||||
# my address
|
||||
# conection information
|
||||
$sql_connection = false,
|
||||
$nova_user_password = 'nova_pass',
|
||||
$rabbit_host = false,
|
||||
$rabbit_password = 'rabbit_pw',
|
||||
$rabbit_user = 'nova',
|
||||
@@ -105,7 +107,7 @@ class openstack::compute(
|
||||
enabled => true,
|
||||
admin_tenant_name => 'services',
|
||||
admin_user => 'nova',
|
||||
admin_password => $nova_service_password,
|
||||
admin_password => $nova_user_password,
|
||||
}
|
||||
} else {
|
||||
$enable_network_service = false
|
||||
|
Reference in New Issue
Block a user