66 lines
2.1 KiB
Puppet
66 lines
2.1 KiB
Puppet
# == Class: manila::compute::nova
|
|
#
|
|
# Setup and configure Nova communication
|
|
#
|
|
# === Parameters
|
|
#
|
|
# [*nova_catalog_info*]
|
|
# (optional) Info to match when looking for nova in the service
|
|
# catalog. Format is : separated values of the form:
|
|
# <service_type>:<service_name>:<endpoint_type>
|
|
# Defaults to 'compute:nova:publicURL'
|
|
#
|
|
# [*nova_catalog_admin_info*]
|
|
# (optional) Same as nova_catalog_info, but for admin endpoint.
|
|
# Defaults to 'compute:nova:adminURL'
|
|
#
|
|
# [*nova_ca_certificates_file*]
|
|
# (optional) Location of ca certificates file to use for nova client
|
|
# requests.
|
|
# Defaults to undef
|
|
#
|
|
# [*nova_api_insecure*]
|
|
# (optional) Allow to perform insecure SSL requests to nova.
|
|
# Defaults to false
|
|
#
|
|
# [*nova_admin_username*]
|
|
# (optional) Nova admin username.
|
|
# Defaults to 'nova'
|
|
#
|
|
# [*nova_admin_password*]
|
|
# (optional) Nova admin password.
|
|
# Defaults to undef
|
|
#
|
|
# [*nova_admin_tenant_name*]
|
|
# (optional) Nova admin tenant name.
|
|
# Defaults to 'service'
|
|
#
|
|
# [*nova_admin_auth_url*]
|
|
# (optional) Identity service url.
|
|
# Defaults to 'http://localhost:5000/v2.0'
|
|
#
|
|
class manila::compute::nova (
|
|
$nova_catalog_info = 'compute:nova:publicURL',
|
|
$nova_catalog_admin_info = 'compute:nova:adminURL',
|
|
$nova_ca_certificates_file = undef,
|
|
$nova_api_insecure = false,
|
|
$nova_admin_username = 'nova',
|
|
$nova_admin_password = undef,
|
|
$nova_admin_tenant_name = 'service',
|
|
$nova_admin_auth_url = 'http://localhost:5000/v2.0',
|
|
) {
|
|
|
|
include ::manila::deps
|
|
|
|
manila_config {
|
|
'DEFAULT/nova_catalog_info': value => $nova_catalog_info;
|
|
'DEFAULT/nova_catalog_admin_info': value => $nova_catalog_admin_info;
|
|
'DEFAULT/nova_ca_certificates_file': value => $nova_ca_certificates_file;
|
|
'DEFAULT/nova_api_insecure': value => $nova_api_insecure;
|
|
'DEFAULT/nova_admin_username': value => $nova_admin_username;
|
|
'DEFAULT/nova_admin_password': value => $nova_admin_password, secret => true;
|
|
'DEFAULT/nova_admin_tenant_name': value => $nova_admin_tenant_name;
|
|
'DEFAULT/nova_admin_auth_url': value => $nova_admin_auth_url;
|
|
}
|
|
}
|