
The zaqar::keystone::auth_websocket class has been added to create an independent keystone endpoint for websocket service but the service user created by the class has never been used. This change disables the logic to create the user and the associated resources like roles and projects, so that only required resources are created. Change-Id: Iaa0042acb9fda198f10e6067523301bfd08bf249
113 lines
3.1 KiB
Puppet
113 lines
3.1 KiB
Puppet
# == Class: zaqar::keystone::auth_websocket
|
|
#
|
|
# Configures zaqar-websocket user, service and endpoint in Keystone.
|
|
#
|
|
# === Parameters
|
|
#
|
|
# [*configure_endpoint*]
|
|
# (Optional) Should zaqar websocket endpoint be configured?
|
|
# Defaults to 'true'.
|
|
#
|
|
# [*service_type*]
|
|
# (Optional) Type of service.
|
|
# Defaults to 'messaging-websocket'.
|
|
#
|
|
# [*public_url*]
|
|
# (Optional) The endpoint's public url.
|
|
# Defaults to 'ws://127.0.0.1:9000'
|
|
#
|
|
# [*internal_url*]
|
|
# (Optional) The endpoint's internal url.
|
|
# Defaults to 'ws://127.0.0.1:9000'
|
|
#
|
|
# [*admin_url*]
|
|
# (Optional) The endpoint's admin url.
|
|
# Defaults to 'ws://127.0.0.1:9000'
|
|
#
|
|
# [*region*]
|
|
# (Optional) Region for endpoint.
|
|
# Defaults to 'RegionOne'.
|
|
#
|
|
# [*service_name*]
|
|
# (Optional) Name of the service.
|
|
# Defaults to 'zaqar-websocket'
|
|
#
|
|
# [*configure_service*]
|
|
# (Optional) Should zaqar websocket service be configured?
|
|
# Defaults to 'true'.
|
|
#
|
|
# [*service_description*]
|
|
# (Optional) Description for keystone service.
|
|
# Defaults to 'OpenStack Messaging Websocket Service'.
|
|
#
|
|
# DEPRECATED PARAMETERS
|
|
#
|
|
# [*password*]
|
|
# (Optional) Password for zaqar websocket user. Defaults to undef.
|
|
#
|
|
# [*auth_name*]
|
|
# (Optional) Username for zaqar service. Defaults to undef.
|
|
#
|
|
# [*email*]
|
|
# (Optional) Email for zaqar websocket user. Defaults to undef.
|
|
#
|
|
# [*tenant*]
|
|
# (Optional) Tenant for zaqar websocket user. Defaults to undef.
|
|
#
|
|
# [*configure_user*]
|
|
# (Optional) Should the service user be configured?
|
|
# Defaults to undef
|
|
#
|
|
# [*configure_user_role*]
|
|
# (Optional) Whether to configure the admin role for the service user.
|
|
# Defaults to undef
|
|
#
|
|
class zaqar::keystone::auth_websocket(
|
|
$service_name = 'zaqar-websocket',
|
|
$service_type = 'messaging-websocket',
|
|
$public_url = 'ws://127.0.0.1:9000',
|
|
$admin_url = 'ws://127.0.0.1:9000',
|
|
$internal_url = 'ws://127.0.0.1:9000',
|
|
$region = 'RegionOne',
|
|
$tenant = 'services',
|
|
$configure_endpoint = true,
|
|
$configure_service = true,
|
|
$service_description = 'OpenStack Messaging Websocket Service',
|
|
# DEPRECATED PARAMETERS
|
|
$auth_name = undef,
|
|
$password = undef,
|
|
$email = undef,
|
|
$configure_user = undef,
|
|
$configure_user_role = undef,
|
|
) {
|
|
|
|
include zaqar::deps
|
|
|
|
validate_legacy(String, 'validate_string', $password)
|
|
|
|
[
|
|
'auth_name',
|
|
'password',
|
|
'email',
|
|
'configure_user',
|
|
'configure_user_role'
|
|
].each |String $param| {
|
|
if getvar($param) != undef {
|
|
warning("The zaqar::keystone::auth_websocket::${param} parameter is deprecated and has no effect")
|
|
}
|
|
}
|
|
|
|
keystone::resource::service_identity { 'zaqar-websocket':
|
|
configure_user => false,
|
|
configure_user_role => false,
|
|
configure_endpoint => $configure_endpoint,
|
|
service_type => $service_type,
|
|
service_description => $service_description,
|
|
service_name => $service_name,
|
|
region => $region,
|
|
public_url => $public_url,
|
|
admin_url => $admin_url,
|
|
internal_url => $internal_url,
|
|
}
|
|
}
|