Puppet Class: kickstack::node::orchestration

Inherits:
kickstack
Defined in:
manifests/node/orchestration.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
# File 'manifests/node/orchestration.pp', line 1

class kickstack::node::orchestration inherits kickstack {

  $keystone_internal_address = getvar("${fact_prefix}keystone_internal_address")
  $heat_sql_conn = getvar("${fact_prefix}heat_sql_connection")
  $heat_keystone_password = getvar("${fact_prefix}heat_keystone_password")

  $apis = split($::kickstack::heat_apis,',')
  if 'heat' in $apis {
    $metadata_server = getvar("${fact_prefix}heat_metadata_server")
  }
  if 'cloudwatch' in $apis {
    $watch_server = getvar("${fact_prefix}heat_watch_server")
  }

  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 $amqp_host and $amqp_password {
    if $heat_sql_conn and $heat_keystone_password {
      if $metadata_server or $watch_server {
        include kickstack::heat::engine
      }
    }
  }

}