Puppet Class: kickstack::heat::engine

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

class kickstack::heat::engine inherits kickstack {
  
  include ::kickstack::heat::config

  $apis = split($::kickstack::heat_apis,',')

  if 'heat' in $apis {
    $metadata_server = getvar("${fact_prefix}heat_metadata_server")
    $metadata_server_url = "http://${metadata_server}:8000"
    $waitcondition_server_url = "http://${metadata_server}:8000/v1/waitcondition"
  }

  if 'cloudwatch' in $apis {
    $watch_server = getvar("${fact_prefix}heat_watch_server")
    $watch_server_url = "http://${watch_server}:8003"
  }

  if $apis {
    class { '::heat::engine':
      heat_metadata_server_url => $metadata_server_url,
      heat_waitcondition_server_url => $waitcondition_server_url,
      heat_watch_server_url => $watch_server_url,
    }
  }
  
}