Thomas Goirand 38e5f4cce2 networking-bagpipe: define package name & service
Add the package name and service name for Debian for the Bagpipe
plugin. These were previously undefined. Also do the unit testing
under Debian.

Change-Id: Ia4baa6a351b44b4a501a57f3a9c8d11364e2ccb0
2024-03-15 08:51:28 +00:00

143 lines
4.3 KiB
Puppet

#
# Copyright (C) 2017 Red Hat Inc.
#
# Author: Ricardo Noriega <rnoriega@redhat.com>
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
#
# == Class: neutron::agents::bagpipe
#
# Installs and configures the Neutron Bagpipe driver for BGPVPN
#
# === Parameters
#
# [*my_as*]
# (required) Private Autonomous System number
# Defaults to $facts['os_service_default']
#
# [*api_host*]
# (optional) BGP component API host
# Defaults to $facts['os_service_default']
#
# [*api_port*]
# (optional) BGP component API port
# Defaults to $facts['os_service_default']
#
# [*dataplane_driver_ipvpn*]
# IP VPN dataplane driver class
# Default to ovs
#
# [*enabled*]
# (optional) The state of the service
# Defaults to true
#
# [*enable_rtc*]
# Enable Route Target Constraint
# Defaults to $facts['os_service_default']
#
# [*manage_service*]
# (optional) Whether to start/stop the service
# Defaults to true
#
# [*mpls_interface*]
# MPLS outgoing interface for Linux and OVS drivers
# Defaults to $facts['os_service_default']
#
# [*ovs_bridge*]
# OVS bridge to use
# Defaults to $facts['os_service_default']
#
# [*package_ensure*]
# (optional) The state of the package
# Defaults to present
#
# [*peers*]
# List of peers' IPs to establish p2p connections
# Defaults to $facts['os_service_default']
#
# [*proxy_arp*]
# For OVS driver control if VRF will reply ARP messages
# Defaults to false
#
# [*purge_config*]
# (optional) Whether to set only the specified config options
# in the l2gateway config.
# Default to false.
#
# [*local_address*]
# (required) Local IP of the server to carry BGP traffic
# Defaults to $facts['networking']['ip']
#
class neutron::agents::bagpipe (
$my_as,
$api_host = $facts['os_service_default'],
$api_port = $facts['os_service_default'],
$dataplane_driver_ipvpn = 'ovs',
Boolean $enabled = true,
$enable_rtc = $facts['os_service_default'],
Boolean $manage_service = true,
$mpls_interface = $facts['os_service_default'],
$ovs_bridge = $facts['os_service_default'],
$package_ensure = 'present',
$peers = $facts['os_service_default'],
$proxy_arp = false,
Boolean $purge_config = false,
$local_address = $facts['networking']['ip'],
) {
include neutron::deps
include neutron::params
if ! $::neutron::params::bagpipe_bgp_package {
fail('BaGPipe agent is currently unsupported in this operating system.')
}
resources { 'neutron_bgpvpn_bagpipe_config':
purge => $purge_config,
}
neutron_bgpvpn_bagpipe_config {
'api/host': value => $api_host;
'api/port': value => $api_port;
'bgp/local_address': value => $local_address;
'bgp/peers': value => join(any2array($peers), ',');
'bgp/my_as': value => $my_as;
'bgp/enable_rtc': value => $enable_rtc;
'dataplane_driver_ipvpn/dataplane_driver': value => $dataplane_driver_ipvpn;
'dataplane_driver_ipvpn/ovs_bridge': value => $ovs_bridge;
'dataplane_driver_ipvpn/proxy_arp': value => $proxy_arp;
'dataplane_driver_ipvpn/mpls_interface': value => $mpls_interface;
}
package { 'bagpipe-bgp':
ensure => $package_ensure,
name => $::neutron::params::bagpipe_bgp_package,
tag => ['openstack', 'neutron-plugin-ml2-package']
}
if $manage_service {
if $enabled {
$service_ensure = 'running'
} else {
$service_ensure = 'stopped'
}
service { 'bagpipe-bgp':
ensure => $service_ensure,
name => $::neutron::params::bagpipe_bgp_service,
enable => $enabled,
tag => 'neutron-service',
}
Neutron_bgpvpn_bagpipe_config<||> ~> Service['bagpipe-bgp']
}
}