Files
puppet-neutron/manifests/services/l2gw.pp
Peng Liu d564aee3ac Add support for l2 Gateway
Introduce puppet classes to configure networking-l2gw agent service
Introduce puppet classes to configure networking-l2gw plugin

Implements: blueprint l2gw-service-integration

Change-Id: I1082cbf9665ed9fbb441705a5e2b2aa97aae5d6f
Signed-off-by: Peng Liu <pliu@redhat.com>
2017-03-07 13:02:41 +08:00

75 lines
2.3 KiB
Puppet

# This class installs and configures l2gw Neutron Plugin.
#
# === Parameters
#
# [*default_interface_name*]
# (optional) default interface name of the l2 gateway
# Defaults to $::os_service_default
# Example: FortyGigE1/0/1
#
# [*default_device_name*]
# (optional) default device name of the l2 gateway
# Defaults to $::os_service_default
# Example: Switch1
#
# [*quota_l2_gateway*]
# (optional) quota of the l2 gateway
# Defaults to $::os_service_default
# Example: 10
#
# [*periodic_monitoring_interval*]
# (optional) The periodic interval at which the plugin
# checks for the monitoring L2 gateway agent
# Defaults to $::os_service_default
# Example: 5
#
# [*service_providers*]
# (optional) Array of allowed service types includes L2GW
# Must be in form: <service_type>:<name>:<driver>[:default]
# Defaults to $::os_service_default
#
# [*package_ensure*]
# (optional) Ensure state for package.
# Defaults to 'present'.
#
# [*purge_config*]
# (optional) Whether to set only the specified config options
# in the l2gw config.
# Defaults to false.
#
class neutron::services::l2gw (
$default_interface_name = $::os_service_default,
$default_device_name = $::os_service_default,
$quota_l2_gateway = $::os_service_default,
$periodic_monitoring_interval = $::os_service_default,
$service_providers = $::os_service_default,
$package_ensure = 'present',
$purge_config = false,
) {
include ::neutron::deps
include ::neutron::params
if !is_service_default($service_providers) {
validate_array($service_providers)
}
ensure_resource( 'package', 'python-networking-l2gw', {
'ensure' => $package_ensure,
'name' => $::neutron::params::l2gw_package,
'tag' => ['neutron-package', 'openstack'],
})
resources { 'neutron_l2gw_service_config':
purge => $purge_config,
}
neutron_l2gw_service_config {
'DEFAULT/default_interface_name': value => $default_interface_name;
'DEFAULT/default_device_name': value => $default_device_name;
'DEFAULT/quota_l2_gateway': value => $quota_l2_gateway;
'DEFAULT/periodic_monitoring_interval': value => $periodic_monitoring_interval;
'service_providers/service_provider': value => $service_providers;
}
}