d084106131
Change-Id: I06a82a8718cb36016485ee2160459a370cc33c60
70 lines
2.1 KiB
Puppet
70 lines
2.1 KiB
Puppet
# == Class: nova::ironic::common
|
|
#
|
|
# [*api_endpoint*]
|
|
# The url for Ironic api endpoint.
|
|
# Defaults to 'http://127.0.0.1:6385/v1'
|
|
#
|
|
# [*auth_plugin*]
|
|
# The authentication plugin to use when connecting to nova.
|
|
# Defaults to 'password'
|
|
#
|
|
# [*auth_url*]
|
|
# The address of the Keystone api endpoint.
|
|
# Defaults to 'http://127.0.0.1:5000/'
|
|
#
|
|
# [*project_name*]
|
|
# The Ironic Keystone project name.
|
|
# Defaults to 'services'
|
|
#
|
|
# [*password*]
|
|
# The admin password for Ironic to connect to Nova.
|
|
# Defaults to 'ironic'
|
|
#
|
|
# [*username*]
|
|
# The admin username for Ironic to connect to Nova.
|
|
# Defaults to 'admin'
|
|
#
|
|
# [*api_max_retries*]
|
|
# Max times for ironic driver to poll ironic api
|
|
#
|
|
# [*api_retry_interval*]
|
|
# Interval in second for ironic driver to poll ironic api
|
|
#
|
|
# [*user_domain_name*]
|
|
# (Optional) Name of domain for $user_domain_name
|
|
# Defaults to 'Default'
|
|
#
|
|
# [*project_domain_name*]
|
|
# (Optional) Name of domain for $project_domain_name
|
|
# Defaults to 'Default'
|
|
#
|
|
class nova::ironic::common (
|
|
$api_endpoint = 'http://127.0.0.1:6385/v1',
|
|
$auth_plugin = 'password',
|
|
$auth_url = 'http://127.0.0.1:5000/',
|
|
$password = 'ironic',
|
|
$project_name = 'services',
|
|
$username = 'admin',
|
|
$api_max_retries = $::os_service_default,
|
|
$api_retry_interval = $::os_service_default,
|
|
$user_domain_name = 'Default',
|
|
$project_domain_name = 'Default',
|
|
) {
|
|
|
|
include ::nova::deps
|
|
|
|
nova_config {
|
|
'ironic/auth_plugin': value => $auth_plugin;
|
|
'ironic/username': value => $username;
|
|
'ironic/password': value => $password, secret => true;
|
|
'ironic/auth_url': value => $auth_url;
|
|
'ironic/project_name': value => $project_name;
|
|
'ironic/api_endpoint': value => $api_endpoint;
|
|
'ironic/api_max_retries': value => $api_max_retries;
|
|
'ironic/api_retry_interval': value => $api_retry_interval;
|
|
'ironic/user_domain_name': value => $user_domain_name;
|
|
'ironic/project_domain_name': value => $project_domain_name;
|
|
}
|
|
|
|
}
|