aboutsummaryrefslogtreecommitdiffstats
path: root/manifests/profile/base/neutron
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2017-04-27 15:59:58 +0000
committerGerrit Code Review <review@openstack.org>2017-04-27 15:59:58 +0000
commitb3021d6a0bb2f8b2ef6c41f1b8cea75f9e26c94b (patch)
tree526d88af8bb32f296219272387aa27b41476b8a9 /manifests/profile/base/neutron
parentf5a38f942bb69f5234f42686d9fca383c4c9e813 (diff)
parentf8ed8b69ddd56b43675a7ecdfb8e61c207ad44b1 (diff)
Merge "Add linuxbridge agent profile"
Diffstat (limited to 'manifests/profile/base/neutron')
-rw-r--r--manifests/profile/base/neutron/linuxbridge.pp20
1 files changed, 20 insertions, 0 deletions
diff --git a/manifests/profile/base/neutron/linuxbridge.pp b/manifests/profile/base/neutron/linuxbridge.pp
new file mode 100644
index 0000000..9f4899a
--- /dev/null
+++ b/manifests/profile/base/neutron/linuxbridge.pp
@@ -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
+ }
+}