Puppet Class: openstack::common::glance
- Defined in:
- manifests/common/glance.pp
Overview
Common class for Glance installation Private, and should not be used on its own The purpose is to have basic Glance auth configuration options set so that services like Tempest can access credentials on the controller
6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
# File 'manifests/common/glance.pp', line 6
class openstack::common::glance {
class { '::glance::api':
keystone_password => hiera('openstack::glance::password'),
auth_host => hiera('openstack::controller::address::management'),
keystone_tenant => 'services',
keystone_user => 'glance',
sql_connection => $::openstack::resources::connectors::glance,
registry_host => hiera('openstack::storage::address::management'),
verbose => hiera('openstack::verbose'),
debug => hiera('openstack::debug'),
enabled => $::openstack::profile::base::is_storage,
mysql_module => '2.2',
}
}
|