1
2
3
4
5
6
7
8
9
10
11
12
13
|
# File 'modules/profile/manifests/openstack/codfw1dev/rbd_cloudcontrol.pp', line 1
class profile::openstack::codfw1dev::rbd_cloudcontrol(
Stdlib::Fqdn $keystone_fqdn = lookup('profile::openstack::codfw1dev::keystone_api_fqdn'),
String $radosgw_service_user_pass = lookup('profile::openstack::codfw1dev::radosgw::service_user_pass'),
) {
# Many of the settings for this class will be pulled in by the profile
# and are DC-specific but not deloyment-specific. If/when we add a new
# region with a new ceph cluster they will need to be overridden
# with deployment-specific hiera.
class { '::profile::openstack::base::rbd_cloudcontrol':
keystone_fqdn => $keystone_fqdn,
radosgw_service_user_pass => $radosgw_service_user_pass,
}
}
|