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
|
# File 'manifests/glance/api.pp', line 1
class kickstack::glance::api inherits kickstack {
include kickstack::glance::config
include pwgen
$auth_host = getvar("${fact_prefix}keystone_internal_address")
$service_password = pick(getvar("${fact_prefix}glance_keystone_password"),pwgen())
$sql_conn = getvar("${fact_prefix}glance_sql_connection")
$reg_host = getvar("${fact_prefix}glance_registry_host")
class { '::glance::api':
verbose => $kickstack::verbose,
debug => $kickstack::debug,
auth_type => 'keystone',
auth_host => $auth_host,
keystone_tenant => $kickstack::keystone_service_tenant,
keystone_user => 'glance',
keystone_password => $service_password,
sql_connection => $sql_conn,
registry_host => $reg_host,
}
kickstack::endpoint { 'glance':
service_password => $service_password,
require => Class['::glance::api']
}
kickstack::exportfact::export { 'glance_api_host':
value => $hostname,
tag => 'glance',
require => Class['::glance::api']
}
}
|