481dde1725
This is the initial commit for puppet-octavia. It has been automatically generated using cookiecutter[1] and msync[2] [1] https://github.com/openstack/puppet-openstack-cookiecutter [2] https://github.com/openstack/puppet-modulesync-configs Change-Id: Ieeb5f5c94f093c163fd15ff80672b1f0e4a66ba0
87 lines
2.5 KiB
Puppet
87 lines
2.5 KiB
Puppet
# == Class: octavia::keystone::auth
|
|
#
|
|
# Configures octavia user, service and endpoint in Keystone.
|
|
#
|
|
# === Parameters
|
|
#
|
|
# [*password*]
|
|
# (required) Password for octavia user.
|
|
#
|
|
# [*auth_name*]
|
|
# Username for octavia service. Defaults to 'octavia'.
|
|
#
|
|
# [*email*]
|
|
# Email for octavia user. Defaults to 'octavia@localhost'.
|
|
#
|
|
# [*tenant*]
|
|
# Tenant for octavia user. Defaults to 'services'.
|
|
#
|
|
# [*configure_endpoint*]
|
|
# Should octavia endpoint be configured? Defaults to 'true'.
|
|
#
|
|
# [*configure_user*]
|
|
# (Optional) Should the service user be configured?
|
|
# Defaults to 'true'.
|
|
#
|
|
# [*configure_user_role*]
|
|
# (Optional) Should the admin role be configured for the service user?
|
|
# Defaults to 'true'.
|
|
#
|
|
# [*service_type*]
|
|
# Type of service. Defaults to 'octavia'.
|
|
#
|
|
# [*region*]
|
|
# Region for endpoint. Defaults to 'RegionOne'.
|
|
#
|
|
# [*service_name*]
|
|
# (optional) Name of the service.
|
|
# Defaults to the value of auth_name.
|
|
#
|
|
# [*public_url*]
|
|
# (optional) The endpoint's public url. (Defaults to 'http://127.0.0.1:9876')
|
|
# This url should *not* contain any trailing '/'.
|
|
#
|
|
# [*admin_url*]
|
|
# (optional) The endpoint's admin url. (Defaults to 'http://127.0.0.1:9876')
|
|
# This url should *not* contain any trailing '/'.
|
|
#
|
|
# [*internal_url*]
|
|
# (optional) The endpoint's internal url. (Defaults to 'http://127.0.0.1:9876')
|
|
#
|
|
class octavia::keystone::auth (
|
|
$password,
|
|
$auth_name = 'octavia',
|
|
$email = 'octavia@localhost',
|
|
$tenant = 'services',
|
|
$configure_endpoint = true,
|
|
$configure_user = true,
|
|
$configure_user_role = true,
|
|
$service_name = undef,
|
|
$service_type = 'octavia',
|
|
$region = 'RegionOne',
|
|
$public_url = 'http://127.0.0.1:9876',
|
|
$admin_url = 'http://127.0.0.1:9876',
|
|
$internal_url = 'http://127.0.0.1:9876',
|
|
) {
|
|
|
|
$real_service_name = pick($service_name, $auth_name)
|
|
|
|
keystone::resource::service_identity { 'octavia':
|
|
configure_user => $configure_user,
|
|
configure_user_role => $configure_user_role,
|
|
configure_endpoint => $configure_endpoint,
|
|
service_name => $real_service_name,
|
|
service_type => $service_type,
|
|
service_description => 'Octavia Service',
|
|
region => $region,
|
|
auth_name => $auth_name,
|
|
password => $password,
|
|
email => $email,
|
|
tenant => $tenant,
|
|
public_url => $public_url,
|
|
internal_url => $internal_url,
|
|
admin_url => $admin_url,
|
|
}
|
|
|
|
}
|