Puppet Class: neutron::agents::taas

Defined in:
manifests/agents/taas.pp

Overview

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:taas

Setups Neutron TaaS agent.

Parameters

package_ensure

(optional) Ensure state for package. Defaults to ‘present’.

taas_agent_periodic_interval

(optional) Seconds between periodic task runs. Defaults to $facts.

DEPRECATED PARAMETERS

vlan_range_start

(optional) Starting rantge of TAAS VLAN IDs. Defaults to $facts.

vlan_range_end

(optional) End rantge of TAAS VLAN IDs. Defaults to $facts.

Parameters:

  • package_ensure (Any) (defaults to: present)
  • taas_agent_periodic_interval (Any) (defaults to: $facts['os_service_default'])
  • vlan_range_start (Any) (defaults to: undef)
  • vlan_range_end (Any) (defaults to: undef)


36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
# File 'manifests/agents/taas.pp', line 36

class neutron::agents::taas (
  $package_ensure               = present,
  $taas_agent_periodic_interval = $facts['os_service_default'],
  # DEPRECATED PARAMETERS
  $vlan_range_start             = undef,
  $vlan_range_end               = undef,
) {

  include neutron::deps
  include neutron::params

  [
    'vlan_range_start',
    'vlan_range_end'
  ].each | $opt | {
    if getvar($opt) {
      warning("The ${opt} parameter has been deprecated and will be removed in a future release. \
Use the neutron::services::taas class parametes instead.")
    }
  }

  # NOTE(tkajinam): taas provides not its own agent but l2 agent extension so
  #                 configure these options in the core plugin file so that
  #                 these options are loaded by l2 agents such as ovs-agent.
  neutron_plugin_ml2 {
    'DEFAULT/taas_agent_periodic_interval': value => $taas_agent_periodic_interval;
  }

  neutron_plugin_ml2 {
    'taas/vlan_range_start': value => pick($vlan_range_start, $facts['os_service_default']);
    'taas/vlan_range_end':   value => pick($vlan_range_end, $facts['os_service_default']);
  }

  ensure_packages( 'neutron-taas', {
    'ensure' => $package_ensure,
    'name'   => $::neutron::params::taas_package,
    'tag'    => ['openstack', 'neutron-package'],
  })
}