Zaqar: support configurable backends
authorDan Prince <dprince@redhat.com>
Mon, 26 Jun 2017 14:24:39 +0000 (10:24 -0400)
committerDan Prince <dprince@redhat.com>
Thu, 29 Jun 2017 18:55:17 +0000 (14:55 -0400)
This patch updates the Zaqar profile so that we have
support for configuring alternate versions of the messaging
and management backends.

In Pike instack-undercloud started using the swift/sqlalchemy
backends and the intent here is to update the new containers
undercloud to use a similar default (thus letting us drop Mongodb).

Change-Id: Ie6a56b9163950cee2c0341afa0c0ddce665f3704

manifests/profile/base/zaqar.pp
releasenotes/notes/zaqar_undercloud_backends-66c268161cf7840e.yaml [new file with mode: 0644]

index 063ccb8..cd84d04 100644 (file)
 #   (Optional) The hostname of the node responsible for bootstrapping tasks
 #   Defaults to hiera('bootstrap_nodeid')
 #
+# [*management_store*]
+#   (Optional) The management store for Zaqar.
+#   Defaults to 'mongodb'
+#
+# [*messaging_store*]
+#   (Optional) The messaging store for Zaqar.
+#   Defaults to 'mongodb'
+#
 # [*step*]
 #   (Optional) The current step in deployment. See tripleo-heat-templates
 #   for more details.
@@ -29,6 +37,8 @@
 #
 class tripleo::profile::base::zaqar (
   $bootstrap_node   = hiera('bootstrap_nodeid', undef),
+  $management_store = 'mongodb',
+  $messaging_store  = 'mongodb',
   $step             = Integer(hiera('step')),
 ) {
   if $::hostname == downcase($bootstrap_node) {
@@ -40,22 +50,39 @@ class tripleo::profile::base::zaqar (
   if $step >= 4 or ( $step >= 3 and $is_bootstrap ) {
     include ::zaqar
 
-    if str2bool(hiera('mongodb::server::ipv6', false)) {
-      $mongo_node_ips_with_port_prefixed = prefix(hiera('mongodb_node_ips'), '[')
-      $mongo_node_ips_with_port = suffix($mongo_node_ips_with_port_prefixed, ']:27017')
-    } else {
-      $mongo_node_ips_with_port = suffix(hiera('mongodb_node_ips'), ':27017')
+    if $messaging_store == 'mongodb' or $management_store == 'mongodb' {
+      if str2bool(hiera('mongodb::server::ipv6', false)) {
+        $mongo_node_ips_with_port_prefixed = prefix(hiera('mongodb_node_ips'), '[')
+        $mongo_node_ips_with_port = suffix($mongo_node_ips_with_port_prefixed, ']:27017')
+      } else {
+        $mongo_node_ips_with_port = suffix(hiera('mongodb_node_ips'), ':27017')
+      }
+      $mongodb_replset = hiera('mongodb::server::replset')
+      $mongo_node_string = join($mongo_node_ips_with_port, ',')
+      $mongo_database_connection = "mongodb://${mongo_node_string}/zaqar?replicaSet=${mongodb_replset}"
     }
-    $mongodb_replset = hiera('mongodb::server::replset')
-    $mongo_node_string = join($mongo_node_ips_with_port, ',')
-    $database_connection = "mongodb://${mongo_node_string}/zaqar?replicaSet=${mongodb_replset}"
 
-    class { '::zaqar::management::mongodb':
-      uri => $database_connection,
+
+    if $messaging_store == 'swift' {
+      include ::zaqar::messaging::swift
+    } elsif $messaging_store == 'mongodb' {
+      class {'::zaqar::messaging::mongodb':
+        uri => $mongo_database_connection,
+      }
+    } else {
+      fail("unsupported Zaqar messaging_store set: ${messaging_store}")
     }
-    class {'::zaqar::messaging::mongodb':
-      uri => $database_connection,
+
+    if $management_store == 'sqlalchemy' {
+      include ::zaqar::management::sqlalchemy
+    } elsif $management_store == 'mongodb' {
+      class { '::zaqar::management::mongodb':
+        uri => $mongo_database_connection,
+      }
+    } else {
+      fail("unsupported Zaqar management_store set: ${management_store}")
     }
+
     include ::zaqar::transport::websocket
     include ::apache::mod::ssl
     include ::zaqar::transport::wsgi
diff --git a/releasenotes/notes/zaqar_undercloud_backends-66c268161cf7840e.yaml b/releasenotes/notes/zaqar_undercloud_backends-66c268161cf7840e.yaml
new file mode 100644 (file)
index 0000000..d1a463b
--- /dev/null
@@ -0,0 +1,6 @@
+---
+features:
+  - |
+    Support configurable backends Zaqar backends.
+    Updates the Zaqar profile so that we have support for configuring
+    alternate versions of the messaging and management backends.