Add linuxbridge agent profile

Add a tripleo profile for neutron linuxbridge agent configuration.

Change-Id: Ie3ac03052f341c26735b423701e1decf7233d935
Partial-Bug: #1652211
This commit is contained in:
Bartosz Stopa 2017-04-19 09:18:27 +02:00
parent 97aac6a58c
commit f8ed8b69dd
1 changed files with 20 additions and 0 deletions

View File

@ -0,0 +1,20 @@
# == Class: tripleo::profile::base::neutron::linuxbridge
#
# Neutron linuxbridge agent profile for tripleo
#
# === Parameters
#
# [*step*]
# (Optional) The current step in deployment. See tripleo-heat-templatee
# for more details.
# Defaults to hiera('step')
#
class tripleo::profile::base::neutron::linuxbridge(
$step = hiera('step'),
) {
include ::tripleo::profile::base::neutron
if $step >= 5 {
include ::neutron::agents::ml2::linuxbridge
}
}