Skip to content

Commit

Permalink
added $admin_password
Browse files Browse the repository at this point in the history
  • Loading branch information
gildub committed Sep 9, 2013
1 parent c4d5b42 commit db1b359
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions puppet/modules/quickstack/manifests/compute.pp
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Common quickstack configurations
class quickstack::compute (
$fixed_network_range = $quickstack::params::fixed_network_range,
$admin_password = $quickstack::params::admin_password,
$fixed_network_range = $quickstack::params::fixed_network_range,
$floating_network_range = $quickstack::params::floating_network_range,
$neutron_db_password = $quickstack::params::neutron_db_password,
$neutron_user_password = $quickstack::params::neutron_user_password,
Expand Down Expand Up @@ -95,7 +96,7 @@
neutron_config {
'database/connection': value => "mysql:https://neutron:${neutron_db_password}@${pacemaker_priv_floating_ip}/neutron";

'keystone_authtoken/auth_host': value => ${pacemaker_priv_floating_ip};
'keystone_authtoken/auth_host': value => $pacemaker_priv_floating_ip;
'keystone_authtoken/admin_tenant_name': value => 'admin';
'keystone_authtoken/admin_user': value => 'admin';
'keystone_authtoken/admin_password': value => $admin_password;
Expand All @@ -115,8 +116,8 @@

class { '::nova::network::neutron':
neutron_admin_password => $neutron_user_password,
neutron_url => 'http:https://{pacemaker_priv_floating_ip}:9696',
neutron_admin_auth_url => 'http:https://{pacemaker_priv_floating_ip}:35357/v2.0',
neutron_url => 'http:https://${pacemaker_priv_floating_ip}:9696',
neutron_admin_auth_url => 'http:https://${pacemaker_priv_floating_ip}:35357/v2.0',
}

firewall { '001 nova compute incoming':
Expand Down

0 comments on commit db1b359

Please sign in to comment.