aboutsummaryrefslogtreecommitdiffstats
path: root/manifests/profile/base/trove/conductor.pp
diff options
context:
space:
mode:
authorGiulio Fidente <gfidente@redhat.com>2016-04-28 16:20:00 +0200
committerEthan Gafford <egafford@redhat.com>2016-05-06 11:34:41 -0400
commit5bc20f8972f565f6f219971abd4c3095bd1b9f43 (patch)
tree29a54071b137a81d1e5347965a9e21958deff4df /manifests/profile/base/trove/conductor.pp
parente284e21405e9d50bfe114178a955918eddfbfaee (diff)
Add non-pcmk Trove API/Conductor/Taskmanager profiles
Partially-implements: blueprint trove-integration Change-Id: I667f40f1fa0a7f5c63be52412e3625bbe9b5fbd7
Diffstat (limited to 'manifests/profile/base/trove/conductor.pp')
-rw-r--r--manifests/profile/base/trove/conductor.pp36
1 files changed, 36 insertions, 0 deletions
diff --git a/manifests/profile/base/trove/conductor.pp b/manifests/profile/base/trove/conductor.pp
new file mode 100644
index 0000000..0e95a40
--- /dev/null
+++ b/manifests/profile/base/trove/conductor.pp
@@ -0,0 +1,36 @@
+# 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::base::trove::conductor
+#
+# Trove Conductor profile for tripleo
+#
+# === Parameters
+#
+# [*step*]
+# (Optional) The current step in deployment. See tripleo-heat-templates
+# for more details.
+# Defaults to hiera('step')
+#
+class tripleo::profile::base::trove::conductor (
+ $step = hiera('step'),
+) {
+
+ if $step >= 4 {
+ include ::trove
+ include ::trove::config
+ include ::trove::conductor
+ }
+
+}