aboutsummaryrefslogtreecommitdiffstats
path: root/manifests/profile/pacemaker
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2016-06-21 21:09:52 +0000
committerGerrit Code Review <review@openstack.org>2016-06-21 21:09:52 +0000
commit749ce1dbe8526af309ca9a8d26322c26e695fc02 (patch)
treed70d4993705c6831165143a3f427c05e1dca09e1 /manifests/profile/pacemaker
parent144c5f56f4204342ade82d46ebabab6398642bf3 (diff)
parentf048dcb2f94d2e35fbbc1edac44a118df5be38fb (diff)
Merge "Add Neutron opencontrail plugin profiles"
Diffstat (limited to 'manifests/profile/pacemaker')
-rw-r--r--manifests/profile/pacemaker/neutron/plugins/opencontrail.pp33
1 files changed, 33 insertions, 0 deletions
diff --git a/manifests/profile/pacemaker/neutron/plugins/opencontrail.pp b/manifests/profile/pacemaker/neutron/plugins/opencontrail.pp
new file mode 100644
index 0000000..32564f4
--- /dev/null
+++ b/manifests/profile/pacemaker/neutron/plugins/opencontrail.pp
@@ -0,0 +1,33 @@
+# Copyright 2016 Red Hat, Inc.
+#
+# 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: tripleo::profile::pacemaker::neutron::plugins::opencontrail
+#
+# Opencontrail Neutron profile for tripleo pacemaker
+#
+# === Parameters
+#
+# [*pacemaker_master*]
+# (Optional) The hostname of the pacemaker master
+# Defaults to hiera('bootstrap_nodeid')
+#
+class tripleo::profile::pacemaker::neutron::plugins::opencontrail (
+ $pacemaker_master = hiera('bootstrap_nodeid'),
+) {
+
+ class { '::tripleo::profile::base::neutron::plugins::opencontrail':
+ sync_db => ($::hostname == downcase($pacemaker_master))
+ }
+
+}