Puppet Class: kickstack::node::api

Inherits:
kickstack
Defined in:
manifests/node/api.pp

Overview



1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# File 'manifests/node/api.pp', line 1

class kickstack::node::api inherits kickstack {

  $keystone_internal_address = getvar("${fact_prefix}keystone_internal_address")
  $glance_sql_conn = getvar("${fact_prefix}glance_sql_connection")
  $cinder_sql_conn = getvar("${fact_prefix}cinder_sql_connection")
  $neutron_sql_conn = getvar("${fact_prefix}neutron_sql_connection")
  $nova_sql_conn = getvar("${fact_prefix}nova_sql_connection")
  $heat_sql_conn = getvar("${fact_prefix}heat_sql_connection")
  $ceilometer_sql_conn = getvar("${fact_prefix}ceilometer_sql_connection")

  case $::kickstack::rpc {
    'rabbitmq': {
      $amqp_host = getvar("${::kickstack::fact_prefix}rabbit_host")
      $amqp_password = getvar("${::kickstack::fact_prefix}rabbit_password")
    }
    'qpid': {
      $amqp_host = getvar("${::kickstack::fact_prefix}qpid_host")
      $amqp_password = getvar("${::kickstack::fact_prefix}qpid_password")
    }
  }

  if $keystone_internal_address and $glance_sql_conn {
    include kickstack::glance::api
  }

  if $keystone_internal_address and $cinder_sql_conn and $amqp_host and $amqp_password {
    include kickstack::cinder::api
  }

  if $keystone_internal_address and $amqp_host and $amqp_password {
    include kickstack::neutron::server
    if $neutron_sql_conn {
      include kickstack::neutron::plugin
    }
  }

  if $keystone_internal_address and $nova_sql_conn and $amqp_host and $amqp_password {
    include kickstack::nova::api

    # This looks a bit silly, but is currently necessary: in order to configure nova-api
    # as a Neutron client, we first need to install nova-api and neutron-server in one
    # run, and then fix up Nova with the Neutron configuration in the next run.
    $neutron_keystone_password = getvar("${::kickstack::fact_prefix}neutron_keystone_password")
    if $neutron_keystone_password {
      include kickstack::nova::neutronclient
    }
  }

  if $keystone_internal_address and $heat_sql_conn and $amqp_host and $amqp_password {
    include kickstack::heat::api
  }

  if $keystone_internal_address and $ceilometer_sql_conn and $amqp_host and $amqp_password {
    include kickstack::ceilometer::api
  }
}