Files
puppet-neutron/manifests/plugins/ml2/opendaylight.pp
Takashi Kajinami 065907327c Deprecate support for networking-odl
The networking-odl project is being deprecated[1].

This change deprecates the implementations to deploy networking-odl,
because the project is no longer developed.

[1] https://lists.openstack.org/pipermail/openstack-discuss/2023-March/033003.html

Change-Id: I75c04c63288387946e1c89b0677770cf10db73cd
2023-05-24 10:09:49 +00:00

72 lines
2.3 KiB
Puppet

#
# DEPRECATED !!
# Install the OpenDaylight and generate config file
# from parameters in the other classes.
#
# === Parameters
#
# [*package_ensure*]
# (optional) The intended state of the python-networking-odl
# package, i.e. any of the possible values of the 'ensure'
# property for a package resource type.
# Defaults to 'present'
#
# [*odl_username*]
# (optional) The opendaylight controller username
# Defaults to $facts['os_service_default']
# Example: 'admin'
#
# [*odl_password*]
# (optional) The opendaylight controller password
# Defaults to $facts['os_service_default']
# Example: 'admin'
#
# [*odl_url*]
# (optional) The opendaylight controller neutron URL
# Defaults to $facts['os_service_default']
# Example: 'http://127.0.0.1:8080/controller/nb/v2/neutron'
#
# [*port_binding_controller*]
# (optional) Name of the controller to be used for port binding.
# Defaults to $facts['os_service_default']
#
# [*odl_hostconf_uri*]
# (optional) Path for ODL host configuration REST interface.
# Defaults to $facts['os_service_default']
#
# [*odl_features*]
# (optional) List of ODL features to enable
# Defaults to $facts['os_service_default']
#
class neutron::plugins::ml2::opendaylight (
$package_ensure = 'present',
$odl_username = $facts['os_service_default'],
$odl_password = $facts['os_service_default'],
$odl_url = $facts['os_service_default'],
$port_binding_controller = $facts['os_service_default'],
$odl_hostconf_uri = $facts['os_service_default'],
$odl_features = $facts['os_service_default'],
) {
include neutron::deps
include neutron::params
require neutron::plugins::ml2
warning('Support for networking-odl has been deprecated.')
package { 'python-networking-odl':
ensure => $package_ensure,
name => $::neutron::params::odl_plugin_package,
tag => ['openstack', 'neutron-plugin-ml2-package']
}
neutron_plugin_ml2 {
'ml2_odl/username': value => $odl_username;
'ml2_odl/password': value => $odl_password, secret => true;
'ml2_odl/url': value => $odl_url;
'ml2_odl/port_binding_controller': value => $port_binding_controller;
'ml2_odl/odl_hostconf_uri': value => $odl_hostconf_uri;
'ml2_odl/odl_features': value => join(any2array($odl_features), ',');
}
}