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
|
# File 'modules/openstack/manifests/cinder/config/caracal.pp', line 3
class openstack::cinder::config::caracal(
Array[Stdlib::Fqdn] $memcached_nodes,
Array[Stdlib::Fqdn] $rabbitmq_nodes,
String[1] $db_user,
String[1] $db_pass,
String[1] $db_name,
Stdlib::Fqdn $db_host,
String[1] $ldap_user_pass,
Stdlib::Fqdn $keystone_fqdn,
String[1] $region,
String[1] $ceph_pool,
String[1] $ceph_rbd_client_name,
String[1] $rabbit_user,
String[1] $rabbit_pass,
Stdlib::Port $api_bind_port,
String[1] $libvirt_rbd_cinder_uuid,
Array[String] $all_backend_names,
String[1] $backend_type,
String[1] $backend_name,
Boolean $enforce_policy_scope,
Boolean $enforce_new_policy_defaults,
) {
require 'openstack::cinder::user'
file { '/etc/cinder/':
ensure => directory,
owner => 'cinder',
group => 'cinder',
}
# Subtemplates of cinder.conf are going to want to know what
# version this is
$version = inline_template("<%= @title.split(':')[-1] -%>")
$keystone_auth_username = 'novaadmin'
$keystone_auth_project = 'admin'
file { '/etc/cinder/cinder.conf':
content => template('openstack/caracal/cinder/cinder.conf.erb'),
owner => 'cinder',
group => 'cinder',
mode => '0440',
show_diff => false,
}
}
|