Puppet Class: kickstack::neutron::server::notifications

Inherits:
kickstack
Defined in:
manifests/neutron/server/notifications.pp

Overview



1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# File 'manifests/neutron/server/notifications.pp', line 1

class kickstack::neutron::server::notifications inherits kickstack {

  include kickstack::neutron::config
  include pwgen

  $service_password = pick(getvar("${fact_prefix}neutron_keystone_password"),pwgen())
  $keystone_internal_address = getvar("${fact_prefix}keystone_internal_address")
  $database_connection = getvar("${fact_prefix}neutron_sql_connection")
  $nova_service_password = getvar("${fact_prefix}nova_keystone_password")
  $nova_api_address = getvar("${fact_prefix}nova_api_address")

  class { '::neutron::server::notifications':
    nova_url               => "http://${nova_api_address}:8774/v2",
    nova_admin_username    => 'nova',
    nova_admin_tenant_name => $kickstack::keystone_service_tenant,
    nova_admin_password    => $nova_service_password,
    nova_admin_auth_url    => "http://${keystone_internal_address}:35357/v2.0",
    nova_region_name       => $kickstack::params::keystone_region,
  }
}