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
57
58
|
# File 'manifests/heat/api.pp', line 1
class kickstack::heat::api inherits kickstack {
include pwgen
include ::kickstack::heat::config
$apis = split($::kickstack::heat_apis,',')
if 'heat' in $apis {
$heat_admin_password = pick(getvar("${fact_prefix}heat_keystone_password"),pwgen())
class { '::heat::api':
enabled => true,
}
kickstack::endpoint { 'heat':
service_password => $heat_admin_password,
require => Class['::heat::api']
}
kickstack::exportfact::export { 'heat_metadata_server':
value => $hostname,
tag => 'heat',
require => Class['::heat::api']
}
}
if 'cfn' in $apis {
$cfn_admin_password = pick(getvar("${fact_prefix}heat_cfn_keystone_password"),pwgen())
class { '::heat::api_cfn':
enabled => true,
}
kickstack::endpoint { 'heat_cfn':
servicename => 'heat',
classname => 'auth_cfn',
factname => "heat_cfn_keystone_password",
service_password => $cfn_admin_password,
require => Class['::heat::api_cfn']
}
}
if 'cloudwatch' in $apis {
class { '::heat::api_cloudwatch':
enabled => true,
}
kickstack::exportfact::export { 'heat_watch_server':
value => $hostname,
tag => 'heat',
require => Class['::heat::api_cloudwatch']
}
# The puppet-heat module has no facility for setting up the
# CloudWatch Keystone endpoint.
}
}
|