Puppet Class: tripleo::profile::base::neutron::linuxbridge

Defined in:
manifests/profile/base/neutron/linuxbridge.pp

Overview

Class: tripleo::profile::base::neutron::linuxbridge

Neutron linuxbridge agent profile for tripleo

Parameters

step

(Optional) The current step in deployment. See tripleo-heat-templates for more details. Defaults to Integer(lookup(‘step’))

Parameters:

  • step (Any) (defaults to: Integer(lookup('step')))


12
13
14
15
16
17
18
19
20
# File 'manifests/profile/base/neutron/linuxbridge.pp', line 12

class tripleo::profile::base::neutron::linuxbridge(
  $step = Integer(lookup('step')),
) {
  include tripleo::profile::base::neutron

  if $step >= 5 {
    include neutron::agents::ml2::linuxbridge
  }
}