Add non-pcmk Trove API/Conductor/Taskmanager profiles
authorGiulio Fidente <gfidente@redhat.com>
Thu, 28 Apr 2016 14:20:00 +0000 (16:20 +0200)
committerEthan Gafford <egafford@redhat.com>
Fri, 6 May 2016 15:34:41 +0000 (11:34 -0400)
Partially-implements: blueprint trove-integration
Change-Id: I667f40f1fa0a7f5c63be52412e3625bbe9b5fbd7

manifests/profile/base/glance/api.pp
manifests/profile/base/glance/registry.pp
manifests/profile/base/trove/api.pp [new file with mode: 0644]
manifests/profile/base/trove/conductor.pp [new file with mode: 0644]
manifests/profile/base/trove/taskmanager.pp [new file with mode: 0644]

index 22b4dc9..b216665 100644 (file)
@@ -65,4 +65,3 @@ class tripleo::profile::base::glance::api (
   }
 
 }
-
index c114c53..32ed6b7 100644 (file)
@@ -65,4 +65,3 @@ class tripleo::profile::base::glance::registry (
   }
 
 }
-
diff --git a/manifests/profile/base/trove/api.pp b/manifests/profile/base/trove/api.pp
new file mode 100644 (file)
index 0000000..a98f114
--- /dev/null
@@ -0,0 +1,45 @@
+# 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::api
+#
+# Trove API profile for tripleo
+#
+# === Parameters
+#
+# [*sync_db*]
+#   (Optional) Whether to run db sync
+#   Defaults to true
+#
+# [*step*]
+#   (Optional) The current step in deployment. See tripleo-heat-templates
+#   for more details.
+#   Defaults to hiera('step')
+#
+class tripleo::profile::base::trove::api (
+  $sync_db = true,
+  $step    = hiera('step'),
+) {
+
+  if $step >= 3 and $sync_db {
+    include ::trove::db::mysql
+  }
+
+  if $step >= 4 or ($step >= 3 and $sync_db) {
+    include ::trove
+    include ::trove::config
+    include ::trove::api
+  }
+
+}
diff --git a/manifests/profile/base/trove/conductor.pp b/manifests/profile/base/trove/conductor.pp
new file mode 100644 (file)
index 0000000..0e95a40
--- /dev/null
@@ -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
+  }
+
+}
diff --git a/manifests/profile/base/trove/taskmanager.pp b/manifests/profile/base/trove/taskmanager.pp
new file mode 100644 (file)
index 0000000..3972c29
--- /dev/null
@@ -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::taskmanager
+#
+# Trove Taskmanager 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::taskmanager (
+  $step = hiera('step'),
+) {
+
+  if $step >= 4 {
+    include ::trove
+    include ::trove::config
+    include ::trove::taskmanager
+  }
+
+}