Blob Blame History Raw
From 04a259fbd6fe24f909b82a2b0790c39841618c3c Mon Sep 17 00:00:00 2001
From: Ken Gaillot <kgaillot@redhat.com>
Date: Wed, 20 Jan 2021 17:08:43 -0600
Subject: [PATCH 01/16] Refactor: scheduler: use convenience functions when
 unpacking node history

... to simplify a bit and improve readability
---
 lib/pengine/unpack.c | 14 +++++---------
 1 file changed, 5 insertions(+), 9 deletions(-)

diff --git a/lib/pengine/unpack.c b/lib/pengine/unpack.c
index 281bc88..f0f3425 100644
--- a/lib/pengine/unpack.c
+++ b/lib/pengine/unpack.c
@@ -1,5 +1,5 @@
 /*
- * Copyright 2004-2020 the Pacemaker project contributors
+ * Copyright 2004-2021 the Pacemaker project contributors
  *
  * The version control history for this file may have further details.
  *
@@ -1019,19 +1019,15 @@ unpack_node_loop(xmlNode * status, bool fence, pe_working_set_t * data_set)
     bool changed = false;
     xmlNode *lrm_rsc = NULL;
 
-    for (xmlNode *state = pcmk__xe_first_child(status); state != NULL;
-         state = pcmk__xe_next(state)) {
+    // Loop through all node_state entries in CIB status
+    for (xmlNode *state = first_named_child(status, XML_CIB_TAG_STATE);
+         state != NULL; state = crm_next_same_xml(state)) {
 
-        const char *id = NULL;
+        const char *id = ID(state);
         const char *uname = NULL;
         pe_node_t *this_node = NULL;
         bool process = FALSE;
 
-        if (!pcmk__str_eq((const char *)state->name, XML_CIB_TAG_STATE, pcmk__str_none)) {
-            continue;
-        }
-
-        id = crm_element_value(state, XML_ATTR_ID);
         uname = crm_element_value(state, XML_ATTR_UNAME);
         this_node = pe_find_node_any(data_set->nodes, id, uname);
 
-- 
1.8.3.1


From 4e1a0fa5ffbdad7fe0ed2e40550fc2773073a2dd Mon Sep 17 00:00:00 2001
From: Ken Gaillot <kgaillot@redhat.com>
Date: Wed, 20 Jan 2021 17:12:19 -0600
Subject: [PATCH 02/16] Refactor: scheduler: return standard code when
 unpacking node history

... for consistency and readability. Also, document the function.
---
 lib/pengine/unpack.c | 31 ++++++++++++++++++++++++-------
 1 file changed, 24 insertions(+), 7 deletions(-)

diff --git a/lib/pengine/unpack.c b/lib/pengine/unpack.c
index f0f3425..2471bf0 100644
--- a/lib/pengine/unpack.c
+++ b/lib/pengine/unpack.c
@@ -1013,10 +1013,27 @@ unpack_handle_remote_attrs(pe_node_t *this_node, xmlNode *state, pe_working_set_
     }
 }
 
-static bool
+/*!
+ * \internal
+ * \brief Unpack nodes' resource history as much as possible
+ *
+ * Unpack as many nodes' resource history as possible in one pass through the
+ * status. We need to process Pacemaker Remote nodes' connections/containers
+ * before unpacking their history; the connection/container history will be
+ * in another node's history, so it might take multiple passes to unpack
+ * everything.
+ *
+ * \param[in] status    CIB XML status section
+ * \param[in] fence     If true, treat any not-yet-unpacked nodes as unseen
+ * \param[in] data_set  Cluster working set
+ *
+ * \return Standard Pacemaker return code (specifically pcmk_rc_ok if done,
+ *         or EAGAIN if more unpacking remains to be done)
+ */
+static int
 unpack_node_loop(xmlNode * status, bool fence, pe_working_set_t * data_set) 
 {
-    bool changed = false;
+    int rc = pcmk_rc_ok;
     xmlNode *lrm_rsc = NULL;
 
     // Loop through all node_state entries in CIB status
@@ -1091,15 +1108,16 @@ unpack_node_loop(xmlNode * status, bool fence, pe_working_set_t * data_set)
                       fence?"un":"",
                       (pe__is_guest_or_remote_node(this_node)? " remote" : ""),
                       this_node->details->uname);
-            changed = TRUE;
             this_node->details->unpacked = TRUE;
 
             lrm_rsc = find_xml_node(state, XML_CIB_TAG_LRM, FALSE);
             lrm_rsc = find_xml_node(lrm_rsc, XML_LRM_TAG_RESOURCES, FALSE);
             unpack_lrm_resources(this_node, lrm_rsc, data_set);
+
+            rc = EAGAIN; // Other node histories might depend on this one
         }
     }
-    return changed;
+    return rc;
 }
 
 /* remove nodes that are down, stopping */
@@ -1195,9 +1213,8 @@ unpack_status(xmlNode * status, pe_working_set_t * data_set)
         }
     }
 
-
-    while(unpack_node_loop(status, FALSE, data_set)) {
-        crm_trace("Start another loop");
+    while (unpack_node_loop(status, FALSE, data_set) == EAGAIN) {
+        crm_trace("Another pass through node resource histories is needed");
     }
 
     // Now catch any nodes we didn't see
-- 
1.8.3.1


From 14a94866978e4a36bb329deb6b7a004c97eab912 Mon Sep 17 00:00:00 2001
From: Ken Gaillot <kgaillot@redhat.com>
Date: Wed, 20 Jan 2021 17:15:20 -0600
Subject: [PATCH 03/16] Low: scheduler: warn if node state has no ID or uname

This should be possible only if someone manually mis-edits the CIB, but that
case does merit a warning, and we should bail early if it happens (previously,
the right thing would eventually be done anyway, but log messages using a NULL
could theoretically cause a crash).
---
 lib/pengine/unpack.c | 26 +++++++++++++++++++-------
 1 file changed, 19 insertions(+), 7 deletions(-)

diff --git a/lib/pengine/unpack.c b/lib/pengine/unpack.c
index 2471bf0..0b4e0cd 100644
--- a/lib/pengine/unpack.c
+++ b/lib/pengine/unpack.c
@@ -1041,11 +1041,15 @@ unpack_node_loop(xmlNode * status, bool fence, pe_working_set_t * data_set)
          state != NULL; state = crm_next_same_xml(state)) {
 
         const char *id = ID(state);
-        const char *uname = NULL;
+        const char *uname = crm_element_value(state, XML_ATTR_UNAME);
         pe_node_t *this_node = NULL;
         bool process = FALSE;
 
-        uname = crm_element_value(state, XML_ATTR_UNAME);
+        if ((id == NULL) || (uname == NULL)) {
+            // Warning already logged in first pass through status section
+            continue;
+        }
+
         this_node = pe_find_node_any(data_set->nodes, id, uname);
 
         if (this_node == NULL) {
@@ -1150,19 +1154,27 @@ unpack_status(xmlNode * status, pe_working_set_t * data_set)
             const char *resource_discovery_enabled = NULL;
 
             id = crm_element_value(state, XML_ATTR_ID);
-            uname = crm_element_value(state, XML_ATTR_UNAME);
-            this_node = pe_find_node_any(data_set->nodes, id, uname);
+            if (id == NULL) {
+                crm_warn("Ignoring malformed " XML_CIB_TAG_STATE
+                         " entry without " XML_ATTR_ID);
+                continue;
+            }
 
+            uname = crm_element_value(state, XML_ATTR_UNAME);
             if (uname == NULL) {
-                /* error */
+                crm_warn("Ignoring malformed " XML_CIB_TAG_STATE
+                         " entry without " XML_ATTR_UNAME);
                 continue;
+            }
 
-            } else if (this_node == NULL) {
+            this_node = pe_find_node_any(data_set->nodes, id, uname);
+            if (this_node == NULL) {
                 pcmk__config_warn("Ignoring recorded node status for '%s' "
                                   "because no longer in configuration", uname);
                 continue;
+            }
 
-            } else if (pe__is_guest_or_remote_node(this_node)) {
+            if (pe__is_guest_or_remote_node(this_node)) {
                 /* online state for remote nodes is determined by the
                  * rsc state after all the unpacking is done. we do however
                  * need to mark whether or not the node has been fenced as this plays
-- 
1.8.3.1


From 2b77c873ad3f3f04e164695eafe945cec7d16f75 Mon Sep 17 00:00:00 2001
From: Ken Gaillot <kgaillot@redhat.com>
Date: Wed, 20 Jan 2021 17:22:48 -0600
Subject: [PATCH 04/16] Log: scheduler: improve messages when unpacking node
 histories

---
 lib/pengine/unpack.c | 26 ++++++++++++++------------
 1 file changed, 14 insertions(+), 12 deletions(-)

diff --git a/lib/pengine/unpack.c b/lib/pengine/unpack.c
index 0b4e0cd..641b601 100644
--- a/lib/pengine/unpack.c
+++ b/lib/pengine/unpack.c
@@ -1047,21 +1047,27 @@ unpack_node_loop(xmlNode * status, bool fence, pe_working_set_t * data_set)
 
         if ((id == NULL) || (uname == NULL)) {
             // Warning already logged in first pass through status section
+            crm_trace("Not unpacking resource history from malformed "
+                      XML_CIB_TAG_STATE " without id and/or uname");
             continue;
         }
 
         this_node = pe_find_node_any(data_set->nodes, id, uname);
-
         if (this_node == NULL) {
-            crm_info("Node %s is unknown", id);
+            // Warning already logged in first pass through status section
+            crm_trace("Not unpacking resource history for node %s because "
+                      "no longer in configuration", id);
             continue;
+        }
 
-        } else if (this_node->details->unpacked) {
-            crm_trace("Node %s was already processed", id);
+        if (this_node->details->unpacked) {
+            crm_trace("Not unpacking resource history for node %s because "
+                      "already unpacked", id);
             continue;
+        }
 
-        } else if (!pe__is_guest_or_remote_node(this_node)
-                   && pcmk_is_set(data_set->flags, pe_flag_stonith_enabled)) {
+        if (!pe__is_guest_or_remote_node(this_node)
+            && pcmk_is_set(data_set->flags, pe_flag_stonith_enabled)) {
             // A redundant test, but preserves the order for regression tests
             process = TRUE;
 
@@ -1082,13 +1088,11 @@ unpack_node_loop(xmlNode * status, bool fence, pe_working_set_t * data_set)
                  * known to be up before we process resources running in it.
                  */
                 check = TRUE;
-                crm_trace("Checking node %s/%s/%s status %d/%d/%d", id, rsc->id, rsc->container->id, fence, rsc->role, RSC_ROLE_STARTED);
 
             } else if (!pe__is_guest_node(this_node)
                        && ((rsc->role == RSC_ROLE_STARTED)
                            || pcmk_is_set(data_set->flags, pe_flag_shutdown_lock))) {
                 check = TRUE;
-                crm_trace("Checking node %s/%s status %d/%d/%d", id, rsc->id, fence, rsc->role, RSC_ROLE_STARTED);
             }
 
             if (check) {
@@ -1108,10 +1112,8 @@ unpack_node_loop(xmlNode * status, bool fence, pe_working_set_t * data_set)
         }
 
         if(process) {
-            crm_trace("Processing lrm resource entries on %shealthy%s node: %s",
-                      fence?"un":"",
-                      (pe__is_guest_or_remote_node(this_node)? " remote" : ""),
-                      this_node->details->uname);
+            crm_trace("Unpacking resource history for %snode %s",
+                      (fence? "unseen " : ""), id);
             this_node->details->unpacked = TRUE;
 
             lrm_rsc = find_xml_node(state, XML_CIB_TAG_LRM, FALSE);
-- 
1.8.3.1


From 9e1747453bf3d0315f189814fc025eaeab35b937 Mon Sep 17 00:00:00 2001
From: Ken Gaillot <kgaillot@redhat.com>
Date: Wed, 20 Jan 2021 17:26:05 -0600
Subject: [PATCH 05/16] Refactor: scheduler: avoid a level of indentation when
 unpacking node histories

---
 lib/pengine/unpack.c | 20 +++++++++++---------
 1 file changed, 11 insertions(+), 9 deletions(-)

diff --git a/lib/pengine/unpack.c b/lib/pengine/unpack.c
index 641b601..7e68d64 100644
--- a/lib/pengine/unpack.c
+++ b/lib/pengine/unpack.c
@@ -1111,17 +1111,19 @@ unpack_node_loop(xmlNode * status, bool fence, pe_working_set_t * data_set)
             process = TRUE;
         }
 
-        if(process) {
-            crm_trace("Unpacking resource history for %snode %s",
-                      (fence? "unseen " : ""), id);
-            this_node->details->unpacked = TRUE;
+        if (!process) {
+            continue;
+        }
 
-            lrm_rsc = find_xml_node(state, XML_CIB_TAG_LRM, FALSE);
-            lrm_rsc = find_xml_node(lrm_rsc, XML_LRM_TAG_RESOURCES, FALSE);
-            unpack_lrm_resources(this_node, lrm_rsc, data_set);
+        crm_trace("Unpacking resource history for %snode %s",
+                  (fence? "unseen " : ""), id);
 
-            rc = EAGAIN; // Other node histories might depend on this one
-        }
+        this_node->details->unpacked = TRUE;
+        lrm_rsc = find_xml_node(state, XML_CIB_TAG_LRM, FALSE);
+        lrm_rsc = find_xml_node(lrm_rsc, XML_LRM_TAG_RESOURCES, FALSE);
+        unpack_lrm_resources(this_node, lrm_rsc, data_set);
+
+        rc = EAGAIN; // Other node histories might depend on this one
     }
     return rc;
 }
-- 
1.8.3.1


From 7d5dadb32dbd52d287bbc94c2d55d75e018a3146 Mon Sep 17 00:00:00 2001
From: Ken Gaillot <kgaillot@redhat.com>
Date: Wed, 20 Jan 2021 17:26:41 -0600
Subject: [PATCH 06/16] Refactor: scheduler: simplify unpacking node histories

By separating the processing of remote and guest nodes, we can eliminate some
variables, improve trace messages, and make the code a little easier to follow.
---
 lib/pengine/unpack.c | 82 +++++++++++++++++++++++++++-------------------------
 1 file changed, 42 insertions(+), 40 deletions(-)

diff --git a/lib/pengine/unpack.c b/lib/pengine/unpack.c
index 7e68d64..9b968a9 100644
--- a/lib/pengine/unpack.c
+++ b/lib/pengine/unpack.c
@@ -1031,7 +1031,7 @@ unpack_handle_remote_attrs(pe_node_t *this_node, xmlNode *state, pe_working_set_
  *         or EAGAIN if more unpacking remains to be done)
  */
 static int
-unpack_node_loop(xmlNode * status, bool fence, pe_working_set_t * data_set) 
+unpack_node_loop(xmlNode *status, bool fence, pe_working_set_t *data_set)
 {
     int rc = pcmk_rc_ok;
     xmlNode *lrm_rsc = NULL;
@@ -1043,7 +1043,6 @@ unpack_node_loop(xmlNode * status, bool fence, pe_working_set_t * data_set)
         const char *id = ID(state);
         const char *uname = crm_element_value(state, XML_ATTR_UNAME);
         pe_node_t *this_node = NULL;
-        bool process = FALSE;
 
         if ((id == NULL) || (uname == NULL)) {
             // Warning already logged in first pass through status section
@@ -1066,53 +1065,56 @@ unpack_node_loop(xmlNode * status, bool fence, pe_working_set_t * data_set)
             continue;
         }
 
-        if (!pe__is_guest_or_remote_node(this_node)
-            && pcmk_is_set(data_set->flags, pe_flag_stonith_enabled)) {
-            // A redundant test, but preserves the order for regression tests
-            process = TRUE;
+        if (fence) {
+            // We're processing all remaining nodes
 
-        } else if (pe__is_guest_or_remote_node(this_node)) {
-            bool check = FALSE;
+        } else if (pe__is_guest_node(this_node)) {
+            /* We can unpack a guest node's history only after we've unpacked
+             * other resource history to the point that we know that the node's
+             * connection and containing resource are both up.
+             */
             pe_resource_t *rsc = this_node->details->remote_rsc;
 
-            if(fence) {
-                check = TRUE;
-
-            } else if(rsc == NULL) {
-                /* Not ready yet */
-
-            } else if (pe__is_guest_node(this_node)
-                       && rsc->role == RSC_ROLE_STARTED
-                       && rsc->container->role == RSC_ROLE_STARTED) {
-                /* Both the connection and its containing resource need to be
-                 * known to be up before we process resources running in it.
-                 */
-                check = TRUE;
-
-            } else if (!pe__is_guest_node(this_node)
-                       && ((rsc->role == RSC_ROLE_STARTED)
-                           || pcmk_is_set(data_set->flags, pe_flag_shutdown_lock))) {
-                check = TRUE;
-            }
-
-            if (check) {
-                determine_remote_online_status(data_set, this_node);
-                unpack_handle_remote_attrs(this_node, state, data_set);
-                process = TRUE;
+            if ((rsc == NULL) || (rsc->role != RSC_ROLE_STARTED)
+                || (rsc->container->role != RSC_ROLE_STARTED)) {
+                crm_trace("Not unpacking resource history for guest node %s "
+                          "because container and connection are not known to "
+                          "be up", id);
+                continue;
             }
 
-        } else if (this_node->details->online) {
-            process = TRUE;
+        } else if (pe__is_remote_node(this_node)) {
+            /* We can unpack a remote node's history only after we've unpacked
+             * other resource history to the point that we know that the node's
+             * connection is up, with the exception of when shutdown locks are
+             * in use.
+             */
+            pe_resource_t *rsc = this_node->details->remote_rsc;
 
-        } else if (fence) {
-            process = TRUE;
+            if ((rsc == NULL)
+                || (!pcmk_is_set(data_set->flags, pe_flag_shutdown_lock)
+                    && (rsc->role != RSC_ROLE_STARTED))) {
+                crm_trace("Not unpacking resource history for remote node %s "
+                          "because connection is not known to be up", id);
+                continue;
+            }
 
-        } else if (pcmk_is_set(data_set->flags, pe_flag_shutdown_lock)) {
-            process = TRUE;
+        /* If fencing and shutdown locks are disabled and we're not processing
+         * unseen nodes, then we don't want to unpack offline nodes until online
+         * nodes have been unpacked. This allows us to number active clone
+         * instances first.
+         */
+        } else if (!pcmk_any_flags_set(data_set->flags, pe_flag_stonith_enabled
+                                                        |pe_flag_shutdown_lock)
+                   && !this_node->details->online) {
+            crm_trace("Not unpacking resource history for offline "
+                      "cluster node %s", id);
+            continue;
         }
 
-        if (!process) {
-            continue;
+        if (pe__is_guest_or_remote_node(this_node)) {
+            determine_remote_online_status(data_set, this_node);
+            unpack_handle_remote_attrs(this_node, state, data_set);
         }
 
         crm_trace("Unpacking resource history for %snode %s",
-- 
1.8.3.1


From 0772d5e22df71557ca217e148bac5c9df00ddb3e Mon Sep 17 00:00:00 2001
From: Ken Gaillot <kgaillot@redhat.com>
Date: Thu, 21 Jan 2021 12:17:50 -0600
Subject: [PATCH 07/16] Refactor: scheduler: functionize unpacking node state
 better

unpack_status() was large and a bit difficult to follow, so separate unpacking
the node state and unpacking a cluster node's transient attributes into their
own functions.

Aside from formatting and log message tweaks, the code remains the same.
---
 lib/pengine/unpack.c | 188 ++++++++++++++++++++++++++++++---------------------
 1 file changed, 112 insertions(+), 76 deletions(-)

diff --git a/lib/pengine/unpack.c b/lib/pengine/unpack.c
index 9b968a9..2e565e3 100644
--- a/lib/pengine/unpack.c
+++ b/lib/pengine/unpack.c
@@ -1015,6 +1015,117 @@ unpack_handle_remote_attrs(pe_node_t *this_node, xmlNode *state, pe_working_set_
 
 /*!
  * \internal
+ * \brief Unpack a cluster node's transient attributes
+ *
+ * \param[in] state     CIB node state XML
+ * \param[in] node      Cluster node whose attributes are being unpacked
+ * \param[in] data_set  Cluster working set
+ */
+static void
+unpack_transient_attributes(xmlNode *state, pe_node_t *node,
+                            pe_working_set_t *data_set)
+{
+    const char *discovery = NULL;
+    xmlNode *attrs = find_xml_node(state, XML_TAG_TRANSIENT_NODEATTRS, FALSE);
+
+    add_node_attrs(attrs, node, TRUE, data_set);
+
+    if (crm_is_true(pe_node_attribute_raw(node, "standby"))) {
+        crm_info("Node %s is in standby-mode", node->details->uname);
+        node->details->standby = TRUE;
+    }
+
+    if (crm_is_true(pe_node_attribute_raw(node, "maintenance"))) {
+        crm_info("Node %s is in maintenance-mode", node->details->uname);
+        node->details->maintenance = TRUE;
+    }
+
+    discovery = pe_node_attribute_raw(node, XML_NODE_ATTR_RSC_DISCOVERY);
+    if ((discovery != NULL) && !crm_is_true(discovery)) {
+        crm_warn("Ignoring %s attribute for node %s because disabling "
+                 "resource discovery is not allowed for cluster nodes",
+                 XML_NODE_ATTR_RSC_DISCOVERY, node->details->uname);
+    }
+}
+
+/*!
+ * \internal
+ * \brief Unpack a node state entry (first pass)
+ *
+ * Unpack one node state entry from status. This unpacks information from the
+ * node_state element itself and node attributes inside it, but not the
+ * resource history inside it. Multiple passes through the status are needed to
+ * fully unpack everything.
+ *
+ * \param[in] state     CIB node state XML
+ * \param[in] data_set  Cluster working set
+ */
+static void
+unpack_node_state(xmlNode *state, pe_working_set_t *data_set)
+{
+    const char *id = NULL;
+    const char *uname = NULL;
+    pe_node_t *this_node = NULL;
+
+    id = crm_element_value(state, XML_ATTR_ID);
+    if (id == NULL) {
+        crm_warn("Ignoring malformed " XML_CIB_TAG_STATE " entry without "
+                 XML_ATTR_ID);
+        return;
+    }
+
+    uname = crm_element_value(state, XML_ATTR_UNAME);
+    if (uname == NULL) {
+        crm_warn("Ignoring malformed " XML_CIB_TAG_STATE " entry without "
+                 XML_ATTR_UNAME);
+        return;
+    }
+
+    this_node = pe_find_node_any(data_set->nodes, id, uname);
+    if (this_node == NULL) {
+        pcmk__config_warn("Ignoring recorded node state for '%s' because "
+                          "it is no longer in the configuration", uname);
+        return;
+    }
+
+    if (pe__is_guest_or_remote_node(this_node)) {
+        /* We can't determine the online status of Pacemaker Remote nodes until
+         * after all resource history has been unpacked. In this first pass, we
+         * do need to mark whether the node has been fenced, as this plays a
+         * role during unpacking cluster node resource state.
+         */
+        const char *is_fenced = crm_element_value(state, XML_NODE_IS_FENCED);
+
+        this_node->details->remote_was_fenced = crm_atoi(is_fenced, "0");
+        return;
+    }
+
+    unpack_transient_attributes(state, this_node, data_set);
+
+    /* Provisionally mark this cluster node as clean. We have at least seen it
+     * in the current cluster's lifetime.
+     */
+    this_node->details->unclean = FALSE;
+    this_node->details->unseen = FALSE;
+
+    crm_trace("Determining online status of cluster node %s (id %s)",
+              this_node->details->uname, id);
+    determine_online_status(state, this_node, data_set);
+
+    if (!pcmk_is_set(data_set->flags, pe_flag_have_quorum)
+        && this_node->details->online
+        && (data_set->no_quorum_policy == no_quorum_suicide)) {
+        /* Everything else should flow from this automatically
+         * (at least until the scheduler becomes able to migrate off
+         * healthy resources)
+         */
+        pe_fence_node(data_set, this_node, "cluster does not have quorum",
+                      FALSE);
+    }
+}
+
+/*!
+ * \internal
  * \brief Unpack nodes' resource history as much as possible
  *
  * Unpack as many nodes' resource history as possible in one pass through the
@@ -1136,11 +1247,7 @@ unpack_node_loop(xmlNode *status, bool fence, pe_working_set_t *data_set)
 gboolean
 unpack_status(xmlNode * status, pe_working_set_t * data_set)
 {
-    const char *id = NULL;
-    const char *uname = NULL;
-
     xmlNode *state = NULL;
-    pe_node_t *this_node = NULL;
 
     crm_trace("Beginning unpack");
 
@@ -1156,78 +1263,7 @@ unpack_status(xmlNode * status, pe_working_set_t * data_set)
             unpack_tickets_state((xmlNode *) state, data_set);
 
         } else if (pcmk__str_eq((const char *)state->name, XML_CIB_TAG_STATE, pcmk__str_none)) {
-            xmlNode *attrs = NULL;
-            const char *resource_discovery_enabled = NULL;
-
-            id = crm_element_value(state, XML_ATTR_ID);
-            if (id == NULL) {
-                crm_warn("Ignoring malformed " XML_CIB_TAG_STATE
-                         " entry without " XML_ATTR_ID);
-                continue;
-            }
-
-            uname = crm_element_value(state, XML_ATTR_UNAME);
-            if (uname == NULL) {
-                crm_warn("Ignoring malformed " XML_CIB_TAG_STATE
-                         " entry without " XML_ATTR_UNAME);
-                continue;
-            }
-
-            this_node = pe_find_node_any(data_set->nodes, id, uname);
-            if (this_node == NULL) {
-                pcmk__config_warn("Ignoring recorded node status for '%s' "
-                                  "because no longer in configuration", uname);
-                continue;
-            }
-
-            if (pe__is_guest_or_remote_node(this_node)) {
-                /* online state for remote nodes is determined by the
-                 * rsc state after all the unpacking is done. we do however
-                 * need to mark whether or not the node has been fenced as this plays
-                 * a role during unpacking cluster node resource state */
-                this_node->details->remote_was_fenced = 
-                    crm_atoi(crm_element_value(state, XML_NODE_IS_FENCED), "0");
-                continue;
-            }
-
-            crm_trace("Processing node id=%s, uname=%s", id, uname);
-
-            /* Mark the node as provisionally clean
-             * - at least we have seen it in the current cluster's lifetime
-             */
-            this_node->details->unclean = FALSE;
-            this_node->details->unseen = FALSE;
-            attrs = find_xml_node(state, XML_TAG_TRANSIENT_NODEATTRS, FALSE);
-            add_node_attrs(attrs, this_node, TRUE, data_set);
-
-            if (crm_is_true(pe_node_attribute_raw(this_node, "standby"))) {
-                crm_info("Node %s is in standby-mode", this_node->details->uname);
-                this_node->details->standby = TRUE;
-            }
-
-            if (crm_is_true(pe_node_attribute_raw(this_node, "maintenance"))) {
-                crm_info("Node %s is in maintenance-mode", this_node->details->uname);
-                this_node->details->maintenance = TRUE;
-            }
-
-            resource_discovery_enabled = pe_node_attribute_raw(this_node, XML_NODE_ATTR_RSC_DISCOVERY);
-            if (resource_discovery_enabled && !crm_is_true(resource_discovery_enabled)) {
-                crm_warn("ignoring %s attribute on node %s, disabling resource discovery is not allowed on cluster nodes",
-                    XML_NODE_ATTR_RSC_DISCOVERY, this_node->details->uname);
-            }
-
-            crm_trace("determining node state");
-            determine_online_status(state, this_node, data_set);
-
-            if (!pcmk_is_set(data_set->flags, pe_flag_have_quorum)
-                && this_node->details->online
-                && (data_set->no_quorum_policy == no_quorum_suicide)) {
-                /* Everything else should flow from this automatically
-                 * (at least until the scheduler becomes able to migrate off
-                 * healthy resources)
-                 */
-                pe_fence_node(data_set, this_node, "cluster does not have quorum", FALSE);
-            }
+            unpack_node_state(state, data_set);
         }
     }
 
-- 
1.8.3.1


From f36ac7e59b430ed21c2ceca6f58117c3566b35a6 Mon Sep 17 00:00:00 2001
From: Ken Gaillot <kgaillot@redhat.com>
Date: Thu, 21 Jan 2021 12:20:38 -0600
Subject: [PATCH 08/16] Refactor: scheduler: rename node history unpacking
 function

unpack_node_loop() was a confusing name since it doesn't unpack a node or
even most of its node state, just its resource history.
---
 lib/pengine/unpack.c | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/lib/pengine/unpack.c b/lib/pengine/unpack.c
index 2e565e3..28951bd 100644
--- a/lib/pengine/unpack.c
+++ b/lib/pengine/unpack.c
@@ -1142,7 +1142,7 @@ unpack_node_state(xmlNode *state, pe_working_set_t *data_set)
  *         or EAGAIN if more unpacking remains to be done)
  */
 static int
-unpack_node_loop(xmlNode *status, bool fence, pe_working_set_t *data_set)
+unpack_node_history(xmlNode *status, bool fence, pe_working_set_t *data_set)
 {
     int rc = pcmk_rc_ok;
     xmlNode *lrm_rsc = NULL;
@@ -1267,14 +1267,14 @@ unpack_status(xmlNode * status, pe_working_set_t * data_set)
         }
     }
 
-    while (unpack_node_loop(status, FALSE, data_set) == EAGAIN) {
+    while (unpack_node_history(status, FALSE, data_set) == EAGAIN) {
         crm_trace("Another pass through node resource histories is needed");
     }
 
     // Now catch any nodes we didn't see
-    unpack_node_loop(status,
-                     pcmk_is_set(data_set->flags, pe_flag_stonith_enabled),
-                     data_set);
+    unpack_node_history(status,
+                        pcmk_is_set(data_set->flags, pe_flag_stonith_enabled),
+                        data_set);
 
     /* Now that we know where resources are, we can schedule stops of containers
      * with failed bundle connections
@@ -3448,7 +3448,7 @@ check_operation_expiry(pe_resource_t *rsc, pe_node_t *node, int rc,
              *
              * We could limit this to remote_node->details->unclean, but at
              * this point, that's always true (it won't be reliable until
-             * after unpack_node_loop() is done).
+             * after unpack_node_history() is done).
              */
             crm_info("Clearing %s failure will wait until any scheduled "
                      "fencing of %s completes", task, rsc->id);
-- 
1.8.3.1


From 50cda757beb809de555b6f0efbb19c711b99e72a Mon Sep 17 00:00:00 2001
From: Ken Gaillot <kgaillot@redhat.com>
Date: Thu, 21 Jan 2021 12:52:22 -0600
Subject: [PATCH 09/16] Refactor: scheduler: reorganize lrm_resources unpacker

Drill down from node_state to lrm_resources within the function rather than
before it, so it's more self-contained, and unpack_node_history() is cleaner.
Rename it accordingly.

Also comment it better, and use convenience functions to simplify a bit.
---
 lib/pengine/unpack.c | 59 +++++++++++++++++++++++++++++++---------------------
 1 file changed, 35 insertions(+), 24 deletions(-)

diff --git a/lib/pengine/unpack.c b/lib/pengine/unpack.c
index 28951bd..637be8d 100644
--- a/lib/pengine/unpack.c
+++ b/lib/pengine/unpack.c
@@ -60,8 +60,8 @@ static void add_node_attrs(xmlNode *attrs, pe_node_t *node, bool overwrite,
 static void determine_online_status(xmlNode *node_state, pe_node_t *this_node,
                                     pe_working_set_t *data_set);
 
-static void unpack_lrm_resources(pe_node_t *node, xmlNode *lrm_state,
-                                 pe_working_set_t *data_set);
+static void unpack_node_lrm(pe_node_t *node, xmlNode *xml,
+                            pe_working_set_t *data_set);
 
 
 // Bitmask for warnings we only want to print once
@@ -1145,7 +1145,6 @@ static int
 unpack_node_history(xmlNode *status, bool fence, pe_working_set_t *data_set)
 {
     int rc = pcmk_rc_ok;
-    xmlNode *lrm_rsc = NULL;
 
     // Loop through all node_state entries in CIB status
     for (xmlNode *state = first_named_child(status, XML_CIB_TAG_STATE);
@@ -1232,9 +1231,7 @@ unpack_node_history(xmlNode *status, bool fence, pe_working_set_t *data_set)
                   (fence? "unseen " : ""), id);
 
         this_node->details->unpacked = TRUE;
-        lrm_rsc = find_xml_node(state, XML_CIB_TAG_LRM, FALSE);
-        lrm_rsc = find_xml_node(lrm_rsc, XML_LRM_TAG_RESOURCES, FALSE);
-        unpack_lrm_resources(this_node, lrm_rsc, data_set);
+        unpack_node_lrm(this_node, state, data_set);
 
         rc = EAGAIN; // Other node histories might depend on this one
     }
@@ -2458,32 +2455,46 @@ handle_orphaned_container_fillers(xmlNode * lrm_rsc_list, pe_working_set_t * dat
     }
 }
 
+/*!
+ * \internal
+ * \brief Unpack one node's lrm status section
+ *
+ * \param[in] node      Node whose status is being unpacked
+ * \param[in] xml       CIB node state XML
+ * \param[in] data_set  Cluster working set
+ */
 static void
-unpack_lrm_resources(pe_node_t *node, xmlNode *lrm_rsc_list,
-                     pe_working_set_t *data_set)
+unpack_node_lrm(pe_node_t *node, xmlNode *xml, pe_working_set_t *data_set)
 {
-    xmlNode *rsc_entry = NULL;
-    gboolean found_orphaned_container_filler = FALSE;
+    bool found_orphaned_container_filler = false;
 
-    for (rsc_entry = pcmk__xe_first_child(lrm_rsc_list); rsc_entry != NULL;
-         rsc_entry = pcmk__xe_next(rsc_entry)) {
+    // Drill down to lrm_resources section
+    xml = find_xml_node(xml, XML_CIB_TAG_LRM, FALSE);
+    if (xml == NULL) {
+        return;
+    }
+    xml = find_xml_node(xml, XML_LRM_TAG_RESOURCES, FALSE);
+    if (xml == NULL) {
+        return;
+    }
 
-        if (pcmk__str_eq((const char *)rsc_entry->name, XML_LRM_TAG_RESOURCE, pcmk__str_none)) {
-            pe_resource_t *rsc = unpack_lrm_rsc_state(node, rsc_entry, data_set);
-            if (!rsc) {
-                continue;
-            }
-            if (pcmk_is_set(rsc->flags, pe_rsc_orphan_container_filler)) {
-                found_orphaned_container_filler = TRUE;
-            }
+    // Unpack each lrm_resource entry
+    for (xmlNode *rsc_entry = first_named_child(xml, XML_LRM_TAG_RESOURCE);
+         rsc_entry != NULL; rsc_entry = crm_next_same_xml(rsc_entry)) {
+
+        pe_resource_t *rsc = unpack_lrm_rsc_state(node, rsc_entry, data_set);
+
+        if ((rsc != NULL)
+            && pcmk_is_set(rsc->flags, pe_rsc_orphan_container_filler)) {
+            found_orphaned_container_filler = true;
         }
     }
 
-    /* now that all the resource state has been unpacked for this node
-     * we have to go back and map any orphaned container fillers to their
-     * container resource */
+    /* Now that all resource state has been unpacked for this node, map any
+     * orphaned container fillers to their container resource.
+     */
     if (found_orphaned_container_filler) {
-        handle_orphaned_container_fillers(lrm_rsc_list, data_set);
+        handle_orphaned_container_fillers(xml, data_set);
     }
 }
 
-- 
1.8.3.1


From 32b07e573cafc6fa63f29a3619914afc7e40944f Mon Sep 17 00:00:00 2001
From: Ken Gaillot <kgaillot@redhat.com>
Date: Thu, 21 Jan 2021 13:00:01 -0600
Subject: [PATCH 10/16] Refactor: scheduler: rename lrm_resource unpacking
 function

... to reflect the XML element directly, for readability. Similarly
rename one of its arguments.
---
 lib/pengine/unpack.c | 27 +++++++++++++++++++--------
 1 file changed, 19 insertions(+), 8 deletions(-)

diff --git a/lib/pengine/unpack.c b/lib/pengine/unpack.c
index 637be8d..4c70cdc 100644
--- a/lib/pengine/unpack.c
+++ b/lib/pengine/unpack.c
@@ -2306,8 +2306,19 @@ unpack_shutdown_lock(xmlNode *rsc_entry, pe_resource_t *rsc, pe_node_t *node,
     }
 }
 
+/*!
+ * \internal
+ * \brief Unpack one lrm_resource entry from a node's CIB status
+ *
+ * \param[in] node       Node whose status is being unpacked
+ * \param[in] rsc_entry  lrm_resource XML being unpacked
+ * \param[in] data_set   Cluster working set
+ *
+ * \return Resource corresponding to the entry, or NULL if no operation history
+ */
 static pe_resource_t *
-unpack_lrm_rsc_state(pe_node_t * node, xmlNode * rsc_entry, pe_working_set_t * data_set)
+unpack_lrm_resource(pe_node_t *node, xmlNode *lrm_resource,
+                    pe_working_set_t *data_set)
 {
     GListPtr gIter = NULL;
     int stop_index = -1;
@@ -2315,7 +2326,7 @@ unpack_lrm_rsc_state(pe_node_t * node, xmlNode * rsc_entry, pe_working_set_t * d
     enum rsc_role_e req_role = RSC_ROLE_UNKNOWN;
 
     const char *task = NULL;
-    const char *rsc_id = crm_element_value(rsc_entry, XML_ATTR_ID);
+    const char *rsc_id = crm_element_value(lrm_resource, XML_ATTR_ID);
 
     pe_resource_t *rsc = NULL;
     GListPtr op_list = NULL;
@@ -2329,13 +2340,13 @@ unpack_lrm_rsc_state(pe_node_t * node, xmlNode * rsc_entry, pe_working_set_t * d
     enum rsc_role_e saved_role = RSC_ROLE_UNKNOWN;
 
     crm_trace("[%s] Processing %s on %s",
-              crm_element_name(rsc_entry), rsc_id, node->details->uname);
+              crm_element_name(lrm_resource), rsc_id, node->details->uname);
 
     /* extract operations */
     op_list = NULL;
     sorted_op_list = NULL;
 
-    for (rsc_op = pcmk__xe_first_child(rsc_entry); rsc_op != NULL;
+    for (rsc_op = pcmk__xe_first_child(lrm_resource); rsc_op != NULL;
          rsc_op = pcmk__xe_next(rsc_op)) {
 
         if (pcmk__str_eq((const char *)rsc_op->name, XML_LRM_TAG_RSC_OP,
@@ -2352,20 +2363,20 @@ unpack_lrm_rsc_state(pe_node_t * node, xmlNode * rsc_entry, pe_working_set_t * d
     }
 
     /* find the resource */
-    rsc = unpack_find_resource(data_set, node, rsc_id, rsc_entry);
+    rsc = unpack_find_resource(data_set, node, rsc_id, lrm_resource);
     if (rsc == NULL) {
         if (op_list == NULL) {
             // If there are no operations, there is nothing to do
             return NULL;
         } else {
-            rsc = process_orphan_resource(rsc_entry, node, data_set);
+            rsc = process_orphan_resource(lrm_resource, node, data_set);
         }
     }
     CRM_ASSERT(rsc != NULL);
 
     // Check whether the resource is "shutdown-locked" to this node
     if (pcmk_is_set(data_set->flags, pe_flag_shutdown_lock)) {
-        unpack_shutdown_lock(rsc_entry, rsc, node, data_set);
+        unpack_shutdown_lock(lrm_resource, rsc, node, data_set);
     }
 
     /* process operations */
@@ -2482,7 +2493,7 @@ unpack_node_lrm(pe_node_t *node, xmlNode *xml, pe_working_set_t *data_set)
     for (xmlNode *rsc_entry = first_named_child(xml, XML_LRM_TAG_RESOURCE);
          rsc_entry != NULL; rsc_entry = crm_next_same_xml(rsc_entry)) {
 
-        pe_resource_t *rsc = unpack_lrm_rsc_state(node, rsc_entry, data_set);
+        pe_resource_t *rsc = unpack_lrm_resource(node, rsc_entry, data_set);
 
         if ((rsc != NULL)
             && pcmk_is_set(rsc->flags, pe_rsc_orphan_container_filler)) {
-- 
1.8.3.1


From ed08885366fc3a43ac83d5c3fdab12fbf0b29ded Mon Sep 17 00:00:00 2001
From: Ken Gaillot <kgaillot@redhat.com>
Date: Thu, 21 Jan 2021 13:04:25 -0600
Subject: [PATCH 11/16] Refactor: scheduler: use convenience functions when
 unpacking lrm_resource

... to simplify a bit and improve readability
---
 lib/pengine/unpack.c | 16 +++++-----------
 1 file changed, 5 insertions(+), 11 deletions(-)

diff --git a/lib/pengine/unpack.c b/lib/pengine/unpack.c
index 4c70cdc..82b7562 100644
--- a/lib/pengine/unpack.c
+++ b/lib/pengine/unpack.c
@@ -2326,7 +2326,7 @@ unpack_lrm_resource(pe_node_t *node, xmlNode *lrm_resource,
     enum rsc_role_e req_role = RSC_ROLE_UNKNOWN;
 
     const char *task = NULL;
-    const char *rsc_id = crm_element_value(lrm_resource, XML_ATTR_ID);
+    const char *rsc_id = ID(lrm_resource);
 
     pe_resource_t *rsc = NULL;
     GListPtr op_list = NULL;
@@ -2342,17 +2342,11 @@ unpack_lrm_resource(pe_node_t *node, xmlNode *lrm_resource,
     crm_trace("[%s] Processing %s on %s",
               crm_element_name(lrm_resource), rsc_id, node->details->uname);
 
-    /* extract operations */
-    op_list = NULL;
-    sorted_op_list = NULL;
-
-    for (rsc_op = pcmk__xe_first_child(lrm_resource); rsc_op != NULL;
-         rsc_op = pcmk__xe_next(rsc_op)) {
+    // Build a list of individual lrm_rsc_op entries, so we can sort them
+    for (rsc_op = first_named_child(lrm_resource, XML_LRM_TAG_RSC_OP);
+         rsc_op != NULL; rsc_op = crm_next_same_xml(rsc_op)) {
 
-        if (pcmk__str_eq((const char *)rsc_op->name, XML_LRM_TAG_RSC_OP,
-                         pcmk__str_none)) {
-            op_list = g_list_prepend(op_list, rsc_op);
-        }
+        op_list = g_list_prepend(op_list, rsc_op);
     }
 
     if (!pcmk_is_set(data_set->flags, pe_flag_shutdown_lock)) {
-- 
1.8.3.1


From e727f29e1fe194938e8ecc698d8ef556031fb5a3 Mon Sep 17 00:00:00 2001
From: Ken Gaillot <kgaillot@redhat.com>
Date: Thu, 21 Jan 2021 13:09:58 -0600
Subject: [PATCH 12/16] Low: scheduler: warn if lrm_resource has no ID

This should be possible only if someone manually mis-edits the CIB, but that
case does merit a warning, and we should bail early if it happens (previously,
the right thing would eventually be done anyway, but log messages using a NULL
could theoretically cause a crash).
---
 lib/pengine/unpack.c | 9 +++++++--
 1 file changed, 7 insertions(+), 2 deletions(-)

diff --git a/lib/pengine/unpack.c b/lib/pengine/unpack.c
index 82b7562..19cde7a 100644
--- a/lib/pengine/unpack.c
+++ b/lib/pengine/unpack.c
@@ -2339,8 +2339,13 @@ unpack_lrm_resource(pe_node_t *node, xmlNode *lrm_resource,
     enum action_fail_response on_fail = action_fail_ignore;
     enum rsc_role_e saved_role = RSC_ROLE_UNKNOWN;
 
-    crm_trace("[%s] Processing %s on %s",
-              crm_element_name(lrm_resource), rsc_id, node->details->uname);
+    if (rsc_id == NULL) {
+        crm_warn("Ignoring malformed " XML_LRM_TAG_RESOURCE
+                 " entry without id");
+        return NULL;
+    }
+    crm_trace("Unpacking " XML_LRM_TAG_RESOURCE " for %s on %s",
+              rsc_id, node->details->uname);
 
     // Build a list of individual lrm_rsc_op entries, so we can sort them
     for (rsc_op = first_named_child(lrm_resource, XML_LRM_TAG_RSC_OP);
-- 
1.8.3.1


From 981dcf0f8442cf95ba6e6df3cac07d78e7510cae Mon Sep 17 00:00:00 2001
From: Ken Gaillot <kgaillot@redhat.com>
Date: Fri, 22 Jan 2021 15:04:49 -0600
Subject: [PATCH 13/16] Refactor: scheduler: new convenience function for
 changing resource's next role

... for logging consistency
---
 include/crm/pengine/complex.h |  5 ++++-
 lib/pengine/complex.c         | 19 +++++++++++++++++++
 2 files changed, 23 insertions(+), 1 deletion(-)

diff --git a/include/crm/pengine/complex.h b/include/crm/pengine/complex.h
index 1d010f4..d5e1a39 100644
--- a/include/crm/pengine/complex.h
+++ b/include/crm/pengine/complex.h
@@ -1,5 +1,5 @@
 /*
- * Copyright 2004-2020 the Pacemaker project contributors
+ * Copyright 2004-2021 the Pacemaker project contributors
  *
  * The version control history for this file may have further details.
  *
@@ -35,6 +35,9 @@ void pe_get_versioned_attributes(xmlNode *meta_hash, pe_resource_t *rsc,
 gboolean is_parent(pe_resource_t *child, pe_resource_t *rsc);
 pe_resource_t *uber_parent(pe_resource_t *rsc);
 
+void pe__set_next_role(pe_resource_t *rsc, enum rsc_role_e role,
+                       const char *why);
+
 #ifdef __cplusplus
 }
 #endif
diff --git a/lib/pengine/complex.c b/lib/pengine/complex.c
index 5d7d628..3b5f722 100644
--- a/lib/pengine/complex.c
+++ b/lib/pengine/complex.c
@@ -1109,3 +1109,22 @@ pe__count_common(pe_resource_t *rsc)
         }
     }
 }
+
+/*!
+ * \internal
+ * \brief Update a resource's next role
+ *
+ * \param[in,out] rsc   Resource to be updated
+ * \param[in]     role  Resource's new next role
+ * \param[in]     why   Human-friendly reason why role is changing (for logs)
+ */
+void
+pe__set_next_role(pe_resource_t *rsc, enum rsc_role_e role, const char *why)
+{
+    CRM_ASSERT((rsc != NULL) && (why != NULL));
+    if (rsc->next_role != role) {
+        pe_rsc_trace(rsc, "Resetting next role for %s from %s to %s (%s)",
+                     rsc->id, role2text(rsc->next_role), role2text(role), why);
+        rsc->next_role = role;
+    }
+}
-- 
1.8.3.1


From 2ae780b8746ffd8e7575fe4d30fea3971df87c66 Mon Sep 17 00:00:00 2001
From: Ken Gaillot <kgaillot@redhat.com>
Date: Fri, 22 Jan 2021 15:25:59 -0600
Subject: [PATCH 14/16] Log: scheduler: use new function to set a resource's
 next role

This does downgrade one log from debug to trace, but that seems reasonable.
Otherwise it adds a trace message whenever the next role is changed.
---
 lib/pacemaker/pcmk_sched_group.c      |  3 ++-
 lib/pacemaker/pcmk_sched_native.c     |  8 +++++---
 lib/pacemaker/pcmk_sched_promotable.c | 11 +++--------
 lib/pacemaker/pcmk_sched_utils.c      |  6 +++---
 lib/pengine/unpack.c                  | 23 +++++++++++------------
 lib/pengine/utils.c                   |  5 +++--
 6 files changed, 27 insertions(+), 29 deletions(-)

diff --git a/lib/pacemaker/pcmk_sched_group.c b/lib/pacemaker/pcmk_sched_group.c
index 439ed91..c9026e4 100644
--- a/lib/pacemaker/pcmk_sched_group.c
+++ b/lib/pacemaker/pcmk_sched_group.c
@@ -68,7 +68,8 @@ pcmk__group_allocate(pe_resource_t *rsc, pe_node_t *prefer,
         }
     }
 
-    rsc->next_role = group_data->first_child->next_role;
+    pe__set_next_role(rsc, group_data->first_child->next_role,
+                      "first group member");
     pe__clear_resource_flags(rsc, pe_rsc_allocating|pe_rsc_provisional);
 
     if (group_data->colocated) {
diff --git a/lib/pacemaker/pcmk_sched_native.c b/lib/pacemaker/pcmk_sched_native.c
index 0e50eda..6548b20 100644
--- a/lib/pacemaker/pcmk_sched_native.c
+++ b/lib/pacemaker/pcmk_sched_native.c
@@ -581,7 +581,7 @@ pcmk__native_allocate(pe_resource_t *rsc, pe_node_t *prefer,
               && data_set->no_quorum_policy == no_quorum_freeze) {
         crm_notice("Resource %s cannot be elevated from %s to %s: no-quorum-policy=freeze",
                    rsc->id, role2text(rsc->role), role2text(rsc->next_role));
-        rsc->next_role = rsc->role;
+        pe__set_next_role(rsc, rsc->role, "no-quorum-policy=freeze");
     }
 
     pe__show_node_weights(!show_scores, rsc, __func__, rsc->allowed_nodes);
@@ -594,7 +594,7 @@ pcmk__native_allocate(pe_resource_t *rsc, pe_node_t *prefer,
         const char *reason = NULL;
         pe_node_t *assign_to = NULL;
 
-        rsc->next_role = rsc->role;
+        pe__set_next_role(rsc, rsc->role, "unmanaged");
         assign_to = pe__current_node(rsc);
         if (assign_to == NULL) {
             reason = "inactive";
@@ -1226,7 +1226,9 @@ native_create_actions(pe_resource_t * rsc, pe_working_set_t * data_set)
     chosen = rsc->allocated_to;
     next_role = rsc->next_role;
     if (next_role == RSC_ROLE_UNKNOWN) {
-        rsc->next_role = (chosen == NULL)? RSC_ROLE_STOPPED : RSC_ROLE_STARTED;
+        pe__set_next_role(rsc,
+                          (chosen == NULL)? RSC_ROLE_STOPPED : RSC_ROLE_STARTED,
+                          "allocation");
     }
     pe_rsc_trace(rsc, "Creating all actions for %s transition from %s to %s (%s) on %s",
                  rsc->id, role2text(rsc->role), role2text(rsc->next_role),
diff --git a/lib/pacemaker/pcmk_sched_promotable.c b/lib/pacemaker/pcmk_sched_promotable.c
index 40d07e9..f3bde0c 100644
--- a/lib/pacemaker/pcmk_sched_promotable.c
+++ b/lib/pacemaker/pcmk_sched_promotable.c
@@ -622,13 +622,8 @@ set_role_slave(pe_resource_t * rsc, gboolean current)
         GListPtr allocated = NULL;
 
         rsc->fns->location(rsc, &allocated, FALSE);
-
-        if (allocated) {
-            rsc->next_role = RSC_ROLE_SLAVE;
-
-        } else {
-            rsc->next_role = RSC_ROLE_STOPPED;
-        }
+        pe__set_next_role(rsc, (allocated? RSC_ROLE_SLAVE : RSC_ROLE_STOPPED),
+                          "unpromoted instance");
         g_list_free(allocated);
     }
 
@@ -645,7 +640,7 @@ set_role_master(pe_resource_t * rsc)
     GListPtr gIter = rsc->children;
 
     if (rsc->next_role == RSC_ROLE_UNKNOWN) {
-        rsc->next_role = RSC_ROLE_MASTER;
+        pe__set_next_role(rsc, RSC_ROLE_MASTER, "promoted instance");
     }
 
     for (; gIter != NULL; gIter = gIter->next) {
diff --git a/lib/pacemaker/pcmk_sched_utils.c b/lib/pacemaker/pcmk_sched_utils.c
index eaaf526..177f43e 100644
--- a/lib/pacemaker/pcmk_sched_utils.c
+++ b/lib/pacemaker/pcmk_sched_utils.c
@@ -1,5 +1,5 @@
 /*
- * Copyright 2004-2020 the Pacemaker project contributors
+ * Copyright 2004-2021 the Pacemaker project contributors
  *
  * The version control history for this file may have further details.
  *
@@ -287,7 +287,7 @@ native_assign_node(pe_resource_t * rsc, GListPtr nodes, pe_node_t * chosen, gboo
             crm_debug("All nodes for resource %s are unavailable"
                       ", unclean or shutting down (%s: %d, %d)",
                       rsc->id, chosen->details->uname, can_run_resources(chosen), chosen->weight);
-            rsc->next_role = RSC_ROLE_STOPPED;
+            pe__set_next_role(rsc, RSC_ROLE_STOPPED, "node availability");
             chosen = NULL;
         }
     }
@@ -304,7 +304,7 @@ native_assign_node(pe_resource_t * rsc, GListPtr nodes, pe_node_t * chosen, gboo
         char *rc_inactive = crm_itoa(PCMK_OCF_NOT_RUNNING);
 
         crm_debug("Could not allocate a node for %s", rsc->id);
-        rsc->next_role = RSC_ROLE_STOPPED;
+        pe__set_next_role(rsc, RSC_ROLE_STOPPED, "unable to allocate");
 
         for (gIter = rsc->actions; gIter != NULL; gIter = gIter->next) {
             pe_action_t *op = (pe_action_t *) gIter->data;
diff --git a/lib/pengine/unpack.c b/lib/pengine/unpack.c
index 19cde7a..ce51429 100644
--- a/lib/pengine/unpack.c
+++ b/lib/pengine/unpack.c
@@ -980,7 +980,7 @@ unpack_handle_remote_attrs(pe_node_t *this_node, xmlNode *state, pe_working_set_
         crm_info("Node %s is shutting down", this_node->details->uname);
         this_node->details->shutdown = TRUE;
         if (rsc) {
-            rsc->next_role = RSC_ROLE_STOPPED;
+            pe__set_next_role(rsc, RSC_ROLE_STOPPED, "remote shutdown");
         }
     }
  
@@ -2060,7 +2060,7 @@ process_rsc_state(pe_resource_t * rsc, pe_node_t * node,
             break;
 
         case action_fail_stop:
-            rsc->next_role = RSC_ROLE_STOPPED;
+            pe__set_next_role(rsc, RSC_ROLE_STOPPED, "on-fail=stop");
             break;
 
         case action_fail_recover:
@@ -2114,7 +2114,7 @@ process_rsc_state(pe_resource_t * rsc, pe_node_t * node,
             /* if reconnect delay is in use, prevent the connection from exiting the
              * "STOPPED" role until the failure is cleared by the delay timeout. */
             if (rsc->remote_reconnect_ms) {
-                rsc->next_role = RSC_ROLE_STOPPED;
+                pe__set_next_role(rsc, RSC_ROLE_STOPPED, "remote reset");
             }
             break;
     }
@@ -2405,10 +2405,7 @@ unpack_lrm_resource(pe_node_t *node, xmlNode *lrm_resource,
 
     if (get_target_role(rsc, &req_role)) {
         if (rsc->next_role == RSC_ROLE_UNKNOWN || req_role < rsc->next_role) {
-            pe_rsc_debug(rsc, "%s: Overwriting calculated next role %s"
-                         " with requested next role %s",
-                         rsc->id, role2text(rsc->next_role), role2text(req_role));
-            rsc->next_role = req_role;
+            pe__set_next_role(rsc, req_role, XML_RSC_ATTR_TARGET_ROLE);
 
         } else if (req_role > rsc->next_role) {
             pe_rsc_info(rsc, "%s: Not overwriting calculated next role %s"
@@ -3052,7 +3049,8 @@ unpack_rsc_op_failure(pe_resource_t * rsc, pe_node_t * node, int rc, xmlNode * x
     } else if (!strcmp(task, CRMD_ACTION_DEMOTE)) {
         if (action->on_fail == action_fail_block) {
             rsc->role = RSC_ROLE_MASTER;
-            rsc->next_role = RSC_ROLE_STOPPED;
+            pe__set_next_role(rsc, RSC_ROLE_STOPPED,
+                              "demote with on-fail=block");
 
         } else if(rc == PCMK_OCF_NOT_RUNNING) {
             rsc->role = RSC_ROLE_STOPPED;
@@ -3083,7 +3081,7 @@ unpack_rsc_op_failure(pe_resource_t * rsc, pe_node_t * node, int rc, xmlNode * x
                  fail2text(action->on_fail), role2text(action->fail_role));
 
     if (action->fail_role != RSC_ROLE_STARTED && rsc->next_role < action->fail_role) {
-        rsc->next_role = action->fail_role;
+        pe__set_next_role(rsc, action->fail_role, "failure");
     }
 
     if (action->fail_role == RSC_ROLE_STOPPED) {
@@ -3200,7 +3198,7 @@ determine_op_status(
 
                 /* clear any previous failure actions */
                 *on_fail = action_fail_ignore;
-                rsc->next_role = RSC_ROLE_UNKNOWN;
+                pe__set_next_role(rsc, RSC_ROLE_UNKNOWN, "not running");
             }
             break;
 
@@ -3595,7 +3593,7 @@ update_resource_state(pe_resource_t * rsc, pe_node_t * node, xmlNode * xml_op, c
             case action_fail_recover:
             case action_fail_restart_container:
                 *on_fail = action_fail_ignore;
-                rsc->next_role = RSC_ROLE_UNKNOWN;
+                pe__set_next_role(rsc, RSC_ROLE_UNKNOWN, "clear past failures");
                 break;
             case action_fail_reset_remote:
                 if (rsc->remote_reconnect_ms == 0) {
@@ -3606,7 +3604,8 @@ update_resource_state(pe_resource_t * rsc, pe_node_t * node, xmlNode * xml_op, c
                      * to reconnect.)
                      */
                     *on_fail = action_fail_ignore;
-                    rsc->next_role = RSC_ROLE_UNKNOWN;
+                    pe__set_next_role(rsc, RSC_ROLE_UNKNOWN,
+                                      "clear past failures and reset remote");
                 }
                 break;
         }
diff --git a/lib/pengine/utils.c b/lib/pengine/utils.c
index 831f890..dbfe048 100644
--- a/lib/pengine/utils.c
+++ b/lib/pengine/utils.c
@@ -1,5 +1,5 @@
 /*
- * Copyright 2004-2020 the Pacemaker project contributors
+ * Copyright 2004-2021 the Pacemaker project contributors
  *
  * The version control history for this file may have further details.
  *
@@ -450,7 +450,8 @@ effective_quorum_policy(pe_resource_t *rsc, pe_working_set_t *data_set)
             case RSC_ROLE_MASTER:
             case RSC_ROLE_SLAVE:
                 if (rsc->next_role > RSC_ROLE_SLAVE) {
-                    rsc->next_role = RSC_ROLE_SLAVE;
+                    pe__set_next_role(rsc, RSC_ROLE_SLAVE,
+                                      "no-quorum-policy=demote");
                 }
                 policy = no_quorum_ignore;
                 break;
-- 
1.8.3.1


From 588a7c6bcdef8d051a43004a9744641e76d7d3cd Mon Sep 17 00:00:00 2001
From: Ken Gaillot <kgaillot@redhat.com>
Date: Fri, 22 Jan 2021 16:45:18 -0600
Subject: [PATCH 15/16] Fix: scheduler: process remote shutdowns correctly

When unpacking node histories, the scheduler can make multiple passes through
the node_state entries, because the state of remote node connections (on other
nodes) must be known before the history of the remote node itself can be
unpacked.

When unpacking a remote or guest node's history, the scheduler also unpacks its
transient attributes. If the shutdown attribute has been set, the scheduler
marks the node as shutting down.

Previously, at that time, it would also set the remote connection's next role
to stopped. However, if it so happened that remote connection history on
another node was processed later in the node history unpacking, and a probe had
found the connection not running, this would reset the next role to unknown.
The connection stop would not be scheduled, and the shutdown would hang until
it timed out.

Now, set the remote connection to stopped for shutdowns after all node
histories have been unpacked.
---
 lib/pengine/unpack.c | 22 +++++++++++++---------
 1 file changed, 13 insertions(+), 9 deletions(-)

diff --git a/lib/pengine/unpack.c b/lib/pengine/unpack.c
index ce51429..2d91abc 100644
--- a/lib/pengine/unpack.c
+++ b/lib/pengine/unpack.c
@@ -979,9 +979,6 @@ unpack_handle_remote_attrs(pe_node_t *this_node, xmlNode *state, pe_working_set_
     if (pe__shutdown_requested(this_node)) {
         crm_info("Node %s is shutting down", this_node->details->uname);
         this_node->details->shutdown = TRUE;
-        if (rsc) {
-            pe__set_next_role(rsc, RSC_ROLE_STOPPED, "remote shutdown");
-        }
     }
  
     if (crm_is_true(pe_node_attribute_raw(this_node, "standby"))) {
@@ -1289,17 +1286,24 @@ unpack_status(xmlNode * status, pe_working_set_t * data_set)
         data_set->stop_needed = NULL;
     }
 
+    /* Now that we know status of all Pacemaker Remote connections and nodes,
+     * we can stop connections for node shutdowns, and check the online status
+     * of remote/guest nodes that didn't have any node history to unpack.
+     */
     for (GListPtr gIter = data_set->nodes; gIter != NULL; gIter = gIter->next) {
         pe_node_t *this_node = gIter->data;
 
-        if (this_node == NULL) {
-            continue;
-        } else if (!pe__is_guest_or_remote_node(this_node)) {
-            continue;
-        } else if(this_node->details->unpacked) {
+        if (!pe__is_guest_or_remote_node(this_node)) {
             continue;
         }
-        determine_remote_online_status(data_set, this_node);
+        if (this_node->details->shutdown
+            && (this_node->details->remote_rsc != NULL)) {
+            pe__set_next_role(this_node->details->remote_rsc, RSC_ROLE_STOPPED,
+                              "remote shutdown");
+        }
+        if (!this_node->details->unpacked) {
+            determine_remote_online_status(data_set, this_node);
+        }
     }
 
     return TRUE;
-- 
1.8.3.1


From 119d0aa3f8c9e0c9aeba8398de185a559aa40f5e Mon Sep 17 00:00:00 2001
From: Ken Gaillot <kgaillot@redhat.com>
Date: Fri, 22 Jan 2021 16:59:37 -0600
Subject: [PATCH 16/16] Test: scheduler: add regression test for remote
 connection shutdown

In particular, a remote node is shutting down, and its node history comes
before a cluster node's history in the status section, where that cluster node
has a probe that found the remote node's connection not running in its history.

The test ensures that the connection is scheduled to be stopped, even though
that later history will set the next role to unknown.
---
 cts/scheduler/remote-connection-shutdown.dot     |   57 +
 cts/scheduler/remote-connection-shutdown.exp     |  402 ++++
 cts/scheduler/remote-connection-shutdown.scores  | 2560 ++++++++++++++++++++++
 cts/scheduler/remote-connection-shutdown.summary |  186 ++
 cts/scheduler/remote-connection-shutdown.xml     | 2109 ++++++++++++++++++
 5 files changed, 5314 insertions(+)
 create mode 100644 cts/scheduler/remote-connection-shutdown.dot
 create mode 100644 cts/scheduler/remote-connection-shutdown.exp
 create mode 100644 cts/scheduler/remote-connection-shutdown.scores
 create mode 100644 cts/scheduler/remote-connection-shutdown.summary
 create mode 100644 cts/scheduler/remote-connection-shutdown.xml

diff --git a/cts/scheduler/remote-connection-shutdown.dot b/cts/scheduler/remote-connection-shutdown.dot
new file mode 100644
index 0000000..74eb9e3
--- /dev/null
+++ b/cts/scheduler/remote-connection-shutdown.dot
@@ -0,0 +1,57 @@
+ digraph "g" {
+"compute-0_stop_0 controller-0" [ style=bold color="green" fontcolor="black"]
+"compute-unfence-trigger-clone_stop_0" -> "compute-unfence-trigger-clone_stopped_0" [ style = bold]
+"compute-unfence-trigger-clone_stop_0" -> "compute-unfence-trigger_stop_0 compute-0" [ style = bold]
+"compute-unfence-trigger-clone_stop_0" [ style=bold color="green" fontcolor="orange"]
+"compute-unfence-trigger-clone_stopped_0" [ style=bold color="green" fontcolor="orange"]
+"compute-unfence-trigger_stop_0 compute-0" -> "compute-0_stop_0 controller-0" [ style = bold]
+"compute-unfence-trigger_stop_0 compute-0" -> "compute-unfence-trigger-clone_stopped_0" [ style = bold]
+"compute-unfence-trigger_stop_0 compute-0" [ style=bold color="green" fontcolor="black"]
+"nova-evacuate_monitor_10000 database-1" [ style=bold color="green" fontcolor="black"]
+"nova-evacuate_start_0 database-1" -> "nova-evacuate_monitor_10000 database-1" [ style = bold]
+"nova-evacuate_start_0 database-1" [ style=bold color="green" fontcolor="black"]
+"nova-evacuate_stop_0 database-0" -> "nova-evacuate_start_0 database-1" [ style = bold]
+"nova-evacuate_stop_0 database-0" [ style=bold color="green" fontcolor="black"]
+"stonith-fence_compute-fence-nova_clear_failcount_0 controller-0" [ style=bold color="green" fontcolor="black"]
+"stonith-fence_compute-fence-nova_clear_failcount_0 controller-1" [ style=bold color="green" fontcolor="black"]
+"stonith-fence_compute-fence-nova_clear_failcount_0 controller-2" [ style=bold color="green" fontcolor="black"]
+"stonith-fence_compute-fence-nova_clear_failcount_0 database-0" [ style=bold color="green" fontcolor="black"]
+"stonith-fence_compute-fence-nova_clear_failcount_0 database-1" [ style=bold color="green" fontcolor="black"]
+"stonith-fence_compute-fence-nova_clear_failcount_0 database-2" [ style=bold color="green" fontcolor="black"]
+"stonith-fence_compute-fence-nova_clear_failcount_0 messaging-0" [ style=bold color="green" fontcolor="black"]
+"stonith-fence_compute-fence-nova_clear_failcount_0 messaging-1" [ style=bold color="green" fontcolor="black"]
+"stonith-fence_compute-fence-nova_clear_failcount_0 messaging-2" [ style=bold color="green" fontcolor="black"]
+"stonith-fence_compute-fence-nova_monitor_60000 database-0" [ style=bold color="green" fontcolor="black"]
+"stonith-fence_compute-fence-nova_start_0 database-0" -> "stonith-fence_compute-fence-nova_monitor_60000 database-0" [ style = bold]
+"stonith-fence_compute-fence-nova_start_0 database-0" [ style=bold color="green" fontcolor="black"]
+"stonith-fence_ipmilan-5254001f5f3c_monitor_60000 messaging-0" [ style=bold color="green" fontcolor="black"]
+"stonith-fence_ipmilan-5254001f5f3c_start_0 messaging-0" -> "stonith-fence_ipmilan-5254001f5f3c_monitor_60000 messaging-0" [ style = bold]
+"stonith-fence_ipmilan-5254001f5f3c_start_0 messaging-0" [ style=bold color="green" fontcolor="black"]
+"stonith-fence_ipmilan-5254001f5f3c_stop_0 database-2" -> "stonith-fence_ipmilan-5254001f5f3c_start_0 messaging-0" [ style = bold]
+"stonith-fence_ipmilan-5254001f5f3c_stop_0 database-2" [ style=bold color="green" fontcolor="black"]
+"stonith-fence_ipmilan-52540033df9c_monitor_60000 database-2" [ style=bold color="green" fontcolor="black"]
+"stonith-fence_ipmilan-52540033df9c_start_0 database-2" -> "stonith-fence_ipmilan-52540033df9c_monitor_60000 database-2" [ style = bold]
+"stonith-fence_ipmilan-52540033df9c_start_0 database-2" [ style=bold color="green" fontcolor="black"]
+"stonith-fence_ipmilan-52540033df9c_stop_0 database-1" -> "stonith-fence_ipmilan-52540033df9c_start_0 database-2" [ style = bold]
+"stonith-fence_ipmilan-52540033df9c_stop_0 database-1" [ style=bold color="green" fontcolor="black"]
+"stonith-fence_ipmilan-5254003f88b4_monitor_60000 messaging-1" [ style=bold color="green" fontcolor="black"]
+"stonith-fence_ipmilan-5254003f88b4_start_0 messaging-1" -> "stonith-fence_ipmilan-5254003f88b4_monitor_60000 messaging-1" [ style = bold]
+"stonith-fence_ipmilan-5254003f88b4_start_0 messaging-1" [ style=bold color="green" fontcolor="black"]
+"stonith-fence_ipmilan-5254003f88b4_stop_0 messaging-0" -> "stonith-fence_ipmilan-5254003f88b4_start_0 messaging-1" [ style = bold]
+"stonith-fence_ipmilan-5254003f88b4_stop_0 messaging-0" [ style=bold color="green" fontcolor="black"]
+"stonith-fence_ipmilan-5254007b7920_monitor_60000 messaging-2" [ style=bold color="green" fontcolor="black"]
+"stonith-fence_ipmilan-5254007b7920_start_0 messaging-2" -> "stonith-fence_ipmilan-5254007b7920_monitor_60000 messaging-2" [ style = bold]
+"stonith-fence_ipmilan-5254007b7920_start_0 messaging-2" [ style=bold color="green" fontcolor="black"]
+"stonith-fence_ipmilan-5254007b7920_stop_0 messaging-1" -> "stonith-fence_ipmilan-5254007b7920_start_0 messaging-2" [ style = bold]
+"stonith-fence_ipmilan-5254007b7920_stop_0 messaging-1" [ style=bold color="green" fontcolor="black"]
+"stonith-fence_ipmilan-5254009cb549_monitor_60000 database-1" [ style=bold color="green" fontcolor="black"]
+"stonith-fence_ipmilan-5254009cb549_start_0 database-1" -> "stonith-fence_ipmilan-5254009cb549_monitor_60000 database-1" [ style = bold]
+"stonith-fence_ipmilan-5254009cb549_start_0 database-1" [ style=bold color="green" fontcolor="black"]
+"stonith-fence_ipmilan-5254009cb549_stop_0 database-0" -> "stonith-fence_ipmilan-5254009cb549_start_0 database-1" [ style = bold]
+"stonith-fence_ipmilan-5254009cb549_stop_0 database-0" [ style=bold color="green" fontcolor="black"]
+"stonith-fence_ipmilan-525400ffc780_monitor_60000 database-0" [ style=bold color="green" fontcolor="black"]
+"stonith-fence_ipmilan-525400ffc780_start_0 database-0" -> "stonith-fence_ipmilan-525400ffc780_monitor_60000 database-0" [ style = bold]
+"stonith-fence_ipmilan-525400ffc780_start_0 database-0" [ style=bold color="green" fontcolor="black"]
+"stonith-fence_ipmilan-525400ffc780_stop_0 messaging-2" -> "stonith-fence_ipmilan-525400ffc780_start_0 database-0" [ style = bold]
+"stonith-fence_ipmilan-525400ffc780_stop_0 messaging-2" [ style=bold color="green" fontcolor="black"]
+}
diff --git a/cts/scheduler/remote-connection-shutdown.exp b/cts/scheduler/remote-connection-shutdown.exp
new file mode 100644
index 0000000..f3c3424
--- /dev/null
+++ b/cts/scheduler/remote-connection-shutdown.exp
@@ -0,0 +1,402 @@
+<transition_graph cluster-delay="60s" stonith-timeout="60s" failed-stop-offset="INFINITY" failed-start-offset="INFINITY"  transition_id="0">
+  <synapse id="0">
+    <action_set>
+      <rsc_op id="98" operation="stop" operation_key="compute-0_stop_0" on_node="controller-0" on_node_uuid="1">
+        <primitive id="compute-0" class="ocf" provider="pacemaker" type="remote"/>
+        <attributes CRM_meta_name="stop" CRM_meta_on_node="controller-0" CRM_meta_on_node_uuid="1" CRM_meta_timeout="60000"  server="172.17.1.105"/>
+        <downed>
+          <node id="compute-0"/>
+        </downed>
+      </rsc_op>
+    </action_set>
+    <inputs>
+      <trigger>
+        <rsc_op id="305" operation="stop" operation_key="compute-unfence-trigger_stop_0" internal_operation_key="compute-unfence-trigger:0_stop_0" on_node="compute-0" on_node_uuid="compute-0" router_node="controller-0"/>
+      </trigger>
+    </inputs>
+  </synapse>
+  <synapse id="1">
+    <action_set>
+      <rsc_op id="304" operation="monitor" operation_key="stonith-fence_compute-fence-nova_monitor_60000" on_node="database-0" on_node_uuid="4">
+        <primitive id="stonith-fence_compute-fence-nova" class="stonith" type="fence_compute"/>
+        <attributes CRM_meta_interval="60000" CRM_meta_name="monitor" CRM_meta_on_node="database-0" CRM_meta_on_node_uuid="4" CRM_meta_timeout="120000" auth_url="https://overcloud.redhat.local:13000"  domain="redhat.local" login="admin" passwd="****" project_domain="Default" record_only="1" region_name="regionOne" tenant_name="admin" user_domain="Default"/>
+      </rsc_op>
+    </action_set>
+    <inputs>
+      <trigger>
+        <rsc_op id="303" operation="start" operation_key="stonith-fence_compute-fence-nova_start_0" on_node="database-0" on_node_uuid="4"/>
+      </trigger>
+    </inputs>
+  </synapse>
+  <synapse id="2">
+    <action_set>
+      <rsc_op id="303" operation="start" operation_key="stonith-fence_compute-fence-nova_start_0" on_node="database-0" on_node_uuid="4">
+        <primitive id="stonith-fence_compute-fence-nova" class="stonith" type="fence_compute"/>
+        <attributes CRM_meta_on_node="database-0" CRM_meta_on_node_uuid="4" CRM_meta_timeout="120000" auth_url="https://overcloud.redhat.local:13000"  domain="redhat.local" login="admin" passwd="****" project_domain="Default" record_only="1" region_name="regionOne" tenant_name="admin" user_domain="Default"/>
+      </rsc_op>
+    </action_set>
+    <inputs/>
+  </synapse>
+  <synapse id="3">
+    <action_set>
+      <crm_event id="73" operation="clear_failcount" operation_key="stonith-fence_compute-fence-nova_clear_failcount_0" on_node="messaging-2" on_node_uuid="9">
+        <primitive id="stonith-fence_compute-fence-nova" class="stonith" type="fence_compute"/>
+        <attributes CRM_meta_on_node="messaging-2" CRM_meta_on_node_uuid="9" CRM_meta_op_no_wait="true" CRM_meta_timeout="120000" auth_url="https://overcloud.redhat.local:13000"  domain="redhat.local" login="admin" passwd="****" project_domain="Default" record_only="1" region_name="regionOne" tenant_name="admin" user_domain="Default"/>
+      </crm_event>
+    </action_set>
+    <inputs/>
+  </synapse>
+  <synapse id="4">
+    <action_set>
+      <crm_event id="53" operation="clear_failcount" operation_key="stonith-fence_compute-fence-nova_clear_failcount_0" on_node="messaging-0" on_node_uuid="7">
+        <primitive id="stonith-fence_compute-fence-nova" class="stonith" type="fence_compute"/>
+        <attributes CRM_meta_on_node="messaging-0" CRM_meta_on_node_uuid="7" CRM_meta_op_no_wait="true" CRM_meta_timeout="120000" auth_url="https://overcloud.redhat.local:13000"  domain="redhat.local" login="admin" passwd="****" project_domain="Default" record_only="1" region_name="regionOne" tenant_name="admin" user_domain="Default"/>
+      </crm_event>
+    </action_set>
+    <inputs/>
+  </synapse>
+  <synapse id="5">
+    <action_set>
+      <crm_event id="48" operation="clear_failcount" operation_key="stonith-fence_compute-fence-nova_clear_failcount_0" on_node="messaging-1" on_node_uuid="8">
+        <primitive id="stonith-fence_compute-fence-nova" class="stonith" type="fence_compute"/>
+        <attributes CRM_meta_on_node="messaging-1" CRM_meta_on_node_uuid="8" CRM_meta_op_no_wait="true" CRM_meta_timeout="120000" auth_url="https://overcloud.redhat.local:13000"  domain="redhat.local" login="admin" passwd="****" project_domain="Default" record_only="1" region_name="regionOne" tenant_name="admin" user_domain="Default"/>
+      </crm_event>
+    </action_set>
+    <inputs/>
+  </synapse>
+  <synapse id="6">
+    <action_set>
+      <crm_event id="42" operation="clear_failcount" operation_key="stonith-fence_compute-fence-nova_clear_failcount_0" on_node="controller-2" on_node_uuid="3">
+        <primitive id="stonith-fence_compute-fence-nova" class="stonith" type="fence_compute"/>
+        <attributes CRM_meta_on_node="controller-2" CRM_meta_on_node_uuid="3" CRM_meta_op_no_wait="true" CRM_meta_timeout="120000" auth_url="https://overcloud.redhat.local:13000"  domain="redhat.local" login="admin" passwd="****" project_domain="Default" record_only="1" region_name="regionOne" tenant_name="admin" user_domain="Default"/>
+      </crm_event>
+    </action_set>
+    <inputs/>
+  </synapse>
+  <synapse id="7">
+    <action_set>
+      <crm_event id="34" operation="clear_failcount" operation_key="stonith-fence_compute-fence-nova_clear_failcount_0" on_node="controller-1" on_node_uuid="2">
+        <primitive id="stonith-fence_compute-fence-nova" class="stonith" type="fence_compute"/>
+        <attributes CRM_meta_on_node="controller-1" CRM_meta_on_node_uuid="2" CRM_meta_op_no_wait="true" CRM_meta_timeout="120000" auth_url="https://overcloud.redhat.local:13000"  domain="redhat.local" login="admin" passwd="****" project_domain="Default" record_only="1" region_name="regionOne" tenant_name="admin" user_domain="Default"/>
+      </crm_event>
+    </action_set>
+    <inputs/>
+  </synapse>
+  <synapse id="8">
+    <action_set>
+      <crm_event id="24" operation="clear_failcount" operation_key="stonith-fence_compute-fence-nova_clear_failcount_0" on_node="controller-0" on_node_uuid="1">
+        <primitive id="stonith-fence_compute-fence-nova" class="stonith" type="fence_compute"/>
+        <attributes CRM_meta_on_node="controller-0" CRM_meta_on_node_uuid="1" CRM_meta_op_no_wait="true" CRM_meta_timeout="120000" auth_url="https://overcloud.redhat.local:13000"  domain="redhat.local" login="admin" passwd="****" project_domain="Default" record_only="1" region_name="regionOne" tenant_name="admin" user_domain="Default"/>
+      </crm_event>
+    </action_set>
+    <inputs/>
+  </synapse>
+  <synapse id="9">
+    <action_set>
+      <crm_event id="13" operation="clear_failcount" operation_key="stonith-fence_compute-fence-nova_clear_failcount_0" on_node="database-2" on_node_uuid="6">
+        <primitive id="stonith-fence_compute-fence-nova" class="stonith" type="fence_compute"/>
+        <attributes CRM_meta_on_node="database-2" CRM_meta_on_node_uuid="6" CRM_meta_op_no_wait="true" CRM_meta_timeout="120000" auth_url="https://overcloud.redhat.local:13000"  domain="redhat.local" login="admin" passwd="****" project_domain="Default" record_only="1" region_name="regionOne" tenant_name="admin" user_domain="Default"/>
+      </crm_event>
+    </action_set>
+    <inputs/>
+  </synapse>
+  <synapse id="10">
+    <action_set>
+      <crm_event id="9" operation="clear_failcount" operation_key="stonith-fence_compute-fence-nova_clear_failcount_0" on_node="database-1" on_node_uuid="5">
+        <primitive id="stonith-fence_compute-fence-nova" class="stonith" type="fence_compute"/>
+        <attributes CRM_meta_on_node="database-1" CRM_meta_on_node_uuid="5" CRM_meta_op_no_wait="true" CRM_meta_timeout="120000" auth_url="https://overcloud.redhat.local:13000"  domain="redhat.local" login="admin" passwd="****" project_domain="Default" record_only="1" region_name="regionOne" tenant_name="admin" user_domain="Default"/>
+      </crm_event>
+    </action_set>
+    <inputs/>
+  </synapse>
+  <synapse id="11">
+    <action_set>
+      <crm_event id="4" operation="clear_failcount" operation_key="stonith-fence_compute-fence-nova_clear_failcount_0" on_node="database-0" on_node_uuid="4">
+        <primitive id="stonith-fence_compute-fence-nova" class="stonith" type="fence_compute"/>
+        <attributes CRM_meta_on_node="database-0" CRM_meta_on_node_uuid="4" CRM_meta_op_no_wait="true" CRM_meta_timeout="120000" auth_url="https://overcloud.redhat.local:13000"  domain="redhat.local" login="admin" passwd="****" project_domain="Default" record_only="1" region_name="regionOne" tenant_name="admin" user_domain="Default"/>
+      </crm_event>
+    </action_set>
+    <inputs/>
+  </synapse>
+  <synapse id="12">
+    <action_set>
+      <rsc_op id="305" operation="stop" operation_key="compute-unfence-trigger_stop_0" internal_operation_key="compute-unfence-trigger:0_stop_0" on_node="compute-0" on_node_uuid="compute-0" router_node="controller-0">
+        <primitive id="compute-unfence-trigger" long-id="compute-unfence-trigger:0" class="ocf" provider="pacemaker" type="Dummy"/>
+        <attributes CRM_meta_clone="0" CRM_meta_clone_max="23" CRM_meta_clone_node_max="1" CRM_meta_globally_unique="false" CRM_meta_name="stop" CRM_meta_notify="false" CRM_meta_on_fail="block" CRM_meta_on_node="compute-0" CRM_meta_on_node_uuid="compute-0" CRM_meta_timeout="20000" />
+      </rsc_op>
+    </action_set>
+    <inputs>
+      <trigger>
+        <pseudo_event id="310" operation="stop" operation_key="compute-unfence-trigger-clone_stop_0"/>
+      </trigger>
+    </inputs>
+  </synapse>
+  <synapse id="13" priority="1000000">
+    <action_set>
+      <pseudo_event id="311" operation="stopped" operation_key="compute-unfence-trigger-clone_stopped_0">
+        <attributes CRM_meta_clone_max="23" CRM_meta_clone_node_max="1" CRM_meta_globally_unique="false" CRM_meta_notify="false" CRM_meta_timeout="120000" />
+      </pseudo_event>
+    </action_set>
+    <inputs>
+      <trigger>
+        <rsc_op id="305" operation="stop" operation_key="compute-unfence-trigger_stop_0" internal_operation_key="compute-unfence-trigger:0_stop_0" on_node="compute-0" on_node_uuid="compute-0" router_node="controller-0"/>
+      </trigger>
+      <trigger>
+        <pseudo_event id="310" operation="stop" operation_key="compute-unfence-trigger-clone_stop_0"/>
+      </trigger>
+    </inputs>
+  </synapse>
+  <synapse id="14">
+    <action_set>
+      <pseudo_event id="310" operation="stop" operation_key="compute-unfence-trigger-clone_stop_0">
+        <attributes CRM_meta_clone_max="23" CRM_meta_clone_node_max="1" CRM_meta_globally_unique="false" CRM_meta_notify="false" CRM_meta_timeout="120000" />
+      </pseudo_event>
+    </action_set>
+    <inputs/>
+  </synapse>
+  <synapse id="15">
+    <action_set>
+      <rsc_op id="314" operation="monitor" operation_key="nova-evacuate_monitor_10000" on_node="database-1" on_node_uuid="5">
+        <primitive id="nova-evacuate" class="ocf" provider="openstack" type="NovaEvacuate"/>
+        <attributes CRM_meta_interval="10000" CRM_meta_name="monitor" CRM_meta_on_node="database-1" CRM_meta_on_node_uuid="5" CRM_meta_timeout="600000" auth_url="https://overcloud.redhat.local:13000"  no_shared_storage="true" password="****" project_domain="Default" region_name="regionOne" tenant_name="admin" user_domain="Default" username="admin"/>
+      </rsc_op>
+    </action_set>
+    <inputs>
+      <trigger>
+        <rsc_op id="313" operation="start" operation_key="nova-evacuate_start_0" on_node="database-1" on_node_uuid="5"/>
+      </trigger>
+    </inputs>
+  </synapse>
+  <synapse id="16">
+    <action_set>
+      <rsc_op id="313" operation="start" operation_key="nova-evacuate_start_0" on_node="database-1" on_node_uuid="5">
+        <primitive id="nova-evacuate" class="ocf" provider="openstack" type="NovaEvacuate"/>
+        <attributes CRM_meta_name="start" CRM_meta_on_node="database-1" CRM_meta_on_node_uuid="5" CRM_meta_timeout="20000" auth_url="https://overcloud.redhat.local:13000"  no_shared_storage="true" password="****" project_domain="Default" region_name="regionOne" tenant_name="admin" user_domain="Default" username="admin"/>
+      </rsc_op>
+    </action_set>
+    <inputs>
+      <trigger>
+        <rsc_op id="312" operation="stop" operation_key="nova-evacuate_stop_0" on_node="database-0" on_node_uuid="4"/>
+      </trigger>
+    </inputs>
+  </synapse>
+  <synapse id="17">
+    <action_set>
+      <rsc_op id="312" operation="stop" operation_key="nova-evacuate_stop_0" on_node="database-0" on_node_uuid="4">
+        <primitive id="nova-evacuate" class="ocf" provider="openstack" type="NovaEvacuate"/>
+        <attributes CRM_meta_name="stop" CRM_meta_on_node="database-0" CRM_meta_on_node_uuid="4" CRM_meta_timeout="20000" auth_url="https://overcloud.redhat.local:13000"  no_shared_storage="true" password="****" project_domain="Default" region_name="regionOne" tenant_name="admin" user_domain="Default" username="admin"/>
+      </rsc_op>
+    </action_set>
+    <inputs/>
+  </synapse>
+  <synapse id="18">
+    <action_set>
+      <rsc_op id="317" operation="monitor" operation_key="stonith-fence_ipmilan-52540033df9c_monitor_60000" on_node="database-2" on_node_uuid="6">
+        <primitive id="stonith-fence_ipmilan-52540033df9c" class="stonith" type="fence_ipmilan"/>
+        <attributes CRM_meta_interval="60000" CRM_meta_name="monitor" CRM_meta_on_node="database-2" CRM_meta_on_node_uuid="6" CRM_meta_timeout="120000"  delay="20" ipaddr="172.16.0.15" ipport="6231" lanplus="true" login="admin" passwd="****" pcmk_host_list="messaging-2"/>
+      </rsc_op>
+    </action_set>
+    <inputs>
+      <trigger>
+        <rsc_op id="316" operation="start" operation_key="stonith-fence_ipmilan-52540033df9c_start_0" on_node="database-2" on_node_uuid="6"/>
+      </trigger>
+    </inputs>
+  </synapse>
+  <synapse id="19">
+    <action_set>
+      <rsc_op id="316" operation="start" operation_key="stonith-fence_ipmilan-52540033df9c_start_0" on_node="database-2" on_node_uuid="6">
+        <primitive id="stonith-fence_ipmilan-52540033df9c" class="stonith" type="fence_ipmilan"/>
+        <attributes CRM_meta_on_node="database-2" CRM_meta_on_node_uuid="6" CRM_meta_timeout="120000"  delay="20" ipaddr="172.16.0.15" ipport="6231" lanplus="true" login="admin" passwd="****" pcmk_host_list="messaging-2"/>
+      </rsc_op>
+    </action_set>
+    <inputs>
+      <trigger>
+        <rsc_op id="315" operation="stop" operation_key="stonith-fence_ipmilan-52540033df9c_stop_0" on_node="database-1" on_node_uuid="5"/>
+      </trigger>
+    </inputs>
+  </synapse>
+  <synapse id="20">
+    <action_set>
+      <rsc_op id="315" operation="stop" operation_key="stonith-fence_ipmilan-52540033df9c_stop_0" on_node="database-1" on_node_uuid="5">
+        <primitive id="stonith-fence_ipmilan-52540033df9c" class="stonith" type="fence_ipmilan"/>
+        <attributes CRM_meta_on_node="database-1" CRM_meta_on_node_uuid="5" CRM_meta_timeout="120000"  delay="20" ipaddr="172.16.0.15" ipport="6231" lanplus="true" login="admin" passwd="****" pcmk_host_list="messaging-2"/>
+      </rsc_op>
+    </action_set>
+    <inputs/>
+  </synapse>
+  <synapse id="21">
+    <action_set>
+      <rsc_op id="320" operation="monitor" operation_key="stonith-fence_ipmilan-5254001f5f3c_monitor_60000" on_node="messaging-0" on_node_uuid="7">
+        <primitive id="stonith-fence_ipmilan-5254001f5f3c" class="stonith" type="fence_ipmilan"/>
+        <attributes CRM_meta_interval="60000" CRM_meta_name="monitor" CRM_meta_on_node="messaging-0" CRM_meta_on_node_uuid="7" CRM_meta_timeout="120000"  delay="20" ipaddr="172.16.0.15" ipport="6240" lanplus="true" login="admin" passwd="****" pcmk_host_list="database-0"/>
+      </rsc_op>
+    </action_set>
+    <inputs>
+      <trigger>
+        <rsc_op id="319" operation="start" operation_key="stonith-fence_ipmilan-5254001f5f3c_start_0" on_node="messaging-0" on_node_uuid="7"/>
+      </trigger>
+    </inputs>
+  </synapse>
+  <synapse id="22">
+    <action_set>
+      <rsc_op id="319" operation="start" operation_key="stonith-fence_ipmilan-5254001f5f3c_start_0" on_node="messaging-0" on_node_uuid="7">
+        <primitive id="stonith-fence_ipmilan-5254001f5f3c" class="stonith" type="fence_ipmilan"/>
+        <attributes CRM_meta_on_node="messaging-0" CRM_meta_on_node_uuid="7" CRM_meta_timeout="120000"  delay="20" ipaddr="172.16.0.15" ipport="6240" lanplus="true" login="admin" passwd="****" pcmk_host_list="database-0"/>
+      </rsc_op>
+    </action_set>
+    <inputs>
+      <trigger>
+        <rsc_op id="318" operation="stop" operation_key="stonith-fence_ipmilan-5254001f5f3c_stop_0" on_node="database-2" on_node_uuid="6"/>
+      </trigger>
+    </inputs>
+  </synapse>
+  <synapse id="23">
+    <action_set>
+      <rsc_op id="318" operation="stop" operation_key="stonith-fence_ipmilan-5254001f5f3c_stop_0" on_node="database-2" on_node_uuid="6">
+        <primitive id="stonith-fence_ipmilan-5254001f5f3c" class="stonith" type="fence_ipmilan"/>
+        <attributes CRM_meta_on_node="database-2" CRM_meta_on_node_uuid="6" CRM_meta_timeout="120000"  delay="20" ipaddr="172.16.0.15" ipport="6240" lanplus="true" login="admin" passwd="****" pcmk_host_list="database-0"/>
+      </rsc_op>
+    </action_set>
+    <inputs/>
+  </synapse>
+  <synapse id="24">
+    <action_set>
+      <rsc_op id="323" operation="monitor" operation_key="stonith-fence_ipmilan-5254003f88b4_monitor_60000" on_node="messaging-1" on_node_uuid="8">
+        <primitive id="stonith-fence_ipmilan-5254003f88b4" class="stonith" type="fence_ipmilan"/>
+        <attributes CRM_meta_interval="60000" CRM_meta_name="monitor" CRM_meta_on_node="messaging-1" CRM_meta_on_node_uuid="8" CRM_meta_timeout="120000"  delay="20" ipaddr="172.16.0.15" ipport="6237" lanplus="true" login="admin" passwd="****" pcmk_host_list="controller-2"/>
+      </rsc_op>
+    </action_set>
+    <inputs>
+      <trigger>
+        <rsc_op id="322" operation="start" operation_key="stonith-fence_ipmilan-5254003f88b4_start_0" on_node="messaging-1" on_node_uuid="8"/>
+      </trigger>
+    </inputs>
+  </synapse>
+  <synapse id="25">
+    <action_set>
+      <rsc_op id="322" operation="start" operation_key="stonith-fence_ipmilan-5254003f88b4_start_0" on_node="messaging-1" on_node_uuid="8">
+        <primitive id="stonith-fence_ipmilan-5254003f88b4" class="stonith" type="fence_ipmilan"/>
+        <attributes CRM_meta_on_node="messaging-1" CRM_meta_on_node_uuid="8" CRM_meta_timeout="120000"  delay="20" ipaddr="172.16.0.15" ipport="6237" lanplus="true" login="admin" passwd="****" pcmk_host_list="controller-2"/>
+      </rsc_op>
+    </action_set>
+    <inputs>
+      <trigger>
+        <rsc_op id="321" operation="stop" operation_key="stonith-fence_ipmilan-5254003f88b4_stop_0" on_node="messaging-0" on_node_uuid="7"/>
+      </trigger>
+    </inputs>
+  </synapse>
+  <synapse id="26">
+    <action_set>
+      <rsc_op id="321" operation="stop" operation_key="stonith-fence_ipmilan-5254003f88b4_stop_0" on_node="messaging-0" on_node_uuid="7">
+        <primitive id="stonith-fence_ipmilan-5254003f88b4" class="stonith" type="fence_ipmilan"/>
+        <attributes CRM_meta_on_node="messaging-0" CRM_meta_on_node_uuid="7" CRM_meta_timeout="120000"  delay="20" ipaddr="172.16.0.15" ipport="6237" lanplus="true" login="admin" passwd="****" pcmk_host_list="controller-2"/>
+      </rsc_op>
+    </action_set>
+    <inputs/>
+  </synapse>
+  <synapse id="27">
+    <action_set>
+      <rsc_op id="326" operation="monitor" operation_key="stonith-fence_ipmilan-5254007b7920_monitor_60000" on_node="messaging-2" on_node_uuid="9">
+        <primitive id="stonith-fence_ipmilan-5254007b7920" class="stonith" type="fence_ipmilan"/>
+        <attributes CRM_meta_interval="60000" CRM_meta_name="monitor" CRM_meta_on_node="messaging-2" CRM_meta_on_node_uuid="9" CRM_meta_timeout="120000"  delay="20" ipaddr="172.16.0.15" ipport="6235" lanplus="true" login="admin" passwd="****" pcmk_host_list="controller-1"/>
+      </rsc_op>
+    </action_set>
+    <inputs>
+      <trigger>
+        <rsc_op id="325" operation="start" operation_key="stonith-fence_ipmilan-5254007b7920_start_0" on_node="messaging-2" on_node_uuid="9"/>
+      </trigger>
+    </inputs>
+  </synapse>
+  <synapse id="28">
+    <action_set>
+      <rsc_op id="325" operation="start" operation_key="stonith-fence_ipmilan-5254007b7920_start_0" on_node="messaging-2" on_node_uuid="9">
+        <primitive id="stonith-fence_ipmilan-5254007b7920" class="stonith" type="fence_ipmilan"/>
+        <attributes CRM_meta_on_node="messaging-2" CRM_meta_on_node_uuid="9" CRM_meta_timeout="120000"  delay="20" ipaddr="172.16.0.15" ipport="6235" lanplus="true" login="admin" passwd="****" pcmk_host_list="controller-1"/>
+      </rsc_op>
+    </action_set>
+    <inputs>
+      <trigger>
+        <rsc_op id="324" operation="stop" operation_key="stonith-fence_ipmilan-5254007b7920_stop_0" on_node="messaging-1" on_node_uuid="8"/>
+      </trigger>
+    </inputs>
+  </synapse>
+  <synapse id="29">
+    <action_set>
+      <rsc_op id="324" operation="stop" operation_key="stonith-fence_ipmilan-5254007b7920_stop_0" on_node="messaging-1" on_node_uuid="8">
+        <primitive id="stonith-fence_ipmilan-5254007b7920" class="stonith" type="fence_ipmilan"/>
+        <attributes CRM_meta_on_node="messaging-1" CRM_meta_on_node_uuid="8" CRM_meta_timeout="120000"  delay="20" ipaddr="172.16.0.15" ipport="6235" lanplus="true" login="admin" passwd="****" pcmk_host_list="controller-1"/>
+      </rsc_op>
+    </action_set>
+    <inputs/>
+  </synapse>
+  <synapse id="30">
+    <action_set>
+      <rsc_op id="335" operation="monitor" operation_key="stonith-fence_ipmilan-525400ffc780_monitor_60000" on_node="database-0" on_node_uuid="4">
+        <primitive id="stonith-fence_ipmilan-525400ffc780" class="stonith" type="fence_ipmilan"/>
+        <attributes CRM_meta_interval="60000" CRM_meta_name="monitor" CRM_meta_on_node="database-0" CRM_meta_on_node_uuid="4" CRM_meta_timeout="120000"  delay="20" ipaddr="172.16.0.15" ipport="6241" lanplus="true" login="admin" passwd="****" pcmk_host_list="database-1"/>
+      </rsc_op>
+    </action_set>
+    <inputs>
+      <trigger>
+        <rsc_op id="334" operation="start" operation_key="stonith-fence_ipmilan-525400ffc780_start_0" on_node="database-0" on_node_uuid="4"/>
+      </trigger>
+    </inputs>
+  </synapse>
+  <synapse id="31">
+    <action_set>
+      <rsc_op id="334" operation="start" operation_key="stonith-fence_ipmilan-525400ffc780_start_0" on_node="database-0" on_node_uuid="4">
+        <primitive id="stonith-fence_ipmilan-525400ffc780" class="stonith" type="fence_ipmilan"/>
+        <attributes CRM_meta_on_node="database-0" CRM_meta_on_node_uuid="4" CRM_meta_timeout="120000"  delay="20" ipaddr="172.16.0.15" ipport="6241" lanplus="true" login="admin" passwd="****" pcmk_host_list="database-1"/>
+      </rsc_op>
+    </action_set>
+    <inputs>
+      <trigger>
+        <rsc_op id="333" operation="stop" operation_key="stonith-fence_ipmilan-525400ffc780_stop_0" on_node="messaging-2" on_node_uuid="9"/>
+      </trigger>
+    </inputs>
+  </synapse>
+  <synapse id="32">
+    <action_set>
+      <rsc_op id="333" operation="stop" operation_key="stonith-fence_ipmilan-525400ffc780_stop_0" on_node="messaging-2" on_node_uuid="9">
+        <primitive id="stonith-fence_ipmilan-525400ffc780" class="stonith" type="fence_ipmilan"/>
+        <attributes CRM_meta_on_node="messaging-2" CRM_meta_on_node_uuid="9" CRM_meta_timeout="120000"  delay="20" ipaddr="172.16.0.15" ipport="6241" lanplus="true" login="admin" passwd="****" pcmk_host_list="database-1"/>
+      </rsc_op>
+    </action_set>
+    <inputs/>
+  </synapse>
+  <synapse id="33">
+    <action_set>
+      <rsc_op id="338" operation="monitor" operation_key="stonith-fence_ipmilan-5254009cb549_monitor_60000" on_node="database-1" on_node_uuid="5">
+        <primitive id="stonith-fence_ipmilan-5254009cb549" class="stonith" type="fence_ipmilan"/>
+        <attributes CRM_meta_interval="60000" CRM_meta_name="monitor" CRM_meta_on_node="database-1" CRM_meta_on_node_uuid="5" CRM_meta_timeout="120000"  delay="20" ipaddr="172.16.0.15" ipport="6233" lanplus="true" login="admin" passwd="****" pcmk_host_list="messaging-1"/>
+      </rsc_op>
+    </action_set>
+    <inputs>
+      <trigger>
+        <rsc_op id="337" operation="start" operation_key="stonith-fence_ipmilan-5254009cb549_start_0" on_node="database-1" on_node_uuid="5"/>
+      </trigger>
+    </inputs>
+  </synapse>
+  <synapse id="34">
+    <action_set>
+      <rsc_op id="337" operation="start" operation_key="stonith-fence_ipmilan-5254009cb549_start_0" on_node="database-1" on_node_uuid="5">
+        <primitive id="stonith-fence_ipmilan-5254009cb549" class="stonith" type="fence_ipmilan"/>
+        <attributes CRM_meta_on_node="database-1" CRM_meta_on_node_uuid="5" CRM_meta_timeout="120000"  delay="20" ipaddr="172.16.0.15" ipport="6233" lanplus="true" login="admin" passwd="****" pcmk_host_list="messaging-1"/>
+      </rsc_op>
+    </action_set>
+    <inputs>
+      <trigger>
+        <rsc_op id="336" operation="stop" operation_key="stonith-fence_ipmilan-5254009cb549_stop_0" on_node="database-0" on_node_uuid="4"/>
+      </trigger>
+    </inputs>
+  </synapse>
+  <synapse id="35">
+    <action_set>
+      <rsc_op id="336" operation="stop" operation_key="stonith-fence_ipmilan-5254009cb549_stop_0" on_node="database-0" on_node_uuid="4">
+        <primitive id="stonith-fence_ipmilan-5254009cb549" class="stonith" type="fence_ipmilan"/>
+        <attributes CRM_meta_on_node="database-0" CRM_meta_on_node_uuid="4" CRM_meta_timeout="120000"  delay="20" ipaddr="172.16.0.15" ipport="6233" lanplus="true" login="admin" passwd="****" pcmk_host_list="messaging-1"/>
+      </rsc_op>
+    </action_set>
+    <inputs/>
+  </synapse>
+</transition_graph>
diff --git a/cts/scheduler/remote-connection-shutdown.scores b/cts/scheduler/remote-connection-shutdown.scores
new file mode 100644
index 0000000..003b067
--- /dev/null
+++ b/cts/scheduler/remote-connection-shutdown.scores
@@ -0,0 +1,2560 @@
+Allocation scores:
+Only 'private' parameters to nova-evacuate_monitor_10000 on database-0 changed: 0:0;259:1420:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269
+Only 'private' parameters to nova-evacuate_start_0 on database-0 changed: 0:0;258:1420:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269
+Only 'private' parameters to stonith-fence_compute-fence-nova for unfencing compute-0 changed
+Only 'private' parameters to stonith-fence_compute-fence-nova for unfencing compute-1 changed
+Only 'private' parameters to stonith-fence_ipmilan-5254001f5f3c_monitor_60000 on database-2 changed: 0:0;265:1422:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269
+Only 'private' parameters to stonith-fence_ipmilan-5254001f5f3c_start_0 on database-2 changed: 0:0;263:1422:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269
+Only 'private' parameters to stonith-fence_ipmilan-52540033df9c_monitor_60000 on database-1 changed: 0:0;263:1420:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269
+Only 'private' parameters to stonith-fence_ipmilan-52540033df9c_start_0 on database-1 changed: 0:0;261:1420:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269
+Only 'private' parameters to stonith-fence_ipmilan-5254003f88b4_monitor_60000 on messaging-0 changed: 0:0;269:1422:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269
+Only 'private' parameters to stonith-fence_ipmilan-5254003f88b4_start_0 on messaging-0 changed: 0:0;267:1422:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269
+Only 'private' parameters to stonith-fence_ipmilan-525400642894_monitor_60000 on messaging-2 changed: 0:0;274:1424:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269
+Only 'private' parameters to stonith-fence_ipmilan-525400642894_start_0 on messaging-2 changed: 0:0;272:1424:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269
+Only 'private' parameters to stonith-fence_ipmilan-5254007b7920_monitor_60000 on messaging-1 changed: 0:0;273:1422:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269
+Only 'private' parameters to stonith-fence_ipmilan-5254007b7920_start_0 on messaging-1 changed: 0:0;271:1422:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269
+Only 'private' parameters to stonith-fence_ipmilan-5254009cb549_monitor_60000 on database-0 changed: 0:0;323:1375:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269
+Only 'private' parameters to stonith-fence_ipmilan-5254009cb549_start_0 on database-0 changed: 0:0;322:1375:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269
+Only 'private' parameters to stonith-fence_ipmilan-525400bb150b_monitor_60000 on messaging-0 changed: 0:0;325:70:0:40f880e4-b328-4380-9703-47856390a1e0
+Only 'private' parameters to stonith-fence_ipmilan-525400bb150b_start_0 on messaging-0 changed: 0:0;324:70:0:40f880e4-b328-4380-9703-47856390a1e0
+Only 'private' parameters to stonith-fence_ipmilan-525400d5382b_monitor_60000 on database-2 changed: 0:0;320:1374:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269
+Only 'private' parameters to stonith-fence_ipmilan-525400d5382b_start_0 on database-2 changed: 0:0;319:1374:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269
+Only 'private' parameters to stonith-fence_ipmilan-525400dc0f81_monitor_60000 on database-1 changed: 0:0;331:1380:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269
+Only 'private' parameters to stonith-fence_ipmilan-525400dc0f81_start_0 on database-1 changed: 0:0;330:1380:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269
+Only 'private' parameters to stonith-fence_ipmilan-525400e10267_monitor_60000 on messaging-1 changed: 0:0;326:1318:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269
+Only 'private' parameters to stonith-fence_ipmilan-525400e10267_start_0 on messaging-1 changed: 0:0;320:1317:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269
+Only 'private' parameters to stonith-fence_ipmilan-525400ffc780_monitor_60000 on messaging-2 changed: 0:0;323:50:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269
+Only 'private' parameters to stonith-fence_ipmilan-525400ffc780_start_0 on messaging-2 changed: 0:0;321:49:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269
+Using the original execution date of: 2020-11-17 07:03:16Z
+galera:0 promotion score on galera-bundle-0: 100
+galera:1 promotion score on galera-bundle-1: 100
+galera:2 promotion score on galera-bundle-2: 100
+ovndb_servers:0 promotion score on ovn-dbs-bundle-0: 10
+ovndb_servers:1 promotion score on ovn-dbs-bundle-1: 5
+ovndb_servers:2 promotion score on ovn-dbs-bundle-2: 5
+pcmk__bundle_allocate: galera-bundle allocation score on compute-0: -INFINITY
+pcmk__bundle_allocate: galera-bundle allocation score on compute-1: -INFINITY
+pcmk__bundle_allocate: galera-bundle allocation score on controller-0: -INFINITY
+pcmk__bundle_allocate: galera-bundle allocation score on controller-1: -INFINITY
+pcmk__bundle_allocate: galera-bundle allocation score on controller-2: -INFINITY
+pcmk__bundle_allocate: galera-bundle allocation score on database-0: 0
+pcmk__bundle_allocate: galera-bundle allocation score on database-1: 0
+pcmk__bundle_allocate: galera-bundle allocation score on database-2: 0
+pcmk__bundle_allocate: galera-bundle allocation score on messaging-0: -INFINITY
+pcmk__bundle_allocate: galera-bundle allocation score on messaging-1: -INFINITY
+pcmk__bundle_allocate: galera-bundle allocation score on messaging-2: -INFINITY
+pcmk__bundle_allocate: galera-bundle-0 allocation score on compute-0: -INFINITY
+pcmk__bundle_allocate: galera-bundle-0 allocation score on compute-1: -INFINITY
+pcmk__bundle_allocate: galera-bundle-0 allocation score on controller-0: 0
+pcmk__bundle_allocate: galera-bundle-0 allocation score on controller-1: 0
+pcmk__bundle_allocate: galera-bundle-0 allocation score on controller-2: 0
+pcmk__bundle_allocate: galera-bundle-0 allocation score on database-0: 0
+pcmk__bundle_allocate: galera-bundle-0 allocation score on database-1: 0
+pcmk__bundle_allocate: galera-bundle-0 allocation score on database-2: 0
+pcmk__bundle_allocate: galera-bundle-0 allocation score on messaging-0: 0
+pcmk__bundle_allocate: galera-bundle-0 allocation score on messaging-1: 0
+pcmk__bundle_allocate: galera-bundle-0 allocation score on messaging-2: 0
+pcmk__bundle_allocate: galera-bundle-1 allocation score on compute-0: -INFINITY
+pcmk__bundle_allocate: galera-bundle-1 allocation score on compute-1: -INFINITY
+pcmk__bundle_allocate: galera-bundle-1 allocation score on controller-0: 0
+pcmk__bundle_allocate: galera-bundle-1 allocation score on controller-1: 0
+pcmk__bundle_allocate: galera-bundle-1 allocation score on controller-2: 0
+pcmk__bundle_allocate: galera-bundle-1 allocation score on database-0: 0
+pcmk__bundle_allocate: galera-bundle-1 allocation score on database-1: 0
+pcmk__bundle_allocate: galera-bundle-1 allocation score on database-2: 0
+pcmk__bundle_allocate: galera-bundle-1 allocation score on messaging-0: 0
+pcmk__bundle_allocate: galera-bundle-1 allocation score on messaging-1: 0
+pcmk__bundle_allocate: galera-bundle-1 allocation score on messaging-2: 0
+pcmk__bundle_allocate: galera-bundle-2 allocation score on compute-0: -INFINITY
+pcmk__bundle_allocate: galera-bundle-2 allocation score on compute-1: -INFINITY
+pcmk__bundle_allocate: galera-bundle-2 allocation score on controller-0: 0
+pcmk__bundle_allocate: galera-bundle-2 allocation score on controller-1: 0
+pcmk__bundle_allocate: galera-bundle-2 allocation score on controller-2: 0
+pcmk__bundle_allocate: galera-bundle-2 allocation score on database-0: 0
+pcmk__bundle_allocate: galera-bundle-2 allocation score on database-1: 0
+pcmk__bundle_allocate: galera-bundle-2 allocation score on database-2: 0
+pcmk__bundle_allocate: galera-bundle-2 allocation score on messaging-0: 0
+pcmk__bundle_allocate: galera-bundle-2 allocation score on messaging-1: 0
+pcmk__bundle_allocate: galera-bundle-2 allocation score on messaging-2: 0
+pcmk__bundle_allocate: galera-bundle-master allocation score on compute-0: 0
+pcmk__bundle_allocate: galera-bundle-master allocation score on compute-1: 0
+pcmk__bundle_allocate: galera-bundle-master allocation score on controller-0: 0
+pcmk__bundle_allocate: galera-bundle-master allocation score on controller-1: 0
+pcmk__bundle_allocate: galera-bundle-master allocation score on controller-2: 0
+pcmk__bundle_allocate: galera-bundle-master allocation score on database-0: 0
+pcmk__bundle_allocate: galera-bundle-master allocation score on database-1: 0
+pcmk__bundle_allocate: galera-bundle-master allocation score on database-2: 0
+pcmk__bundle_allocate: galera-bundle-master allocation score on galera-bundle-0: -INFINITY
+pcmk__bundle_allocate: galera-bundle-master allocation score on galera-bundle-1: -INFINITY
+pcmk__bundle_allocate: galera-bundle-master allocation score on galera-bundle-2: -INFINITY
+pcmk__bundle_allocate: galera-bundle-master allocation score on messaging-0: 0
+pcmk__bundle_allocate: galera-bundle-master allocation score on messaging-1: 0
+pcmk__bundle_allocate: galera-bundle-master allocation score on messaging-2: 0
+pcmk__bundle_allocate: galera-bundle-podman-0 allocation score on compute-0: -INFINITY
+pcmk__bundle_allocate: galera-bundle-podman-0 allocation score on compute-1: -INFINITY
+pcmk__bundle_allocate: galera-bundle-podman-0 allocation score on controller-0: -INFINITY
+pcmk__bundle_allocate: galera-bundle-podman-0 allocation score on controller-1: -INFINITY
+pcmk__bundle_allocate: galera-bundle-podman-0 allocation score on controller-2: -INFINITY
+pcmk__bundle_allocate: galera-bundle-podman-0 allocation score on database-0: 0
+pcmk__bundle_allocate: galera-bundle-podman-0 allocation score on database-1: 0
+pcmk__bundle_allocate: galera-bundle-podman-0 allocation score on database-2: 0
+pcmk__bundle_allocate: galera-bundle-podman-0 allocation score on messaging-0: -INFINITY
+pcmk__bundle_allocate: galera-bundle-podman-0 allocation score on messaging-1: -INFINITY
+pcmk__bundle_allocate: galera-bundle-podman-0 allocation score on messaging-2: -INFINITY
+pcmk__bundle_allocate: galera-bundle-podman-1 allocation score on compute-0: -INFINITY
+pcmk__bundle_allocate: galera-bundle-podman-1 allocation score on compute-1: -INFINITY
+pcmk__bundle_allocate: galera-bundle-podman-1 allocation score on controller-0: -INFINITY
+pcmk__bundle_allocate: galera-bundle-podman-1 allocation score on controller-1: -INFINITY
+pcmk__bundle_allocate: galera-bundle-podman-1 allocation score on controller-2: -INFINITY
+pcmk__bundle_allocate: galera-bundle-podman-1 allocation score on database-0: 0
+pcmk__bundle_allocate: galera-bundle-podman-1 allocation score on database-1: 0
+pcmk__bundle_allocate: galera-bundle-podman-1 allocation score on database-2: 0
+pcmk__bundle_allocate: galera-bundle-podman-1 allocation score on messaging-0: -INFINITY
+pcmk__bundle_allocate: galera-bundle-podman-1 allocation score on messaging-1: -INFINITY
+pcmk__bundle_allocate: galera-bundle-podman-1 allocation score on messaging-2: -INFINITY
+pcmk__bundle_allocate: galera-bundle-podman-2 allocation score on compute-0: -INFINITY
+pcmk__bundle_allocate: galera-bundle-podman-2 allocation score on compute-1: -INFINITY
+pcmk__bundle_allocate: galera-bundle-podman-2 allocation score on controller-0: -INFINITY
+pcmk__bundle_allocate: galera-bundle-podman-2 allocation score on controller-1: -INFINITY
+pcmk__bundle_allocate: galera-bundle-podman-2 allocation score on controller-2: -INFINITY
+pcmk__bundle_allocate: galera-bundle-podman-2 allocation score on database-0: 0
+pcmk__bundle_allocate: galera-bundle-podman-2 allocation score on database-1: 0
+pcmk__bundle_allocate: galera-bundle-podman-2 allocation score on database-2: 0
+pcmk__bundle_allocate: galera-bundle-podman-2 allocation score on messaging-0: -INFINITY
+pcmk__bundle_allocate: galera-bundle-podman-2 allocation score on messaging-1: -INFINITY
+pcmk__bundle_allocate: galera-bundle-podman-2 allocation score on messaging-2: -INFINITY
+pcmk__bundle_allocate: galera:0 allocation score on galera-bundle-0: 501
+pcmk__bundle_allocate: galera:1 allocation score on galera-bundle-1: 501
+pcmk__bundle_allocate: galera:2 allocation score on galera-bundle-2: 501
+pcmk__bundle_allocate: haproxy-bundle allocation score on compute-0: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle allocation score on compute-0: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle allocation score on compute-0: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle allocation score on compute-0: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle allocation score on compute-0: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle allocation score on compute-0: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle allocation score on compute-0: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle allocation score on compute-1: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle allocation score on compute-1: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle allocation score on compute-1: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle allocation score on compute-1: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle allocation score on compute-1: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle allocation score on compute-1: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle allocation score on compute-1: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle allocation score on controller-0: 0
+pcmk__bundle_allocate: haproxy-bundle allocation score on controller-0: 0
+pcmk__bundle_allocate: haproxy-bundle allocation score on controller-0: 0
+pcmk__bundle_allocate: haproxy-bundle allocation score on controller-0: 0
+pcmk__bundle_allocate: haproxy-bundle allocation score on controller-0: 0
+pcmk__bundle_allocate: haproxy-bundle allocation score on controller-0: 0
+pcmk__bundle_allocate: haproxy-bundle allocation score on controller-0: 0
+pcmk__bundle_allocate: haproxy-bundle allocation score on controller-1: 0
+pcmk__bundle_allocate: haproxy-bundle allocation score on controller-1: 0
+pcmk__bundle_allocate: haproxy-bundle allocation score on controller-1: 0
+pcmk__bundle_allocate: haproxy-bundle allocation score on controller-1: 0
+pcmk__bundle_allocate: haproxy-bundle allocation score on controller-1: 0
+pcmk__bundle_allocate: haproxy-bundle allocation score on controller-1: 0
+pcmk__bundle_allocate: haproxy-bundle allocation score on controller-1: 0
+pcmk__bundle_allocate: haproxy-bundle allocation score on controller-2: 0
+pcmk__bundle_allocate: haproxy-bundle allocation score on controller-2: 0
+pcmk__bundle_allocate: haproxy-bundle allocation score on controller-2: 0
+pcmk__bundle_allocate: haproxy-bundle allocation score on controller-2: 0
+pcmk__bundle_allocate: haproxy-bundle allocation score on controller-2: 0
+pcmk__bundle_allocate: haproxy-bundle allocation score on controller-2: 0
+pcmk__bundle_allocate: haproxy-bundle allocation score on controller-2: 0
+pcmk__bundle_allocate: haproxy-bundle allocation score on database-0: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle allocation score on database-0: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle allocation score on database-0: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle allocation score on database-0: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle allocation score on database-0: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle allocation score on database-0: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle allocation score on database-0: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle allocation score on database-1: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle allocation score on database-1: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle allocation score on database-1: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle allocation score on database-1: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle allocation score on database-1: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle allocation score on database-1: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle allocation score on database-1: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle allocation score on database-2: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle allocation score on database-2: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle allocation score on database-2: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle allocation score on database-2: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle allocation score on database-2: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle allocation score on database-2: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle allocation score on database-2: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle allocation score on messaging-0: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle allocation score on messaging-0: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle allocation score on messaging-0: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle allocation score on messaging-0: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle allocation score on messaging-0: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle allocation score on messaging-0: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle allocation score on messaging-0: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle allocation score on messaging-1: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle allocation score on messaging-1: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle allocation score on messaging-1: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle allocation score on messaging-1: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle allocation score on messaging-1: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle allocation score on messaging-1: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle allocation score on messaging-1: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle allocation score on messaging-2: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle allocation score on messaging-2: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle allocation score on messaging-2: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle allocation score on messaging-2: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle allocation score on messaging-2: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle allocation score on messaging-2: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle allocation score on messaging-2: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-0 allocation score on compute-0: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-0 allocation score on compute-0: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-0 allocation score on compute-0: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-0 allocation score on compute-0: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-0 allocation score on compute-0: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-0 allocation score on compute-0: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-0 allocation score on compute-0: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-0 allocation score on compute-1: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-0 allocation score on compute-1: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-0 allocation score on compute-1: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-0 allocation score on compute-1: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-0 allocation score on compute-1: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-0 allocation score on compute-1: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-0 allocation score on compute-1: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-0 allocation score on controller-0: 0
+pcmk__bundle_allocate: haproxy-bundle-podman-0 allocation score on controller-0: INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-0 allocation score on controller-0: INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-0 allocation score on controller-0: INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-0 allocation score on controller-0: INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-0 allocation score on controller-0: INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-0 allocation score on controller-0: INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-0 allocation score on controller-1: 0
+pcmk__bundle_allocate: haproxy-bundle-podman-0 allocation score on controller-1: INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-0 allocation score on controller-1: INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-0 allocation score on controller-1: INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-0 allocation score on controller-1: INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-0 allocation score on controller-1: INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-0 allocation score on controller-1: INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-0 allocation score on controller-2: 0
+pcmk__bundle_allocate: haproxy-bundle-podman-0 allocation score on controller-2: INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-0 allocation score on controller-2: INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-0 allocation score on controller-2: INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-0 allocation score on controller-2: INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-0 allocation score on controller-2: INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-0 allocation score on controller-2: INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-0 allocation score on database-0: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-0 allocation score on database-0: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-0 allocation score on database-0: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-0 allocation score on database-0: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-0 allocation score on database-0: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-0 allocation score on database-0: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-0 allocation score on database-0: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-0 allocation score on database-1: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-0 allocation score on database-1: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-0 allocation score on database-1: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-0 allocation score on database-1: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-0 allocation score on database-1: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-0 allocation score on database-1: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-0 allocation score on database-1: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-0 allocation score on database-2: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-0 allocation score on database-2: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-0 allocation score on database-2: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-0 allocation score on database-2: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-0 allocation score on database-2: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-0 allocation score on database-2: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-0 allocation score on database-2: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-0 allocation score on messaging-0: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-0 allocation score on messaging-0: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-0 allocation score on messaging-0: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-0 allocation score on messaging-0: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-0 allocation score on messaging-0: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-0 allocation score on messaging-0: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-0 allocation score on messaging-0: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-0 allocation score on messaging-1: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-0 allocation score on messaging-1: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-0 allocation score on messaging-1: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-0 allocation score on messaging-1: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-0 allocation score on messaging-1: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-0 allocation score on messaging-1: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-0 allocation score on messaging-1: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-0 allocation score on messaging-2: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-0 allocation score on messaging-2: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-0 allocation score on messaging-2: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-0 allocation score on messaging-2: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-0 allocation score on messaging-2: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-0 allocation score on messaging-2: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-0 allocation score on messaging-2: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-1 allocation score on compute-0: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-1 allocation score on compute-0: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-1 allocation score on compute-0: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-1 allocation score on compute-0: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-1 allocation score on compute-0: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-1 allocation score on compute-0: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-1 allocation score on compute-0: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-1 allocation score on compute-1: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-1 allocation score on compute-1: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-1 allocation score on compute-1: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-1 allocation score on compute-1: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-1 allocation score on compute-1: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-1 allocation score on compute-1: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-1 allocation score on compute-1: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-1 allocation score on controller-0: 0
+pcmk__bundle_allocate: haproxy-bundle-podman-1 allocation score on controller-0: INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-1 allocation score on controller-0: INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-1 allocation score on controller-0: INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-1 allocation score on controller-0: INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-1 allocation score on controller-0: INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-1 allocation score on controller-0: INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-1 allocation score on controller-1: 0
+pcmk__bundle_allocate: haproxy-bundle-podman-1 allocation score on controller-1: INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-1 allocation score on controller-1: INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-1 allocation score on controller-1: INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-1 allocation score on controller-1: INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-1 allocation score on controller-1: INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-1 allocation score on controller-1: INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-1 allocation score on controller-2: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-1 allocation score on controller-2: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-1 allocation score on controller-2: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-1 allocation score on controller-2: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-1 allocation score on controller-2: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-1 allocation score on controller-2: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-1 allocation score on controller-2: 0
+pcmk__bundle_allocate: haproxy-bundle-podman-1 allocation score on database-0: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-1 allocation score on database-0: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-1 allocation score on database-0: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-1 allocation score on database-0: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-1 allocation score on database-0: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-1 allocation score on database-0: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-1 allocation score on database-0: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-1 allocation score on database-1: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-1 allocation score on database-1: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-1 allocation score on database-1: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-1 allocation score on database-1: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-1 allocation score on database-1: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-1 allocation score on database-1: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-1 allocation score on database-1: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-1 allocation score on database-2: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-1 allocation score on database-2: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-1 allocation score on database-2: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-1 allocation score on database-2: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-1 allocation score on database-2: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-1 allocation score on database-2: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-1 allocation score on database-2: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-1 allocation score on messaging-0: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-1 allocation score on messaging-0: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-1 allocation score on messaging-0: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-1 allocation score on messaging-0: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-1 allocation score on messaging-0: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-1 allocation score on messaging-0: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-1 allocation score on messaging-0: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-1 allocation score on messaging-1: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-1 allocation score on messaging-1: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-1 allocation score on messaging-1: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-1 allocation score on messaging-1: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-1 allocation score on messaging-1: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-1 allocation score on messaging-1: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-1 allocation score on messaging-1: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-1 allocation score on messaging-2: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-1 allocation score on messaging-2: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-1 allocation score on messaging-2: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-1 allocation score on messaging-2: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-1 allocation score on messaging-2: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-1 allocation score on messaging-2: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-1 allocation score on messaging-2: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-2 allocation score on compute-0: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-2 allocation score on compute-0: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-2 allocation score on compute-0: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-2 allocation score on compute-0: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-2 allocation score on compute-0: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-2 allocation score on compute-0: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-2 allocation score on compute-0: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-2 allocation score on compute-1: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-2 allocation score on compute-1: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-2 allocation score on compute-1: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-2 allocation score on compute-1: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-2 allocation score on compute-1: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-2 allocation score on compute-1: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-2 allocation score on compute-1: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-2 allocation score on controller-0: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-2 allocation score on controller-0: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-2 allocation score on controller-0: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-2 allocation score on controller-0: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-2 allocation score on controller-0: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-2 allocation score on controller-0: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-2 allocation score on controller-0: 0
+pcmk__bundle_allocate: haproxy-bundle-podman-2 allocation score on controller-1: 0
+pcmk__bundle_allocate: haproxy-bundle-podman-2 allocation score on controller-1: INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-2 allocation score on controller-1: INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-2 allocation score on controller-1: INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-2 allocation score on controller-1: INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-2 allocation score on controller-1: INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-2 allocation score on controller-1: INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-2 allocation score on controller-2: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-2 allocation score on controller-2: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-2 allocation score on controller-2: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-2 allocation score on controller-2: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-2 allocation score on controller-2: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-2 allocation score on controller-2: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-2 allocation score on controller-2: 0
+pcmk__bundle_allocate: haproxy-bundle-podman-2 allocation score on database-0: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-2 allocation score on database-0: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-2 allocation score on database-0: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-2 allocation score on database-0: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-2 allocation score on database-0: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-2 allocation score on database-0: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-2 allocation score on database-0: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-2 allocation score on database-1: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-2 allocation score on database-1: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-2 allocation score on database-1: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-2 allocation score on database-1: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-2 allocation score on database-1: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-2 allocation score on database-1: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-2 allocation score on database-1: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-2 allocation score on database-2: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-2 allocation score on database-2: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-2 allocation score on database-2: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-2 allocation score on database-2: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-2 allocation score on database-2: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-2 allocation score on database-2: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-2 allocation score on database-2: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-2 allocation score on messaging-0: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-2 allocation score on messaging-0: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-2 allocation score on messaging-0: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-2 allocation score on messaging-0: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-2 allocation score on messaging-0: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-2 allocation score on messaging-0: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-2 allocation score on messaging-0: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-2 allocation score on messaging-1: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-2 allocation score on messaging-1: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-2 allocation score on messaging-1: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-2 allocation score on messaging-1: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-2 allocation score on messaging-1: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-2 allocation score on messaging-1: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-2 allocation score on messaging-1: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-2 allocation score on messaging-2: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-2 allocation score on messaging-2: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-2 allocation score on messaging-2: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-2 allocation score on messaging-2: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-2 allocation score on messaging-2: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-2 allocation score on messaging-2: -INFINITY
+pcmk__bundle_allocate: haproxy-bundle-podman-2 allocation score on messaging-2: -INFINITY
+pcmk__bundle_allocate: openstack-cinder-volume allocation score on compute-0: -INFINITY
+pcmk__bundle_allocate: openstack-cinder-volume allocation score on compute-1: -INFINITY
+pcmk__bundle_allocate: openstack-cinder-volume allocation score on controller-0: 0
+pcmk__bundle_allocate: openstack-cinder-volume allocation score on controller-1: 0
+pcmk__bundle_allocate: openstack-cinder-volume allocation score on controller-2: 0
+pcmk__bundle_allocate: openstack-cinder-volume allocation score on database-0: -INFINITY
+pcmk__bundle_allocate: openstack-cinder-volume allocation score on database-1: -INFINITY
+pcmk__bundle_allocate: openstack-cinder-volume allocation score on database-2: -INFINITY
+pcmk__bundle_allocate: openstack-cinder-volume allocation score on messaging-0: -INFINITY
+pcmk__bundle_allocate: openstack-cinder-volume allocation score on messaging-1: -INFINITY
+pcmk__bundle_allocate: openstack-cinder-volume allocation score on messaging-2: -INFINITY
+pcmk__bundle_allocate: openstack-cinder-volume-podman-0 allocation score on compute-0: -INFINITY
+pcmk__bundle_allocate: openstack-cinder-volume-podman-0 allocation score on compute-1: -INFINITY
+pcmk__bundle_allocate: openstack-cinder-volume-podman-0 allocation score on controller-0: 0
+pcmk__bundle_allocate: openstack-cinder-volume-podman-0 allocation score on controller-1: 0
+pcmk__bundle_allocate: openstack-cinder-volume-podman-0 allocation score on controller-2: 0
+pcmk__bundle_allocate: openstack-cinder-volume-podman-0 allocation score on database-0: -INFINITY
+pcmk__bundle_allocate: openstack-cinder-volume-podman-0 allocation score on database-1: -INFINITY
+pcmk__bundle_allocate: openstack-cinder-volume-podman-0 allocation score on database-2: -INFINITY
+pcmk__bundle_allocate: openstack-cinder-volume-podman-0 allocation score on messaging-0: -INFINITY
+pcmk__bundle_allocate: openstack-cinder-volume-podman-0 allocation score on messaging-1: -INFINITY
+pcmk__bundle_allocate: openstack-cinder-volume-podman-0 allocation score on messaging-2: -INFINITY
+pcmk__bundle_allocate: ovn-dbs-bundle allocation score on compute-0: -INFINITY
+pcmk__bundle_allocate: ovn-dbs-bundle allocation score on compute-0: -INFINITY
+pcmk__bundle_allocate: ovn-dbs-bundle allocation score on compute-1: -INFINITY
+pcmk__bundle_allocate: ovn-dbs-bundle allocation score on compute-1: -INFINITY
+pcmk__bundle_allocate: ovn-dbs-bundle allocation score on controller-0: 0
+pcmk__bundle_allocate: ovn-dbs-bundle allocation score on controller-0: 0
+pcmk__bundle_allocate: ovn-dbs-bundle allocation score on controller-1: 0
+pcmk__bundle_allocate: ovn-dbs-bundle allocation score on controller-1: 0
+pcmk__bundle_allocate: ovn-dbs-bundle allocation score on controller-2: 0
+pcmk__bundle_allocate: ovn-dbs-bundle allocation score on controller-2: 0
+pcmk__bundle_allocate: ovn-dbs-bundle allocation score on database-0: -INFINITY
+pcmk__bundle_allocate: ovn-dbs-bundle allocation score on database-0: -INFINITY
+pcmk__bundle_allocate: ovn-dbs-bundle allocation score on database-1: -INFINITY
+pcmk__bundle_allocate: ovn-dbs-bundle allocation score on database-1: -INFINITY
+pcmk__bundle_allocate: ovn-dbs-bundle allocation score on database-2: -INFINITY
+pcmk__bundle_allocate: ovn-dbs-bundle allocation score on database-2: -INFINITY
+pcmk__bundle_allocate: ovn-dbs-bundle allocation score on messaging-0: -INFINITY
+pcmk__bundle_allocate: ovn-dbs-bundle allocation score on messaging-0: -INFINITY
+pcmk__bundle_allocate: ovn-dbs-bundle allocation score on messaging-1: -INFINITY
+pcmk__bundle_allocate: ovn-dbs-bundle allocation score on messaging-1: -INFINITY
+pcmk__bundle_allocate: ovn-dbs-bundle allocation score on messaging-2: -INFINITY
+pcmk__bundle_allocate: ovn-dbs-bundle allocation score on messaging-2: -INFINITY
+pcmk__bundle_allocate: ovn-dbs-bundle-0 allocation score on compute-0: -INFINITY
+pcmk__bundle_allocate: ovn-dbs-bundle-0 allocation score on compute-0: -INFINITY
+pcmk__bundle_allocate: ovn-dbs-bundle-0 allocation score on compute-1: -INFINITY
+pcmk__bundle_allocate: ovn-dbs-bundle-0 allocation score on compute-1: -INFINITY
+pcmk__bundle_allocate: ovn-dbs-bundle-0 allocation score on controller-0: 0
+pcmk__bundle_allocate: ovn-dbs-bundle-0 allocation score on controller-0: 0
+pcmk__bundle_allocate: ovn-dbs-bundle-0 allocation score on controller-1: 0
+pcmk__bundle_allocate: ovn-dbs-bundle-0 allocation score on controller-1: 0
+pcmk__bundle_allocate: ovn-dbs-bundle-0 allocation score on controller-2: 0
+pcmk__bundle_allocate: ovn-dbs-bundle-0 allocation score on controller-2: 10000
+pcmk__bundle_allocate: ovn-dbs-bundle-0 allocation score on database-0: 0
+pcmk__bundle_allocate: ovn-dbs-bundle-0 allocation score on database-0: 0
+pcmk__bundle_allocate: ovn-dbs-bundle-0 allocation score on database-1: 0
+pcmk__bundle_allocate: ovn-dbs-bundle-0 allocation score on database-1: 0
+pcmk__bundle_allocate: ovn-dbs-bundle-0 allocation score on database-2: 0
+pcmk__bundle_allocate: ovn-dbs-bundle-0 allocation score on database-2: 0
+pcmk__bundle_allocate: ovn-dbs-bundle-0 allocation score on messaging-0: 0
+pcmk__bundle_allocate: ovn-dbs-bundle-0 allocation score on messaging-0: 0
+pcmk__bundle_allocate: ovn-dbs-bundle-0 allocation score on messaging-1: 0
+pcmk__bundle_allocate: ovn-dbs-bundle-0 allocation score on messaging-1: 0
+pcmk__bundle_allocate: ovn-dbs-bundle-0 allocation score on messaging-2: 0
+pcmk__bundle_allocate: ovn-dbs-bundle-0 allocation score on messaging-2: 0
+pcmk__bundle_allocate: ovn-dbs-bundle-1 allocation score on compute-0: -INFINITY
+pcmk__bundle_allocate: ovn-dbs-bundle-1 allocation score on compute-0: -INFINITY
+pcmk__bundle_allocate: ovn-dbs-bundle-1 allocation score on compute-1: -INFINITY
+pcmk__bundle_allocate: ovn-dbs-bundle-1 allocation score on compute-1: -INFINITY
+pcmk__bundle_allocate: ovn-dbs-bundle-1 allocation score on controller-0: 0
+pcmk__bundle_allocate: ovn-dbs-bundle-1 allocation score on controller-0: 10000
+pcmk__bundle_allocate: ovn-dbs-bundle-1 allocation score on controller-1: 0
+pcmk__bundle_allocate: ovn-dbs-bundle-1 allocation score on controller-1: 0
+pcmk__bundle_allocate: ovn-dbs-bundle-1 allocation score on controller-2: 0
+pcmk__bundle_allocate: ovn-dbs-bundle-1 allocation score on controller-2: 0
+pcmk__bundle_allocate: ovn-dbs-bundle-1 allocation score on database-0: 0
+pcmk__bundle_allocate: ovn-dbs-bundle-1 allocation score on database-0: 0
+pcmk__bundle_allocate: ovn-dbs-bundle-1 allocation score on database-1: 0
+pcmk__bundle_allocate: ovn-dbs-bundle-1 allocation score on database-1: 0
+pcmk__bundle_allocate: ovn-dbs-bundle-1 allocation score on database-2: 0
+pcmk__bundle_allocate: ovn-dbs-bundle-1 allocation score on database-2: 0
+pcmk__bundle_allocate: ovn-dbs-bundle-1 allocation score on messaging-0: 0
+pcmk__bundle_allocate: ovn-dbs-bundle-1 allocation score on messaging-0: 0
+pcmk__bundle_allocate: ovn-dbs-bundle-1 allocation score on messaging-1: 0
+pcmk__bundle_allocate: ovn-dbs-bundle-1 allocation score on messaging-1: 0
+pcmk__bundle_allocate: ovn-dbs-bundle-1 allocation score on messaging-2: 0
+pcmk__bundle_allocate: ovn-dbs-bundle-1 allocation score on messaging-2: 0
+pcmk__bundle_allocate: ovn-dbs-bundle-2 allocation score on compute-0: -INFINITY
+pcmk__bundle_allocate: ovn-dbs-bundle-2 allocation score on compute-0: -INFINITY
+pcmk__bundle_allocate: ovn-dbs-bundle-2 allocation score on compute-1: -INFINITY
+pcmk__bundle_allocate: ovn-dbs-bundle-2 allocation score on compute-1: -INFINITY
+pcmk__bundle_allocate: ovn-dbs-bundle-2 allocation score on controller-0: 0
+pcmk__bundle_allocate: ovn-dbs-bundle-2 allocation score on controller-0: 0
+pcmk__bundle_allocate: ovn-dbs-bundle-2 allocation score on controller-1: 0
+pcmk__bundle_allocate: ovn-dbs-bundle-2 allocation score on controller-1: 10000
+pcmk__bundle_allocate: ovn-dbs-bundle-2 allocation score on controller-2: 0
+pcmk__bundle_allocate: ovn-dbs-bundle-2 allocation score on controller-2: 0
+pcmk__bundle_allocate: ovn-dbs-bundle-2 allocation score on database-0: 0
+pcmk__bundle_allocate: ovn-dbs-bundle-2 allocation score on database-0: 0
+pcmk__bundle_allocate: ovn-dbs-bundle-2 allocation score on database-1: 0
+pcmk__bundle_allocate: ovn-dbs-bundle-2 allocation score on database-1: 0
+pcmk__bundle_allocate: ovn-dbs-bundle-2 allocation score on database-2: 0
+pcmk__bundle_allocate: ovn-dbs-bundle-2 allocation score on database-2: 0
+pcmk__bundle_allocate: ovn-dbs-bundle-2 allocation score on messaging-0: 0
+pcmk__bundle_allocate: ovn-dbs-bundle-2 allocation score on messaging-0: 0
+pcmk__bundle_allocate: ovn-dbs-bundle-2 allocation score on messaging-1: 0
+pcmk__bundle_allocate: ovn-dbs-bundle-2 allocation score on messaging-1: 0
+pcmk__bundle_allocate: ovn-dbs-bundle-2 allocation score on messaging-2: 0
+pcmk__bundle_allocate: ovn-dbs-bundle-2 allocation score on messaging-2: 0
+pcmk__bundle_allocate: ovn-dbs-bundle-master allocation score on compute-0: -INFINITY
+pcmk__bundle_allocate: ovn-dbs-bundle-master allocation score on compute-0: 0
+pcmk__bundle_allocate: ovn-dbs-bundle-master allocation score on compute-1: -INFINITY
+pcmk__bundle_allocate: ovn-dbs-bundle-master allocation score on compute-1: 0
+pcmk__bundle_allocate: ovn-dbs-bundle-master allocation score on controller-0: -INFINITY
+pcmk__bundle_allocate: ovn-dbs-bundle-master allocation score on controller-0: 0
+pcmk__bundle_allocate: ovn-dbs-bundle-master allocation score on controller-1: -INFINITY
+pcmk__bundle_allocate: ovn-dbs-bundle-master allocation score on controller-1: 0
+pcmk__bundle_allocate: ovn-dbs-bundle-master allocation score on controller-2: -INFINITY
+pcmk__bundle_allocate: ovn-dbs-bundle-master allocation score on controller-2: 0
+pcmk__bundle_allocate: ovn-dbs-bundle-master allocation score on database-0: -INFINITY
+pcmk__bundle_allocate: ovn-dbs-bundle-master allocation score on database-0: 0
+pcmk__bundle_allocate: ovn-dbs-bundle-master allocation score on database-1: -INFINITY
+pcmk__bundle_allocate: ovn-dbs-bundle-master allocation score on database-1: 0
+pcmk__bundle_allocate: ovn-dbs-bundle-master allocation score on database-2: -INFINITY
+pcmk__bundle_allocate: ovn-dbs-bundle-master allocation score on database-2: 0
+pcmk__bundle_allocate: ovn-dbs-bundle-master allocation score on messaging-0: -INFINITY
+pcmk__bundle_allocate: ovn-dbs-bundle-master allocation score on messaging-0: 0
+pcmk__bundle_allocate: ovn-dbs-bundle-master allocation score on messaging-1: -INFINITY
+pcmk__bundle_allocate: ovn-dbs-bundle-master allocation score on messaging-1: 0
+pcmk__bundle_allocate: ovn-dbs-bundle-master allocation score on messaging-2: -INFINITY
+pcmk__bundle_allocate: ovn-dbs-bundle-master allocation score on messaging-2: 0
+pcmk__bundle_allocate: ovn-dbs-bundle-master allocation score on ovn-dbs-bundle-0: -INFINITY
+pcmk__bundle_allocate: ovn-dbs-bundle-master allocation score on ovn-dbs-bundle-0: 10
+pcmk__bundle_allocate: ovn-dbs-bundle-master allocation score on ovn-dbs-bundle-1: -INFINITY
+pcmk__bundle_allocate: ovn-dbs-bundle-master allocation score on ovn-dbs-bundle-1: 5
+pcmk__bundle_allocate: ovn-dbs-bundle-master allocation score on ovn-dbs-bundle-2: -INFINITY
+pcmk__bundle_allocate: ovn-dbs-bundle-master allocation score on ovn-dbs-bundle-2: 5
+pcmk__bundle_allocate: ovn-dbs-bundle-podman-0 allocation score on compute-0: -INFINITY
+pcmk__bundle_allocate: ovn-dbs-bundle-podman-0 allocation score on compute-0: -INFINITY
+pcmk__bundle_allocate: ovn-dbs-bundle-podman-0 allocation score on compute-1: -INFINITY
+pcmk__bundle_allocate: ovn-dbs-bundle-podman-0 allocation score on compute-1: -INFINITY
+pcmk__bundle_allocate: ovn-dbs-bundle-podman-0 allocation score on controller-0: 0
+pcmk__bundle_allocate: ovn-dbs-bundle-podman-0 allocation score on controller-0: 0
+pcmk__bundle_allocate: ovn-dbs-bundle-podman-0 allocation score on controller-1: 0
+pcmk__bundle_allocate: ovn-dbs-bundle-podman-0 allocation score on controller-1: 0
+pcmk__bundle_allocate: ovn-dbs-bundle-podman-0 allocation score on controller-2: 0
+pcmk__bundle_allocate: ovn-dbs-bundle-podman-0 allocation score on controller-2: INFINITY
+pcmk__bundle_allocate: ovn-dbs-bundle-podman-0 allocation score on database-0: -INFINITY
+pcmk__bundle_allocate: ovn-dbs-bundle-podman-0 allocation score on database-0: -INFINITY
+pcmk__bundle_allocate: ovn-dbs-bundle-podman-0 allocation score on database-1: -INFINITY
+pcmk__bundle_allocate: ovn-dbs-bundle-podman-0 allocation score on database-1: -INFINITY
+pcmk__bundle_allocate: ovn-dbs-bundle-podman-0 allocation score on database-2: -INFINITY
+pcmk__bundle_allocate: ovn-dbs-bundle-podman-0 allocation score on database-2: -INFINITY
+pcmk__bundle_allocate: ovn-dbs-bundle-podman-0 allocation score on messaging-0: -INFINITY
+pcmk__bundle_allocate: ovn-dbs-bundle-podman-0 allocation score on messaging-0: -INFINITY
+pcmk__bundle_allocate: ovn-dbs-bundle-podman-0 allocation score on messaging-1: -INFINITY
+pcmk__bundle_allocate: ovn-dbs-bundle-podman-0 allocation score on messaging-1: -INFINITY
+pcmk__bundle_allocate: ovn-dbs-bundle-podman-0 allocation score on messaging-2: -INFINITY
+pcmk__bundle_allocate: ovn-dbs-bundle-podman-0 allocation score on messaging-2: -INFINITY
+pcmk__bundle_allocate: ovn-dbs-bundle-podman-1 allocation score on compute-0: -INFINITY
+pcmk__bundle_allocate: ovn-dbs-bundle-podman-1 allocation score on compute-0: -INFINITY
+pcmk__bundle_allocate: ovn-dbs-bundle-podman-1 allocation score on compute-1: -INFINITY
+pcmk__bundle_allocate: ovn-dbs-bundle-podman-1 allocation score on compute-1: -INFINITY
+pcmk__bundle_allocate: ovn-dbs-bundle-podman-1 allocation score on controller-0: 0
+pcmk__bundle_allocate: ovn-dbs-bundle-podman-1 allocation score on controller-0: 0
+pcmk__bundle_allocate: ovn-dbs-bundle-podman-1 allocation score on controller-1: 0
+pcmk__bundle_allocate: ovn-dbs-bundle-podman-1 allocation score on controller-1: 0
+pcmk__bundle_allocate: ovn-dbs-bundle-podman-1 allocation score on controller-2: -INFINITY
+pcmk__bundle_allocate: ovn-dbs-bundle-podman-1 allocation score on controller-2: 0
+pcmk__bundle_allocate: ovn-dbs-bundle-podman-1 allocation score on database-0: -INFINITY
+pcmk__bundle_allocate: ovn-dbs-bundle-podman-1 allocation score on database-0: -INFINITY
+pcmk__bundle_allocate: ovn-dbs-bundle-podman-1 allocation score on database-1: -INFINITY
+pcmk__bundle_allocate: ovn-dbs-bundle-podman-1 allocation score on database-1: -INFINITY
+pcmk__bundle_allocate: ovn-dbs-bundle-podman-1 allocation score on database-2: -INFINITY
+pcmk__bundle_allocate: ovn-dbs-bundle-podman-1 allocation score on database-2: -INFINITY
+pcmk__bundle_allocate: ovn-dbs-bundle-podman-1 allocation score on messaging-0: -INFINITY
+pcmk__bundle_allocate: ovn-dbs-bundle-podman-1 allocation score on messaging-0: -INFINITY
+pcmk__bundle_allocate: ovn-dbs-bundle-podman-1 allocation score on messaging-1: -INFINITY
+pcmk__bundle_allocate: ovn-dbs-bundle-podman-1 allocation score on messaging-1: -INFINITY
+pcmk__bundle_allocate: ovn-dbs-bundle-podman-1 allocation score on messaging-2: -INFINITY
+pcmk__bundle_allocate: ovn-dbs-bundle-podman-1 allocation score on messaging-2: -INFINITY
+pcmk__bundle_allocate: ovn-dbs-bundle-podman-2 allocation score on compute-0: -INFINITY
+pcmk__bundle_allocate: ovn-dbs-bundle-podman-2 allocation score on compute-0: -INFINITY
+pcmk__bundle_allocate: ovn-dbs-bundle-podman-2 allocation score on compute-1: -INFINITY
+pcmk__bundle_allocate: ovn-dbs-bundle-podman-2 allocation score on compute-1: -INFINITY
+pcmk__bundle_allocate: ovn-dbs-bundle-podman-2 allocation score on controller-0: -INFINITY
+pcmk__bundle_allocate: ovn-dbs-bundle-podman-2 allocation score on controller-0: 0
+pcmk__bundle_allocate: ovn-dbs-bundle-podman-2 allocation score on controller-1: 0
+pcmk__bundle_allocate: ovn-dbs-bundle-podman-2 allocation score on controller-1: 0
+pcmk__bundle_allocate: ovn-dbs-bundle-podman-2 allocation score on controller-2: -INFINITY
+pcmk__bundle_allocate: ovn-dbs-bundle-podman-2 allocation score on controller-2: 0
+pcmk__bundle_allocate: ovn-dbs-bundle-podman-2 allocation score on database-0: -INFINITY
+pcmk__bundle_allocate: ovn-dbs-bundle-podman-2 allocation score on database-0: -INFINITY
+pcmk__bundle_allocate: ovn-dbs-bundle-podman-2 allocation score on database-1: -INFINITY
+pcmk__bundle_allocate: ovn-dbs-bundle-podman-2 allocation score on database-1: -INFINITY
+pcmk__bundle_allocate: ovn-dbs-bundle-podman-2 allocation score on database-2: -INFINITY
+pcmk__bundle_allocate: ovn-dbs-bundle-podman-2 allocation score on database-2: -INFINITY
+pcmk__bundle_allocate: ovn-dbs-bundle-podman-2 allocation score on messaging-0: -INFINITY
+pcmk__bundle_allocate: ovn-dbs-bundle-podman-2 allocation score on messaging-0: -INFINITY
+pcmk__bundle_allocate: ovn-dbs-bundle-podman-2 allocation score on messaging-1: -INFINITY
+pcmk__bundle_allocate: ovn-dbs-bundle-podman-2 allocation score on messaging-1: -INFINITY
+pcmk__bundle_allocate: ovn-dbs-bundle-podman-2 allocation score on messaging-2: -INFINITY
+pcmk__bundle_allocate: ovn-dbs-bundle-podman-2 allocation score on messaging-2: -INFINITY
+pcmk__bundle_allocate: ovndb_servers:0 allocation score on ovn-dbs-bundle-0: 501
+pcmk__bundle_allocate: ovndb_servers:0 allocation score on ovn-dbs-bundle-0: INFINITY
+pcmk__bundle_allocate: ovndb_servers:1 allocation score on ovn-dbs-bundle-1: 501
+pcmk__bundle_allocate: ovndb_servers:1 allocation score on ovn-dbs-bundle-1: INFINITY
+pcmk__bundle_allocate: ovndb_servers:2 allocation score on ovn-dbs-bundle-2: 501
+pcmk__bundle_allocate: ovndb_servers:2 allocation score on ovn-dbs-bundle-2: INFINITY
+pcmk__bundle_allocate: rabbitmq-bundle allocation score on compute-0: -INFINITY
+pcmk__bundle_allocate: rabbitmq-bundle allocation score on compute-1: -INFINITY
+pcmk__bundle_allocate: rabbitmq-bundle allocation score on controller-0: -INFINITY
+pcmk__bundle_allocate: rabbitmq-bundle allocation score on controller-1: -INFINITY
+pcmk__bundle_allocate: rabbitmq-bundle allocation score on controller-2: -INFINITY
+pcmk__bundle_allocate: rabbitmq-bundle allocation score on database-0: -INFINITY
+pcmk__bundle_allocate: rabbitmq-bundle allocation score on database-1: -INFINITY
+pcmk__bundle_allocate: rabbitmq-bundle allocation score on database-2: -INFINITY
+pcmk__bundle_allocate: rabbitmq-bundle allocation score on messaging-0: 0
+pcmk__bundle_allocate: rabbitmq-bundle allocation score on messaging-1: 0
+pcmk__bundle_allocate: rabbitmq-bundle allocation score on messaging-2: 0
+pcmk__bundle_allocate: rabbitmq-bundle-0 allocation score on compute-0: -INFINITY
+pcmk__bundle_allocate: rabbitmq-bundle-0 allocation score on compute-1: -INFINITY
+pcmk__bundle_allocate: rabbitmq-bundle-0 allocation score on controller-0: 0
+pcmk__bundle_allocate: rabbitmq-bundle-0 allocation score on controller-1: 0
+pcmk__bundle_allocate: rabbitmq-bundle-0 allocation score on controller-2: 0
+pcmk__bundle_allocate: rabbitmq-bundle-0 allocation score on database-0: 0
+pcmk__bundle_allocate: rabbitmq-bundle-0 allocation score on database-1: 0
+pcmk__bundle_allocate: rabbitmq-bundle-0 allocation score on database-2: 0
+pcmk__bundle_allocate: rabbitmq-bundle-0 allocation score on messaging-0: 0
+pcmk__bundle_allocate: rabbitmq-bundle-0 allocation score on messaging-1: 0
+pcmk__bundle_allocate: rabbitmq-bundle-0 allocation score on messaging-2: 0
+pcmk__bundle_allocate: rabbitmq-bundle-1 allocation score on compute-0: -INFINITY
+pcmk__bundle_allocate: rabbitmq-bundle-1 allocation score on compute-1: -INFINITY
+pcmk__bundle_allocate: rabbitmq-bundle-1 allocation score on controller-0: 0
+pcmk__bundle_allocate: rabbitmq-bundle-1 allocation score on controller-1: 0
+pcmk__bundle_allocate: rabbitmq-bundle-1 allocation score on controller-2: 0
+pcmk__bundle_allocate: rabbitmq-bundle-1 allocation score on database-0: 0
+pcmk__bundle_allocate: rabbitmq-bundle-1 allocation score on database-1: 0
+pcmk__bundle_allocate: rabbitmq-bundle-1 allocation score on database-2: 0
+pcmk__bundle_allocate: rabbitmq-bundle-1 allocation score on messaging-0: 0
+pcmk__bundle_allocate: rabbitmq-bundle-1 allocation score on messaging-1: 0
+pcmk__bundle_allocate: rabbitmq-bundle-1 allocation score on messaging-2: 0
+pcmk__bundle_allocate: rabbitmq-bundle-2 allocation score on compute-0: -INFINITY
+pcmk__bundle_allocate: rabbitmq-bundle-2 allocation score on compute-1: -INFINITY
+pcmk__bundle_allocate: rabbitmq-bundle-2 allocation score on controller-0: 0
+pcmk__bundle_allocate: rabbitmq-bundle-2 allocation score on controller-1: 0
+pcmk__bundle_allocate: rabbitmq-bundle-2 allocation score on controller-2: 0
+pcmk__bundle_allocate: rabbitmq-bundle-2 allocation score on database-0: 0
+pcmk__bundle_allocate: rabbitmq-bundle-2 allocation score on database-1: 0
+pcmk__bundle_allocate: rabbitmq-bundle-2 allocation score on database-2: 0
+pcmk__bundle_allocate: rabbitmq-bundle-2 allocation score on messaging-0: 0
+pcmk__bundle_allocate: rabbitmq-bundle-2 allocation score on messaging-1: 0
+pcmk__bundle_allocate: rabbitmq-bundle-2 allocation score on messaging-2: 0
+pcmk__bundle_allocate: rabbitmq-bundle-clone allocation score on compute-0: 0
+pcmk__bundle_allocate: rabbitmq-bundle-clone allocation score on compute-1: 0
+pcmk__bundle_allocate: rabbitmq-bundle-clone allocation score on controller-0: 0
+pcmk__bundle_allocate: rabbitmq-bundle-clone allocation score on controller-1: 0
+pcmk__bundle_allocate: rabbitmq-bundle-clone allocation score on controller-2: 0
+pcmk__bundle_allocate: rabbitmq-bundle-clone allocation score on database-0: 0
+pcmk__bundle_allocate: rabbitmq-bundle-clone allocation score on database-1: 0
+pcmk__bundle_allocate: rabbitmq-bundle-clone allocation score on database-2: 0
+pcmk__bundle_allocate: rabbitmq-bundle-clone allocation score on messaging-0: 0
+pcmk__bundle_allocate: rabbitmq-bundle-clone allocation score on messaging-1: 0
+pcmk__bundle_allocate: rabbitmq-bundle-clone allocation score on messaging-2: 0
+pcmk__bundle_allocate: rabbitmq-bundle-clone allocation score on rabbitmq-bundle-0: -INFINITY
+pcmk__bundle_allocate: rabbitmq-bundle-clone allocation score on rabbitmq-bundle-1: -INFINITY
+pcmk__bundle_allocate: rabbitmq-bundle-clone allocation score on rabbitmq-bundle-2: -INFINITY
+pcmk__bundle_allocate: rabbitmq-bundle-podman-0 allocation score on compute-0: -INFINITY
+pcmk__bundle_allocate: rabbitmq-bundle-podman-0 allocation score on compute-1: -INFINITY
+pcmk__bundle_allocate: rabbitmq-bundle-podman-0 allocation score on controller-0: -INFINITY
+pcmk__bundle_allocate: rabbitmq-bundle-podman-0 allocation score on controller-1: -INFINITY
+pcmk__bundle_allocate: rabbitmq-bundle-podman-0 allocation score on controller-2: -INFINITY
+pcmk__bundle_allocate: rabbitmq-bundle-podman-0 allocation score on database-0: -INFINITY
+pcmk__bundle_allocate: rabbitmq-bundle-podman-0 allocation score on database-1: -INFINITY
+pcmk__bundle_allocate: rabbitmq-bundle-podman-0 allocation score on database-2: -INFINITY
+pcmk__bundle_allocate: rabbitmq-bundle-podman-0 allocation score on messaging-0: 0
+pcmk__bundle_allocate: rabbitmq-bundle-podman-0 allocation score on messaging-1: 0
+pcmk__bundle_allocate: rabbitmq-bundle-podman-0 allocation score on messaging-2: 0
+pcmk__bundle_allocate: rabbitmq-bundle-podman-1 allocation score on compute-0: -INFINITY
+pcmk__bundle_allocate: rabbitmq-bundle-podman-1 allocation score on compute-1: -INFINITY
+pcmk__bundle_allocate: rabbitmq-bundle-podman-1 allocation score on controller-0: -INFINITY
+pcmk__bundle_allocate: rabbitmq-bundle-podman-1 allocation score on controller-1: -INFINITY
+pcmk__bundle_allocate: rabbitmq-bundle-podman-1 allocation score on controller-2: -INFINITY
+pcmk__bundle_allocate: rabbitmq-bundle-podman-1 allocation score on database-0: -INFINITY
+pcmk__bundle_allocate: rabbitmq-bundle-podman-1 allocation score on database-1: -INFINITY
+pcmk__bundle_allocate: rabbitmq-bundle-podman-1 allocation score on database-2: -INFINITY
+pcmk__bundle_allocate: rabbitmq-bundle-podman-1 allocation score on messaging-0: 0
+pcmk__bundle_allocate: rabbitmq-bundle-podman-1 allocation score on messaging-1: 0
+pcmk__bundle_allocate: rabbitmq-bundle-podman-1 allocation score on messaging-2: 0
+pcmk__bundle_allocate: rabbitmq-bundle-podman-2 allocation score on compute-0: -INFINITY
+pcmk__bundle_allocate: rabbitmq-bundle-podman-2 allocation score on compute-1: -INFINITY
+pcmk__bundle_allocate: rabbitmq-bundle-podman-2 allocation score on controller-0: -INFINITY
+pcmk__bundle_allocate: rabbitmq-bundle-podman-2 allocation score on controller-1: -INFINITY
+pcmk__bundle_allocate: rabbitmq-bundle-podman-2 allocation score on controller-2: -INFINITY
+pcmk__bundle_allocate: rabbitmq-bundle-podman-2 allocation score on database-0: -INFINITY
+pcmk__bundle_allocate: rabbitmq-bundle-podman-2 allocation score on database-1: -INFINITY
+pcmk__bundle_allocate: rabbitmq-bundle-podman-2 allocation score on database-2: -INFINITY
+pcmk__bundle_allocate: rabbitmq-bundle-podman-2 allocation score on messaging-0: 0
+pcmk__bundle_allocate: rabbitmq-bundle-podman-2 allocation score on messaging-1: 0
+pcmk__bundle_allocate: rabbitmq-bundle-podman-2 allocation score on messaging-2: 0
+pcmk__bundle_allocate: rabbitmq:0 allocation score on rabbitmq-bundle-0: 501
+pcmk__bundle_allocate: rabbitmq:1 allocation score on rabbitmq-bundle-1: 501
+pcmk__bundle_allocate: rabbitmq:2 allocation score on rabbitmq-bundle-2: 501
+pcmk__bundle_allocate: redis-bundle allocation score on compute-0: -INFINITY
+pcmk__bundle_allocate: redis-bundle allocation score on compute-1: -INFINITY
+pcmk__bundle_allocate: redis-bundle allocation score on controller-0: 0
+pcmk__bundle_allocate: redis-bundle allocation score on controller-1: 0
+pcmk__bundle_allocate: redis-bundle allocation score on controller-2: 0
+pcmk__bundle_allocate: redis-bundle allocation score on database-0: -INFINITY
+pcmk__bundle_allocate: redis-bundle allocation score on database-1: -INFINITY
+pcmk__bundle_allocate: redis-bundle allocation score on database-2: -INFINITY
+pcmk__bundle_allocate: redis-bundle allocation score on messaging-0: -INFINITY
+pcmk__bundle_allocate: redis-bundle allocation score on messaging-1: -INFINITY
+pcmk__bundle_allocate: redis-bundle allocation score on messaging-2: -INFINITY
+pcmk__bundle_allocate: redis-bundle-0 allocation score on compute-0: -INFINITY
+pcmk__bundle_allocate: redis-bundle-0 allocation score on compute-1: -INFINITY
+pcmk__bundle_allocate: redis-bundle-0 allocation score on controller-0: 0
+pcmk__bundle_allocate: redis-bundle-0 allocation score on controller-1: 0
+pcmk__bundle_allocate: redis-bundle-0 allocation score on controller-2: 0
+pcmk__bundle_allocate: redis-bundle-0 allocation score on database-0: 0
+pcmk__bundle_allocate: redis-bundle-0 allocation score on database-1: 0
+pcmk__bundle_allocate: redis-bundle-0 allocation score on database-2: 0
+pcmk__bundle_allocate: redis-bundle-0 allocation score on messaging-0: 0
+pcmk__bundle_allocate: redis-bundle-0 allocation score on messaging-1: 0
+pcmk__bundle_allocate: redis-bundle-0 allocation score on messaging-2: 0
+pcmk__bundle_allocate: redis-bundle-1 allocation score on compute-0: -INFINITY
+pcmk__bundle_allocate: redis-bundle-1 allocation score on compute-1: -INFINITY
+pcmk__bundle_allocate: redis-bundle-1 allocation score on controller-0: 0
+pcmk__bundle_allocate: redis-bundle-1 allocation score on controller-1: 0
+pcmk__bundle_allocate: redis-bundle-1 allocation score on controller-2: 0
+pcmk__bundle_allocate: redis-bundle-1 allocation score on database-0: 0
+pcmk__bundle_allocate: redis-bundle-1 allocation score on database-1: 0
+pcmk__bundle_allocate: redis-bundle-1 allocation score on database-2: 0
+pcmk__bundle_allocate: redis-bundle-1 allocation score on messaging-0: 0
+pcmk__bundle_allocate: redis-bundle-1 allocation score on messaging-1: 0
+pcmk__bundle_allocate: redis-bundle-1 allocation score on messaging-2: 0
+pcmk__bundle_allocate: redis-bundle-2 allocation score on compute-0: -INFINITY
+pcmk__bundle_allocate: redis-bundle-2 allocation score on compute-1: -INFINITY
+pcmk__bundle_allocate: redis-bundle-2 allocation score on controller-0: 0
+pcmk__bundle_allocate: redis-bundle-2 allocation score on controller-1: 0
+pcmk__bundle_allocate: redis-bundle-2 allocation score on controller-2: 0
+pcmk__bundle_allocate: redis-bundle-2 allocation score on database-0: 0
+pcmk__bundle_allocate: redis-bundle-2 allocation score on database-1: 0
+pcmk__bundle_allocate: redis-bundle-2 allocation score on database-2: 0
+pcmk__bundle_allocate: redis-bundle-2 allocation score on messaging-0: 0
+pcmk__bundle_allocate: redis-bundle-2 allocation score on messaging-1: 0
+pcmk__bundle_allocate: redis-bundle-2 allocation score on messaging-2: 0
+pcmk__bundle_allocate: redis-bundle-master allocation score on compute-0: 0
+pcmk__bundle_allocate: redis-bundle-master allocation score on compute-1: 0
+pcmk__bundle_allocate: redis-bundle-master allocation score on controller-0: 0
+pcmk__bundle_allocate: redis-bundle-master allocation score on controller-1: 0
+pcmk__bundle_allocate: redis-bundle-master allocation score on controller-2: 0
+pcmk__bundle_allocate: redis-bundle-master allocation score on database-0: 0
+pcmk__bundle_allocate: redis-bundle-master allocation score on database-1: 0
+pcmk__bundle_allocate: redis-bundle-master allocation score on database-2: 0
+pcmk__bundle_allocate: redis-bundle-master allocation score on messaging-0: 0
+pcmk__bundle_allocate: redis-bundle-master allocation score on messaging-1: 0
+pcmk__bundle_allocate: redis-bundle-master allocation score on messaging-2: 0
+pcmk__bundle_allocate: redis-bundle-master allocation score on redis-bundle-0: -INFINITY
+pcmk__bundle_allocate: redis-bundle-master allocation score on redis-bundle-1: -INFINITY
+pcmk__bundle_allocate: redis-bundle-master allocation score on redis-bundle-2: -INFINITY
+pcmk__bundle_allocate: redis-bundle-podman-0 allocation score on compute-0: -INFINITY
+pcmk__bundle_allocate: redis-bundle-podman-0 allocation score on compute-1: -INFINITY
+pcmk__bundle_allocate: redis-bundle-podman-0 allocation score on controller-0: 0
+pcmk__bundle_allocate: redis-bundle-podman-0 allocation score on controller-1: 0
+pcmk__bundle_allocate: redis-bundle-podman-0 allocation score on controller-2: 0
+pcmk__bundle_allocate: redis-bundle-podman-0 allocation score on database-0: -INFINITY
+pcmk__bundle_allocate: redis-bundle-podman-0 allocation score on database-1: -INFINITY
+pcmk__bundle_allocate: redis-bundle-podman-0 allocation score on database-2: -INFINITY
+pcmk__bundle_allocate: redis-bundle-podman-0 allocation score on messaging-0: -INFINITY
+pcmk__bundle_allocate: redis-bundle-podman-0 allocation score on messaging-1: -INFINITY
+pcmk__bundle_allocate: redis-bundle-podman-0 allocation score on messaging-2: -INFINITY
+pcmk__bundle_allocate: redis-bundle-podman-1 allocation score on compute-0: -INFINITY
+pcmk__bundle_allocate: redis-bundle-podman-1 allocation score on compute-1: -INFINITY
+pcmk__bundle_allocate: redis-bundle-podman-1 allocation score on controller-0: 0
+pcmk__bundle_allocate: redis-bundle-podman-1 allocation score on controller-1: 0
+pcmk__bundle_allocate: redis-bundle-podman-1 allocation score on controller-2: 0
+pcmk__bundle_allocate: redis-bundle-podman-1 allocation score on database-0: -INFINITY
+pcmk__bundle_allocate: redis-bundle-podman-1 allocation score on database-1: -INFINITY
+pcmk__bundle_allocate: redis-bundle-podman-1 allocation score on database-2: -INFINITY
+pcmk__bundle_allocate: redis-bundle-podman-1 allocation score on messaging-0: -INFINITY
+pcmk__bundle_allocate: redis-bundle-podman-1 allocation score on messaging-1: -INFINITY
+pcmk__bundle_allocate: redis-bundle-podman-1 allocation score on messaging-2: -INFINITY
+pcmk__bundle_allocate: redis-bundle-podman-2 allocation score on compute-0: -INFINITY
+pcmk__bundle_allocate: redis-bundle-podman-2 allocation score on compute-1: -INFINITY
+pcmk__bundle_allocate: redis-bundle-podman-2 allocation score on controller-0: 0
+pcmk__bundle_allocate: redis-bundle-podman-2 allocation score on controller-1: 0
+pcmk__bundle_allocate: redis-bundle-podman-2 allocation score on controller-2: 0
+pcmk__bundle_allocate: redis-bundle-podman-2 allocation score on database-0: -INFINITY
+pcmk__bundle_allocate: redis-bundle-podman-2 allocation score on database-1: -INFINITY
+pcmk__bundle_allocate: redis-bundle-podman-2 allocation score on database-2: -INFINITY
+pcmk__bundle_allocate: redis-bundle-podman-2 allocation score on messaging-0: -INFINITY
+pcmk__bundle_allocate: redis-bundle-podman-2 allocation score on messaging-1: -INFINITY
+pcmk__bundle_allocate: redis-bundle-podman-2 allocation score on messaging-2: -INFINITY
+pcmk__bundle_allocate: redis:0 allocation score on redis-bundle-0: 501
+pcmk__bundle_allocate: redis:1 allocation score on redis-bundle-1: 501
+pcmk__bundle_allocate: redis:2 allocation score on redis-bundle-2: 501
+pcmk__clone_allocate: compute-unfence-trigger-clone allocation score on compute-0: 0
+pcmk__clone_allocate: compute-unfence-trigger-clone allocation score on compute-1: 0
+pcmk__clone_allocate: compute-unfence-trigger-clone allocation score on controller-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger-clone allocation score on controller-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger-clone allocation score on controller-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger-clone allocation score on database-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger-clone allocation score on database-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger-clone allocation score on database-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger-clone allocation score on galera-bundle-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger-clone allocation score on galera-bundle-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger-clone allocation score on galera-bundle-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger-clone allocation score on messaging-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger-clone allocation score on messaging-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger-clone allocation score on messaging-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger-clone allocation score on ovn-dbs-bundle-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger-clone allocation score on ovn-dbs-bundle-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger-clone allocation score on ovn-dbs-bundle-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger-clone allocation score on rabbitmq-bundle-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger-clone allocation score on rabbitmq-bundle-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger-clone allocation score on rabbitmq-bundle-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger-clone allocation score on redis-bundle-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger-clone allocation score on redis-bundle-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger-clone allocation score on redis-bundle-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:0 allocation score on compute-0: 1
+pcmk__clone_allocate: compute-unfence-trigger:0 allocation score on compute-1: 0
+pcmk__clone_allocate: compute-unfence-trigger:0 allocation score on controller-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:0 allocation score on controller-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:0 allocation score on controller-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:0 allocation score on database-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:0 allocation score on database-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:0 allocation score on database-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:0 allocation score on galera-bundle-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:0 allocation score on galera-bundle-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:0 allocation score on galera-bundle-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:0 allocation score on messaging-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:0 allocation score on messaging-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:0 allocation score on messaging-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:0 allocation score on ovn-dbs-bundle-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:0 allocation score on ovn-dbs-bundle-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:0 allocation score on ovn-dbs-bundle-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:0 allocation score on rabbitmq-bundle-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:0 allocation score on rabbitmq-bundle-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:0 allocation score on rabbitmq-bundle-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:0 allocation score on redis-bundle-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:0 allocation score on redis-bundle-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:0 allocation score on redis-bundle-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:1 allocation score on compute-0: 0
+pcmk__clone_allocate: compute-unfence-trigger:1 allocation score on compute-1: 1
+pcmk__clone_allocate: compute-unfence-trigger:1 allocation score on controller-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:1 allocation score on controller-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:1 allocation score on controller-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:1 allocation score on database-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:1 allocation score on database-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:1 allocation score on database-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:1 allocation score on galera-bundle-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:1 allocation score on galera-bundle-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:1 allocation score on galera-bundle-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:1 allocation score on messaging-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:1 allocation score on messaging-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:1 allocation score on messaging-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:1 allocation score on ovn-dbs-bundle-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:1 allocation score on ovn-dbs-bundle-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:1 allocation score on ovn-dbs-bundle-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:1 allocation score on rabbitmq-bundle-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:1 allocation score on rabbitmq-bundle-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:1 allocation score on rabbitmq-bundle-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:1 allocation score on redis-bundle-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:1 allocation score on redis-bundle-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:1 allocation score on redis-bundle-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:10 allocation score on compute-0: 0
+pcmk__clone_allocate: compute-unfence-trigger:10 allocation score on compute-1: 0
+pcmk__clone_allocate: compute-unfence-trigger:10 allocation score on controller-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:10 allocation score on controller-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:10 allocation score on controller-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:10 allocation score on database-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:10 allocation score on database-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:10 allocation score on database-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:10 allocation score on galera-bundle-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:10 allocation score on galera-bundle-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:10 allocation score on galera-bundle-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:10 allocation score on messaging-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:10 allocation score on messaging-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:10 allocation score on messaging-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:10 allocation score on ovn-dbs-bundle-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:10 allocation score on ovn-dbs-bundle-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:10 allocation score on ovn-dbs-bundle-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:10 allocation score on rabbitmq-bundle-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:10 allocation score on rabbitmq-bundle-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:10 allocation score on rabbitmq-bundle-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:10 allocation score on redis-bundle-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:10 allocation score on redis-bundle-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:10 allocation score on redis-bundle-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:11 allocation score on compute-0: 0
+pcmk__clone_allocate: compute-unfence-trigger:11 allocation score on compute-1: 0
+pcmk__clone_allocate: compute-unfence-trigger:11 allocation score on controller-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:11 allocation score on controller-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:11 allocation score on controller-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:11 allocation score on database-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:11 allocation score on database-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:11 allocation score on database-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:11 allocation score on galera-bundle-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:11 allocation score on galera-bundle-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:11 allocation score on galera-bundle-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:11 allocation score on messaging-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:11 allocation score on messaging-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:11 allocation score on messaging-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:11 allocation score on ovn-dbs-bundle-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:11 allocation score on ovn-dbs-bundle-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:11 allocation score on ovn-dbs-bundle-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:11 allocation score on rabbitmq-bundle-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:11 allocation score on rabbitmq-bundle-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:11 allocation score on rabbitmq-bundle-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:11 allocation score on redis-bundle-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:11 allocation score on redis-bundle-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:11 allocation score on redis-bundle-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:12 allocation score on compute-0: 0
+pcmk__clone_allocate: compute-unfence-trigger:12 allocation score on compute-1: 0
+pcmk__clone_allocate: compute-unfence-trigger:12 allocation score on controller-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:12 allocation score on controller-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:12 allocation score on controller-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:12 allocation score on database-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:12 allocation score on database-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:12 allocation score on database-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:12 allocation score on galera-bundle-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:12 allocation score on galera-bundle-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:12 allocation score on galera-bundle-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:12 allocation score on messaging-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:12 allocation score on messaging-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:12 allocation score on messaging-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:12 allocation score on ovn-dbs-bundle-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:12 allocation score on ovn-dbs-bundle-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:12 allocation score on ovn-dbs-bundle-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:12 allocation score on rabbitmq-bundle-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:12 allocation score on rabbitmq-bundle-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:12 allocation score on rabbitmq-bundle-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:12 allocation score on redis-bundle-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:12 allocation score on redis-bundle-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:12 allocation score on redis-bundle-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:13 allocation score on compute-0: 0
+pcmk__clone_allocate: compute-unfence-trigger:13 allocation score on compute-1: 0
+pcmk__clone_allocate: compute-unfence-trigger:13 allocation score on controller-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:13 allocation score on controller-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:13 allocation score on controller-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:13 allocation score on database-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:13 allocation score on database-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:13 allocation score on database-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:13 allocation score on galera-bundle-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:13 allocation score on galera-bundle-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:13 allocation score on galera-bundle-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:13 allocation score on messaging-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:13 allocation score on messaging-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:13 allocation score on messaging-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:13 allocation score on ovn-dbs-bundle-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:13 allocation score on ovn-dbs-bundle-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:13 allocation score on ovn-dbs-bundle-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:13 allocation score on rabbitmq-bundle-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:13 allocation score on rabbitmq-bundle-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:13 allocation score on rabbitmq-bundle-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:13 allocation score on redis-bundle-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:13 allocation score on redis-bundle-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:13 allocation score on redis-bundle-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:14 allocation score on compute-0: 0
+pcmk__clone_allocate: compute-unfence-trigger:14 allocation score on compute-1: 0
+pcmk__clone_allocate: compute-unfence-trigger:14 allocation score on controller-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:14 allocation score on controller-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:14 allocation score on controller-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:14 allocation score on database-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:14 allocation score on database-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:14 allocation score on database-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:14 allocation score on galera-bundle-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:14 allocation score on galera-bundle-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:14 allocation score on galera-bundle-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:14 allocation score on messaging-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:14 allocation score on messaging-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:14 allocation score on messaging-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:14 allocation score on ovn-dbs-bundle-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:14 allocation score on ovn-dbs-bundle-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:14 allocation score on ovn-dbs-bundle-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:14 allocation score on rabbitmq-bundle-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:14 allocation score on rabbitmq-bundle-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:14 allocation score on rabbitmq-bundle-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:14 allocation score on redis-bundle-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:14 allocation score on redis-bundle-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:14 allocation score on redis-bundle-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:15 allocation score on compute-0: 0
+pcmk__clone_allocate: compute-unfence-trigger:15 allocation score on compute-1: 0
+pcmk__clone_allocate: compute-unfence-trigger:15 allocation score on controller-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:15 allocation score on controller-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:15 allocation score on controller-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:15 allocation score on database-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:15 allocation score on database-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:15 allocation score on database-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:15 allocation score on galera-bundle-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:15 allocation score on galera-bundle-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:15 allocation score on galera-bundle-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:15 allocation score on messaging-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:15 allocation score on messaging-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:15 allocation score on messaging-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:15 allocation score on ovn-dbs-bundle-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:15 allocation score on ovn-dbs-bundle-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:15 allocation score on ovn-dbs-bundle-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:15 allocation score on rabbitmq-bundle-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:15 allocation score on rabbitmq-bundle-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:15 allocation score on rabbitmq-bundle-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:15 allocation score on redis-bundle-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:15 allocation score on redis-bundle-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:15 allocation score on redis-bundle-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:16 allocation score on compute-0: 0
+pcmk__clone_allocate: compute-unfence-trigger:16 allocation score on compute-1: 0
+pcmk__clone_allocate: compute-unfence-trigger:16 allocation score on controller-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:16 allocation score on controller-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:16 allocation score on controller-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:16 allocation score on database-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:16 allocation score on database-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:16 allocation score on database-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:16 allocation score on galera-bundle-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:16 allocation score on galera-bundle-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:16 allocation score on galera-bundle-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:16 allocation score on messaging-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:16 allocation score on messaging-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:16 allocation score on messaging-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:16 allocation score on ovn-dbs-bundle-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:16 allocation score on ovn-dbs-bundle-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:16 allocation score on ovn-dbs-bundle-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:16 allocation score on rabbitmq-bundle-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:16 allocation score on rabbitmq-bundle-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:16 allocation score on rabbitmq-bundle-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:16 allocation score on redis-bundle-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:16 allocation score on redis-bundle-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:16 allocation score on redis-bundle-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:17 allocation score on compute-0: 0
+pcmk__clone_allocate: compute-unfence-trigger:17 allocation score on compute-1: 0
+pcmk__clone_allocate: compute-unfence-trigger:17 allocation score on controller-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:17 allocation score on controller-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:17 allocation score on controller-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:17 allocation score on database-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:17 allocation score on database-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:17 allocation score on database-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:17 allocation score on galera-bundle-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:17 allocation score on galera-bundle-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:17 allocation score on galera-bundle-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:17 allocation score on messaging-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:17 allocation score on messaging-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:17 allocation score on messaging-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:17 allocation score on ovn-dbs-bundle-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:17 allocation score on ovn-dbs-bundle-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:17 allocation score on ovn-dbs-bundle-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:17 allocation score on rabbitmq-bundle-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:17 allocation score on rabbitmq-bundle-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:17 allocation score on rabbitmq-bundle-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:17 allocation score on redis-bundle-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:17 allocation score on redis-bundle-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:17 allocation score on redis-bundle-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:18 allocation score on compute-0: 0
+pcmk__clone_allocate: compute-unfence-trigger:18 allocation score on compute-1: 0
+pcmk__clone_allocate: compute-unfence-trigger:18 allocation score on controller-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:18 allocation score on controller-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:18 allocation score on controller-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:18 allocation score on database-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:18 allocation score on database-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:18 allocation score on database-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:18 allocation score on galera-bundle-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:18 allocation score on galera-bundle-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:18 allocation score on galera-bundle-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:18 allocation score on messaging-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:18 allocation score on messaging-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:18 allocation score on messaging-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:18 allocation score on ovn-dbs-bundle-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:18 allocation score on ovn-dbs-bundle-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:18 allocation score on ovn-dbs-bundle-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:18 allocation score on rabbitmq-bundle-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:18 allocation score on rabbitmq-bundle-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:18 allocation score on rabbitmq-bundle-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:18 allocation score on redis-bundle-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:18 allocation score on redis-bundle-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:18 allocation score on redis-bundle-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:19 allocation score on compute-0: 0
+pcmk__clone_allocate: compute-unfence-trigger:19 allocation score on compute-1: 0
+pcmk__clone_allocate: compute-unfence-trigger:19 allocation score on controller-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:19 allocation score on controller-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:19 allocation score on controller-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:19 allocation score on database-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:19 allocation score on database-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:19 allocation score on database-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:19 allocation score on galera-bundle-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:19 allocation score on galera-bundle-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:19 allocation score on galera-bundle-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:19 allocation score on messaging-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:19 allocation score on messaging-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:19 allocation score on messaging-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:19 allocation score on ovn-dbs-bundle-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:19 allocation score on ovn-dbs-bundle-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:19 allocation score on ovn-dbs-bundle-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:19 allocation score on rabbitmq-bundle-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:19 allocation score on rabbitmq-bundle-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:19 allocation score on rabbitmq-bundle-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:19 allocation score on redis-bundle-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:19 allocation score on redis-bundle-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:19 allocation score on redis-bundle-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:2 allocation score on compute-0: 0
+pcmk__clone_allocate: compute-unfence-trigger:2 allocation score on compute-1: 0
+pcmk__clone_allocate: compute-unfence-trigger:2 allocation score on controller-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:2 allocation score on controller-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:2 allocation score on controller-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:2 allocation score on database-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:2 allocation score on database-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:2 allocation score on database-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:2 allocation score on galera-bundle-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:2 allocation score on galera-bundle-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:2 allocation score on galera-bundle-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:2 allocation score on messaging-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:2 allocation score on messaging-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:2 allocation score on messaging-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:2 allocation score on ovn-dbs-bundle-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:2 allocation score on ovn-dbs-bundle-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:2 allocation score on ovn-dbs-bundle-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:2 allocation score on rabbitmq-bundle-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:2 allocation score on rabbitmq-bundle-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:2 allocation score on rabbitmq-bundle-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:2 allocation score on redis-bundle-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:2 allocation score on redis-bundle-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:2 allocation score on redis-bundle-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:20 allocation score on compute-0: 0
+pcmk__clone_allocate: compute-unfence-trigger:20 allocation score on compute-1: 0
+pcmk__clone_allocate: compute-unfence-trigger:20 allocation score on controller-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:20 allocation score on controller-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:20 allocation score on controller-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:20 allocation score on database-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:20 allocation score on database-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:20 allocation score on database-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:20 allocation score on galera-bundle-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:20 allocation score on galera-bundle-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:20 allocation score on galera-bundle-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:20 allocation score on messaging-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:20 allocation score on messaging-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:20 allocation score on messaging-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:20 allocation score on ovn-dbs-bundle-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:20 allocation score on ovn-dbs-bundle-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:20 allocation score on ovn-dbs-bundle-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:20 allocation score on rabbitmq-bundle-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:20 allocation score on rabbitmq-bundle-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:20 allocation score on rabbitmq-bundle-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:20 allocation score on redis-bundle-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:20 allocation score on redis-bundle-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:20 allocation score on redis-bundle-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:21 allocation score on compute-0: 0
+pcmk__clone_allocate: compute-unfence-trigger:21 allocation score on compute-1: 0
+pcmk__clone_allocate: compute-unfence-trigger:21 allocation score on controller-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:21 allocation score on controller-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:21 allocation score on controller-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:21 allocation score on database-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:21 allocation score on database-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:21 allocation score on database-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:21 allocation score on galera-bundle-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:21 allocation score on galera-bundle-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:21 allocation score on galera-bundle-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:21 allocation score on messaging-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:21 allocation score on messaging-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:21 allocation score on messaging-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:21 allocation score on ovn-dbs-bundle-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:21 allocation score on ovn-dbs-bundle-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:21 allocation score on ovn-dbs-bundle-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:21 allocation score on rabbitmq-bundle-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:21 allocation score on rabbitmq-bundle-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:21 allocation score on rabbitmq-bundle-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:21 allocation score on redis-bundle-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:21 allocation score on redis-bundle-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:21 allocation score on redis-bundle-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:22 allocation score on compute-0: 0
+pcmk__clone_allocate: compute-unfence-trigger:22 allocation score on compute-1: 0
+pcmk__clone_allocate: compute-unfence-trigger:22 allocation score on controller-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:22 allocation score on controller-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:22 allocation score on controller-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:22 allocation score on database-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:22 allocation score on database-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:22 allocation score on database-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:22 allocation score on galera-bundle-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:22 allocation score on galera-bundle-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:22 allocation score on galera-bundle-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:22 allocation score on messaging-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:22 allocation score on messaging-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:22 allocation score on messaging-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:22 allocation score on ovn-dbs-bundle-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:22 allocation score on ovn-dbs-bundle-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:22 allocation score on ovn-dbs-bundle-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:22 allocation score on rabbitmq-bundle-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:22 allocation score on rabbitmq-bundle-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:22 allocation score on rabbitmq-bundle-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:22 allocation score on redis-bundle-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:22 allocation score on redis-bundle-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:22 allocation score on redis-bundle-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:3 allocation score on compute-0: 0
+pcmk__clone_allocate: compute-unfence-trigger:3 allocation score on compute-1: 0
+pcmk__clone_allocate: compute-unfence-trigger:3 allocation score on controller-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:3 allocation score on controller-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:3 allocation score on controller-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:3 allocation score on database-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:3 allocation score on database-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:3 allocation score on database-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:3 allocation score on galera-bundle-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:3 allocation score on galera-bundle-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:3 allocation score on galera-bundle-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:3 allocation score on messaging-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:3 allocation score on messaging-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:3 allocation score on messaging-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:3 allocation score on ovn-dbs-bundle-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:3 allocation score on ovn-dbs-bundle-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:3 allocation score on ovn-dbs-bundle-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:3 allocation score on rabbitmq-bundle-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:3 allocation score on rabbitmq-bundle-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:3 allocation score on rabbitmq-bundle-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:3 allocation score on redis-bundle-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:3 allocation score on redis-bundle-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:3 allocation score on redis-bundle-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:4 allocation score on compute-0: 0
+pcmk__clone_allocate: compute-unfence-trigger:4 allocation score on compute-1: 0
+pcmk__clone_allocate: compute-unfence-trigger:4 allocation score on controller-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:4 allocation score on controller-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:4 allocation score on controller-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:4 allocation score on database-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:4 allocation score on database-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:4 allocation score on database-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:4 allocation score on galera-bundle-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:4 allocation score on galera-bundle-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:4 allocation score on galera-bundle-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:4 allocation score on messaging-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:4 allocation score on messaging-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:4 allocation score on messaging-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:4 allocation score on ovn-dbs-bundle-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:4 allocation score on ovn-dbs-bundle-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:4 allocation score on ovn-dbs-bundle-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:4 allocation score on rabbitmq-bundle-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:4 allocation score on rabbitmq-bundle-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:4 allocation score on rabbitmq-bundle-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:4 allocation score on redis-bundle-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:4 allocation score on redis-bundle-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:4 allocation score on redis-bundle-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:5 allocation score on compute-0: 0
+pcmk__clone_allocate: compute-unfence-trigger:5 allocation score on compute-1: 0
+pcmk__clone_allocate: compute-unfence-trigger:5 allocation score on controller-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:5 allocation score on controller-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:5 allocation score on controller-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:5 allocation score on database-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:5 allocation score on database-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:5 allocation score on database-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:5 allocation score on galera-bundle-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:5 allocation score on galera-bundle-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:5 allocation score on galera-bundle-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:5 allocation score on messaging-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:5 allocation score on messaging-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:5 allocation score on messaging-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:5 allocation score on ovn-dbs-bundle-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:5 allocation score on ovn-dbs-bundle-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:5 allocation score on ovn-dbs-bundle-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:5 allocation score on rabbitmq-bundle-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:5 allocation score on rabbitmq-bundle-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:5 allocation score on rabbitmq-bundle-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:5 allocation score on redis-bundle-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:5 allocation score on redis-bundle-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:5 allocation score on redis-bundle-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:6 allocation score on compute-0: 0
+pcmk__clone_allocate: compute-unfence-trigger:6 allocation score on compute-1: 0
+pcmk__clone_allocate: compute-unfence-trigger:6 allocation score on controller-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:6 allocation score on controller-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:6 allocation score on controller-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:6 allocation score on database-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:6 allocation score on database-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:6 allocation score on database-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:6 allocation score on galera-bundle-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:6 allocation score on galera-bundle-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:6 allocation score on galera-bundle-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:6 allocation score on messaging-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:6 allocation score on messaging-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:6 allocation score on messaging-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:6 allocation score on ovn-dbs-bundle-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:6 allocation score on ovn-dbs-bundle-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:6 allocation score on ovn-dbs-bundle-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:6 allocation score on rabbitmq-bundle-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:6 allocation score on rabbitmq-bundle-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:6 allocation score on rabbitmq-bundle-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:6 allocation score on redis-bundle-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:6 allocation score on redis-bundle-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:6 allocation score on redis-bundle-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:7 allocation score on compute-0: 0
+pcmk__clone_allocate: compute-unfence-trigger:7 allocation score on compute-1: 0
+pcmk__clone_allocate: compute-unfence-trigger:7 allocation score on controller-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:7 allocation score on controller-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:7 allocation score on controller-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:7 allocation score on database-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:7 allocation score on database-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:7 allocation score on database-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:7 allocation score on galera-bundle-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:7 allocation score on galera-bundle-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:7 allocation score on galera-bundle-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:7 allocation score on messaging-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:7 allocation score on messaging-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:7 allocation score on messaging-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:7 allocation score on ovn-dbs-bundle-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:7 allocation score on ovn-dbs-bundle-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:7 allocation score on ovn-dbs-bundle-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:7 allocation score on rabbitmq-bundle-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:7 allocation score on rabbitmq-bundle-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:7 allocation score on rabbitmq-bundle-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:7 allocation score on redis-bundle-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:7 allocation score on redis-bundle-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:7 allocation score on redis-bundle-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:8 allocation score on compute-0: 0
+pcmk__clone_allocate: compute-unfence-trigger:8 allocation score on compute-1: 0
+pcmk__clone_allocate: compute-unfence-trigger:8 allocation score on controller-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:8 allocation score on controller-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:8 allocation score on controller-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:8 allocation score on database-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:8 allocation score on database-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:8 allocation score on database-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:8 allocation score on galera-bundle-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:8 allocation score on galera-bundle-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:8 allocation score on galera-bundle-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:8 allocation score on messaging-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:8 allocation score on messaging-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:8 allocation score on messaging-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:8 allocation score on ovn-dbs-bundle-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:8 allocation score on ovn-dbs-bundle-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:8 allocation score on ovn-dbs-bundle-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:8 allocation score on rabbitmq-bundle-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:8 allocation score on rabbitmq-bundle-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:8 allocation score on rabbitmq-bundle-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:8 allocation score on redis-bundle-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:8 allocation score on redis-bundle-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:8 allocation score on redis-bundle-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:9 allocation score on compute-0: 0
+pcmk__clone_allocate: compute-unfence-trigger:9 allocation score on compute-1: 0
+pcmk__clone_allocate: compute-unfence-trigger:9 allocation score on controller-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:9 allocation score on controller-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:9 allocation score on controller-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:9 allocation score on database-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:9 allocation score on database-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:9 allocation score on database-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:9 allocation score on galera-bundle-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:9 allocation score on galera-bundle-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:9 allocation score on galera-bundle-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:9 allocation score on messaging-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:9 allocation score on messaging-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:9 allocation score on messaging-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:9 allocation score on ovn-dbs-bundle-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:9 allocation score on ovn-dbs-bundle-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:9 allocation score on ovn-dbs-bundle-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:9 allocation score on rabbitmq-bundle-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:9 allocation score on rabbitmq-bundle-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:9 allocation score on rabbitmq-bundle-2: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:9 allocation score on redis-bundle-0: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:9 allocation score on redis-bundle-1: -INFINITY
+pcmk__clone_allocate: compute-unfence-trigger:9 allocation score on redis-bundle-2: -INFINITY
+pcmk__clone_allocate: galera-bundle-master allocation score on compute-0: -INFINITY
+pcmk__clone_allocate: galera-bundle-master allocation score on compute-1: -INFINITY
+pcmk__clone_allocate: galera-bundle-master allocation score on controller-0: -INFINITY
+pcmk__clone_allocate: galera-bundle-master allocation score on controller-1: -INFINITY
+pcmk__clone_allocate: galera-bundle-master allocation score on controller-2: -INFINITY
+pcmk__clone_allocate: galera-bundle-master allocation score on database-0: -INFINITY
+pcmk__clone_allocate: galera-bundle-master allocation score on database-1: -INFINITY
+pcmk__clone_allocate: galera-bundle-master allocation score on database-2: -INFINITY
+pcmk__clone_allocate: galera-bundle-master allocation score on galera-bundle-0: 0
+pcmk__clone_allocate: galera-bundle-master allocation score on galera-bundle-1: 0
+pcmk__clone_allocate: galera-bundle-master allocation score on galera-bundle-2: 0
+pcmk__clone_allocate: galera-bundle-master allocation score on messaging-0: -INFINITY
+pcmk__clone_allocate: galera-bundle-master allocation score on messaging-1: -INFINITY
+pcmk__clone_allocate: galera-bundle-master allocation score on messaging-2: -INFINITY
+pcmk__clone_allocate: galera:0 allocation score on galera-bundle-0: INFINITY
+pcmk__clone_allocate: galera:1 allocation score on galera-bundle-1: INFINITY
+pcmk__clone_allocate: galera:2 allocation score on galera-bundle-2: INFINITY
+pcmk__clone_allocate: ovn-dbs-bundle-master allocation score on compute-0: -INFINITY
+pcmk__clone_allocate: ovn-dbs-bundle-master allocation score on compute-1: -INFINITY
+pcmk__clone_allocate: ovn-dbs-bundle-master allocation score on controller-0: -INFINITY
+pcmk__clone_allocate: ovn-dbs-bundle-master allocation score on controller-1: -INFINITY
+pcmk__clone_allocate: ovn-dbs-bundle-master allocation score on controller-2: -INFINITY
+pcmk__clone_allocate: ovn-dbs-bundle-master allocation score on database-0: -INFINITY
+pcmk__clone_allocate: ovn-dbs-bundle-master allocation score on database-1: -INFINITY
+pcmk__clone_allocate: ovn-dbs-bundle-master allocation score on database-2: -INFINITY
+pcmk__clone_allocate: ovn-dbs-bundle-master allocation score on messaging-0: -INFINITY
+pcmk__clone_allocate: ovn-dbs-bundle-master allocation score on messaging-1: -INFINITY
+pcmk__clone_allocate: ovn-dbs-bundle-master allocation score on messaging-2: -INFINITY
+pcmk__clone_allocate: ovn-dbs-bundle-master allocation score on ovn-dbs-bundle-0: 0
+pcmk__clone_allocate: ovn-dbs-bundle-master allocation score on ovn-dbs-bundle-1: 0
+pcmk__clone_allocate: ovn-dbs-bundle-master allocation score on ovn-dbs-bundle-2: 0
+pcmk__clone_allocate: ovndb_servers:0 allocation score on ovn-dbs-bundle-0: INFINITY
+pcmk__clone_allocate: ovndb_servers:1 allocation score on ovn-dbs-bundle-1: INFINITY
+pcmk__clone_allocate: ovndb_servers:2 allocation score on ovn-dbs-bundle-2: INFINITY
+pcmk__clone_allocate: rabbitmq-bundle-clone allocation score on compute-0: -INFINITY
+pcmk__clone_allocate: rabbitmq-bundle-clone allocation score on compute-1: -INFINITY
+pcmk__clone_allocate: rabbitmq-bundle-clone allocation score on controller-0: -INFINITY
+pcmk__clone_allocate: rabbitmq-bundle-clone allocation score on controller-1: -INFINITY
+pcmk__clone_allocate: rabbitmq-bundle-clone allocation score on controller-2: -INFINITY
+pcmk__clone_allocate: rabbitmq-bundle-clone allocation score on database-0: -INFINITY
+pcmk__clone_allocate: rabbitmq-bundle-clone allocation score on database-1: -INFINITY
+pcmk__clone_allocate: rabbitmq-bundle-clone allocation score on database-2: -INFINITY
+pcmk__clone_allocate: rabbitmq-bundle-clone allocation score on messaging-0: -INFINITY
+pcmk__clone_allocate: rabbitmq-bundle-clone allocation score on messaging-1: -INFINITY
+pcmk__clone_allocate: rabbitmq-bundle-clone allocation score on messaging-2: -INFINITY
+pcmk__clone_allocate: rabbitmq-bundle-clone allocation score on rabbitmq-bundle-0: 0
+pcmk__clone_allocate: rabbitmq-bundle-clone allocation score on rabbitmq-bundle-1: 0
+pcmk__clone_allocate: rabbitmq-bundle-clone allocation score on rabbitmq-bundle-2: 0
+pcmk__clone_allocate: rabbitmq:0 allocation score on rabbitmq-bundle-0: INFINITY
+pcmk__clone_allocate: rabbitmq:1 allocation score on rabbitmq-bundle-1: INFINITY
+pcmk__clone_allocate: rabbitmq:2 allocation score on rabbitmq-bundle-2: INFINITY
+pcmk__clone_allocate: redis-bundle-master allocation score on compute-0: -INFINITY
+pcmk__clone_allocate: redis-bundle-master allocation score on compute-1: -INFINITY
+pcmk__clone_allocate: redis-bundle-master allocation score on controller-0: -INFINITY
+pcmk__clone_allocate: redis-bundle-master allocation score on controller-1: -INFINITY
+pcmk__clone_allocate: redis-bundle-master allocation score on controller-2: -INFINITY
+pcmk__clone_allocate: redis-bundle-master allocation score on database-0: -INFINITY
+pcmk__clone_allocate: redis-bundle-master allocation score on database-1: -INFINITY
+pcmk__clone_allocate: redis-bundle-master allocation score on database-2: -INFINITY
+pcmk__clone_allocate: redis-bundle-master allocation score on messaging-0: -INFINITY
+pcmk__clone_allocate: redis-bundle-master allocation score on messaging-1: -INFINITY
+pcmk__clone_allocate: redis-bundle-master allocation score on messaging-2: -INFINITY
+pcmk__clone_allocate: redis-bundle-master allocation score on redis-bundle-0: 0
+pcmk__clone_allocate: redis-bundle-master allocation score on redis-bundle-1: 0
+pcmk__clone_allocate: redis-bundle-master allocation score on redis-bundle-2: 0
+pcmk__clone_allocate: redis:0 allocation score on redis-bundle-0: INFINITY
+pcmk__clone_allocate: redis:1 allocation score on redis-bundle-1: INFINITY
+pcmk__clone_allocate: redis:2 allocation score on redis-bundle-2: INFINITY
+pcmk__native_allocate: compute-0 allocation score on compute-0: -INFINITY
+pcmk__native_allocate: compute-0 allocation score on compute-1: -INFINITY
+pcmk__native_allocate: compute-0 allocation score on controller-0: -INFINITY
+pcmk__native_allocate: compute-0 allocation score on controller-1: -INFINITY
+pcmk__native_allocate: compute-0 allocation score on controller-2: -INFINITY
+pcmk__native_allocate: compute-0 allocation score on database-0: -INFINITY
+pcmk__native_allocate: compute-0 allocation score on database-1: -INFINITY
+pcmk__native_allocate: compute-0 allocation score on database-2: -INFINITY
+pcmk__native_allocate: compute-0 allocation score on galera-bundle-0: -INFINITY
+pcmk__native_allocate: compute-0 allocation score on galera-bundle-1: -INFINITY
+pcmk__native_allocate: compute-0 allocation score on galera-bundle-2: -INFINITY
+pcmk__native_allocate: compute-0 allocation score on messaging-0: -INFINITY
+pcmk__native_allocate: compute-0 allocation score on messaging-1: -INFINITY
+pcmk__native_allocate: compute-0 allocation score on messaging-2: -INFINITY
+pcmk__native_allocate: compute-0 allocation score on ovn-dbs-bundle-0: -INFINITY
+pcmk__native_allocate: compute-0 allocation score on ovn-dbs-bundle-1: -INFINITY
+pcmk__native_allocate: compute-0 allocation score on ovn-dbs-bundle-2: -INFINITY
+pcmk__native_allocate: compute-0 allocation score on rabbitmq-bundle-0: -INFINITY
+pcmk__native_allocate: compute-0 allocation score on rabbitmq-bundle-1: -INFINITY
+pcmk__native_allocate: compute-0 allocation score on rabbitmq-bundle-2: -INFINITY
+pcmk__native_allocate: compute-0 allocation score on redis-bundle-0: -INFINITY
+pcmk__native_allocate: compute-0 allocation score on redis-bundle-1: -INFINITY
+pcmk__native_allocate: compute-0 allocation score on redis-bundle-2: -INFINITY
+pcmk__native_allocate: compute-1 allocation score on compute-0: -INFINITY
+pcmk__native_allocate: compute-1 allocation score on compute-1: -INFINITY
+pcmk__native_allocate: compute-1 allocation score on controller-0: 0
+pcmk__native_allocate: compute-1 allocation score on controller-1: 0
+pcmk__native_allocate: compute-1 allocation score on controller-2: 0
+pcmk__native_allocate: compute-1 allocation score on database-0: 0
+pcmk__native_allocate: compute-1 allocation score on database-1: 0
+pcmk__native_allocate: compute-1 allocation score on database-2: 0
+pcmk__native_allocate: compute-1 allocation score on messaging-0: 0
+pcmk__native_allocate: compute-1 allocation score on messaging-1: 0
+pcmk__native_allocate: compute-1 allocation score on messaging-2: 0
+pcmk__native_allocate: compute-unfence-trigger:0 allocation score on compute-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:0 allocation score on compute-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:0 allocation score on controller-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:0 allocation score on controller-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:0 allocation score on controller-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:0 allocation score on database-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:0 allocation score on database-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:0 allocation score on database-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:0 allocation score on galera-bundle-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:0 allocation score on galera-bundle-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:0 allocation score on galera-bundle-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:0 allocation score on messaging-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:0 allocation score on messaging-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:0 allocation score on messaging-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:0 allocation score on ovn-dbs-bundle-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:0 allocation score on ovn-dbs-bundle-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:0 allocation score on ovn-dbs-bundle-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:0 allocation score on rabbitmq-bundle-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:0 allocation score on rabbitmq-bundle-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:0 allocation score on rabbitmq-bundle-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:0 allocation score on redis-bundle-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:0 allocation score on redis-bundle-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:0 allocation score on redis-bundle-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:1 allocation score on compute-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:1 allocation score on compute-1: 1
+pcmk__native_allocate: compute-unfence-trigger:1 allocation score on controller-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:1 allocation score on controller-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:1 allocation score on controller-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:1 allocation score on database-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:1 allocation score on database-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:1 allocation score on database-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:1 allocation score on galera-bundle-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:1 allocation score on galera-bundle-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:1 allocation score on galera-bundle-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:1 allocation score on messaging-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:1 allocation score on messaging-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:1 allocation score on messaging-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:1 allocation score on ovn-dbs-bundle-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:1 allocation score on ovn-dbs-bundle-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:1 allocation score on ovn-dbs-bundle-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:1 allocation score on rabbitmq-bundle-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:1 allocation score on rabbitmq-bundle-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:1 allocation score on rabbitmq-bundle-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:1 allocation score on redis-bundle-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:1 allocation score on redis-bundle-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:1 allocation score on redis-bundle-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:10 allocation score on compute-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:10 allocation score on compute-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:10 allocation score on controller-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:10 allocation score on controller-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:10 allocation score on controller-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:10 allocation score on database-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:10 allocation score on database-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:10 allocation score on database-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:10 allocation score on galera-bundle-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:10 allocation score on galera-bundle-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:10 allocation score on galera-bundle-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:10 allocation score on messaging-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:10 allocation score on messaging-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:10 allocation score on messaging-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:10 allocation score on ovn-dbs-bundle-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:10 allocation score on ovn-dbs-bundle-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:10 allocation score on ovn-dbs-bundle-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:10 allocation score on rabbitmq-bundle-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:10 allocation score on rabbitmq-bundle-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:10 allocation score on rabbitmq-bundle-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:10 allocation score on redis-bundle-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:10 allocation score on redis-bundle-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:10 allocation score on redis-bundle-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:11 allocation score on compute-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:11 allocation score on compute-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:11 allocation score on controller-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:11 allocation score on controller-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:11 allocation score on controller-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:11 allocation score on database-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:11 allocation score on database-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:11 allocation score on database-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:11 allocation score on galera-bundle-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:11 allocation score on galera-bundle-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:11 allocation score on galera-bundle-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:11 allocation score on messaging-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:11 allocation score on messaging-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:11 allocation score on messaging-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:11 allocation score on ovn-dbs-bundle-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:11 allocation score on ovn-dbs-bundle-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:11 allocation score on ovn-dbs-bundle-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:11 allocation score on rabbitmq-bundle-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:11 allocation score on rabbitmq-bundle-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:11 allocation score on rabbitmq-bundle-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:11 allocation score on redis-bundle-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:11 allocation score on redis-bundle-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:11 allocation score on redis-bundle-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:12 allocation score on compute-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:12 allocation score on compute-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:12 allocation score on controller-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:12 allocation score on controller-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:12 allocation score on controller-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:12 allocation score on database-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:12 allocation score on database-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:12 allocation score on database-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:12 allocation score on galera-bundle-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:12 allocation score on galera-bundle-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:12 allocation score on galera-bundle-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:12 allocation score on messaging-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:12 allocation score on messaging-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:12 allocation score on messaging-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:12 allocation score on ovn-dbs-bundle-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:12 allocation score on ovn-dbs-bundle-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:12 allocation score on ovn-dbs-bundle-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:12 allocation score on rabbitmq-bundle-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:12 allocation score on rabbitmq-bundle-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:12 allocation score on rabbitmq-bundle-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:12 allocation score on redis-bundle-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:12 allocation score on redis-bundle-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:12 allocation score on redis-bundle-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:13 allocation score on compute-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:13 allocation score on compute-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:13 allocation score on controller-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:13 allocation score on controller-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:13 allocation score on controller-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:13 allocation score on database-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:13 allocation score on database-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:13 allocation score on database-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:13 allocation score on galera-bundle-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:13 allocation score on galera-bundle-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:13 allocation score on galera-bundle-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:13 allocation score on messaging-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:13 allocation score on messaging-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:13 allocation score on messaging-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:13 allocation score on ovn-dbs-bundle-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:13 allocation score on ovn-dbs-bundle-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:13 allocation score on ovn-dbs-bundle-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:13 allocation score on rabbitmq-bundle-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:13 allocation score on rabbitmq-bundle-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:13 allocation score on rabbitmq-bundle-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:13 allocation score on redis-bundle-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:13 allocation score on redis-bundle-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:13 allocation score on redis-bundle-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:14 allocation score on compute-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:14 allocation score on compute-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:14 allocation score on controller-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:14 allocation score on controller-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:14 allocation score on controller-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:14 allocation score on database-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:14 allocation score on database-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:14 allocation score on database-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:14 allocation score on galera-bundle-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:14 allocation score on galera-bundle-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:14 allocation score on galera-bundle-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:14 allocation score on messaging-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:14 allocation score on messaging-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:14 allocation score on messaging-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:14 allocation score on ovn-dbs-bundle-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:14 allocation score on ovn-dbs-bundle-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:14 allocation score on ovn-dbs-bundle-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:14 allocation score on rabbitmq-bundle-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:14 allocation score on rabbitmq-bundle-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:14 allocation score on rabbitmq-bundle-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:14 allocation score on redis-bundle-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:14 allocation score on redis-bundle-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:14 allocation score on redis-bundle-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:15 allocation score on compute-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:15 allocation score on compute-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:15 allocation score on controller-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:15 allocation score on controller-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:15 allocation score on controller-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:15 allocation score on database-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:15 allocation score on database-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:15 allocation score on database-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:15 allocation score on galera-bundle-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:15 allocation score on galera-bundle-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:15 allocation score on galera-bundle-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:15 allocation score on messaging-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:15 allocation score on messaging-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:15 allocation score on messaging-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:15 allocation score on ovn-dbs-bundle-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:15 allocation score on ovn-dbs-bundle-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:15 allocation score on ovn-dbs-bundle-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:15 allocation score on rabbitmq-bundle-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:15 allocation score on rabbitmq-bundle-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:15 allocation score on rabbitmq-bundle-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:15 allocation score on redis-bundle-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:15 allocation score on redis-bundle-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:15 allocation score on redis-bundle-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:16 allocation score on compute-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:16 allocation score on compute-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:16 allocation score on controller-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:16 allocation score on controller-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:16 allocation score on controller-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:16 allocation score on database-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:16 allocation score on database-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:16 allocation score on database-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:16 allocation score on galera-bundle-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:16 allocation score on galera-bundle-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:16 allocation score on galera-bundle-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:16 allocation score on messaging-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:16 allocation score on messaging-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:16 allocation score on messaging-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:16 allocation score on ovn-dbs-bundle-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:16 allocation score on ovn-dbs-bundle-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:16 allocation score on ovn-dbs-bundle-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:16 allocation score on rabbitmq-bundle-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:16 allocation score on rabbitmq-bundle-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:16 allocation score on rabbitmq-bundle-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:16 allocation score on redis-bundle-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:16 allocation score on redis-bundle-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:16 allocation score on redis-bundle-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:17 allocation score on compute-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:17 allocation score on compute-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:17 allocation score on controller-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:17 allocation score on controller-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:17 allocation score on controller-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:17 allocation score on database-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:17 allocation score on database-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:17 allocation score on database-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:17 allocation score on galera-bundle-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:17 allocation score on galera-bundle-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:17 allocation score on galera-bundle-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:17 allocation score on messaging-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:17 allocation score on messaging-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:17 allocation score on messaging-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:17 allocation score on ovn-dbs-bundle-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:17 allocation score on ovn-dbs-bundle-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:17 allocation score on ovn-dbs-bundle-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:17 allocation score on rabbitmq-bundle-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:17 allocation score on rabbitmq-bundle-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:17 allocation score on rabbitmq-bundle-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:17 allocation score on redis-bundle-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:17 allocation score on redis-bundle-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:17 allocation score on redis-bundle-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:18 allocation score on compute-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:18 allocation score on compute-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:18 allocation score on controller-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:18 allocation score on controller-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:18 allocation score on controller-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:18 allocation score on database-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:18 allocation score on database-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:18 allocation score on database-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:18 allocation score on galera-bundle-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:18 allocation score on galera-bundle-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:18 allocation score on galera-bundle-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:18 allocation score on messaging-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:18 allocation score on messaging-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:18 allocation score on messaging-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:18 allocation score on ovn-dbs-bundle-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:18 allocation score on ovn-dbs-bundle-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:18 allocation score on ovn-dbs-bundle-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:18 allocation score on rabbitmq-bundle-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:18 allocation score on rabbitmq-bundle-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:18 allocation score on rabbitmq-bundle-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:18 allocation score on redis-bundle-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:18 allocation score on redis-bundle-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:18 allocation score on redis-bundle-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:19 allocation score on compute-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:19 allocation score on compute-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:19 allocation score on controller-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:19 allocation score on controller-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:19 allocation score on controller-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:19 allocation score on database-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:19 allocation score on database-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:19 allocation score on database-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:19 allocation score on galera-bundle-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:19 allocation score on galera-bundle-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:19 allocation score on galera-bundle-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:19 allocation score on messaging-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:19 allocation score on messaging-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:19 allocation score on messaging-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:19 allocation score on ovn-dbs-bundle-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:19 allocation score on ovn-dbs-bundle-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:19 allocation score on ovn-dbs-bundle-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:19 allocation score on rabbitmq-bundle-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:19 allocation score on rabbitmq-bundle-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:19 allocation score on rabbitmq-bundle-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:19 allocation score on redis-bundle-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:19 allocation score on redis-bundle-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:19 allocation score on redis-bundle-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:2 allocation score on compute-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:2 allocation score on compute-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:2 allocation score on controller-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:2 allocation score on controller-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:2 allocation score on controller-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:2 allocation score on database-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:2 allocation score on database-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:2 allocation score on database-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:2 allocation score on galera-bundle-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:2 allocation score on galera-bundle-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:2 allocation score on galera-bundle-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:2 allocation score on messaging-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:2 allocation score on messaging-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:2 allocation score on messaging-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:2 allocation score on ovn-dbs-bundle-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:2 allocation score on ovn-dbs-bundle-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:2 allocation score on ovn-dbs-bundle-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:2 allocation score on rabbitmq-bundle-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:2 allocation score on rabbitmq-bundle-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:2 allocation score on rabbitmq-bundle-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:2 allocation score on redis-bundle-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:2 allocation score on redis-bundle-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:2 allocation score on redis-bundle-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:20 allocation score on compute-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:20 allocation score on compute-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:20 allocation score on controller-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:20 allocation score on controller-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:20 allocation score on controller-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:20 allocation score on database-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:20 allocation score on database-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:20 allocation score on database-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:20 allocation score on galera-bundle-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:20 allocation score on galera-bundle-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:20 allocation score on galera-bundle-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:20 allocation score on messaging-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:20 allocation score on messaging-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:20 allocation score on messaging-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:20 allocation score on ovn-dbs-bundle-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:20 allocation score on ovn-dbs-bundle-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:20 allocation score on ovn-dbs-bundle-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:20 allocation score on rabbitmq-bundle-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:20 allocation score on rabbitmq-bundle-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:20 allocation score on rabbitmq-bundle-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:20 allocation score on redis-bundle-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:20 allocation score on redis-bundle-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:20 allocation score on redis-bundle-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:21 allocation score on compute-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:21 allocation score on compute-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:21 allocation score on controller-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:21 allocation score on controller-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:21 allocation score on controller-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:21 allocation score on database-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:21 allocation score on database-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:21 allocation score on database-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:21 allocation score on galera-bundle-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:21 allocation score on galera-bundle-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:21 allocation score on galera-bundle-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:21 allocation score on messaging-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:21 allocation score on messaging-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:21 allocation score on messaging-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:21 allocation score on ovn-dbs-bundle-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:21 allocation score on ovn-dbs-bundle-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:21 allocation score on ovn-dbs-bundle-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:21 allocation score on rabbitmq-bundle-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:21 allocation score on rabbitmq-bundle-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:21 allocation score on rabbitmq-bundle-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:21 allocation score on redis-bundle-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:21 allocation score on redis-bundle-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:21 allocation score on redis-bundle-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:22 allocation score on compute-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:22 allocation score on compute-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:22 allocation score on controller-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:22 allocation score on controller-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:22 allocation score on controller-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:22 allocation score on database-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:22 allocation score on database-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:22 allocation score on database-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:22 allocation score on galera-bundle-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:22 allocation score on galera-bundle-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:22 allocation score on galera-bundle-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:22 allocation score on messaging-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:22 allocation score on messaging-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:22 allocation score on messaging-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:22 allocation score on ovn-dbs-bundle-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:22 allocation score on ovn-dbs-bundle-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:22 allocation score on ovn-dbs-bundle-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:22 allocation score on rabbitmq-bundle-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:22 allocation score on rabbitmq-bundle-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:22 allocation score on rabbitmq-bundle-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:22 allocation score on redis-bundle-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:22 allocation score on redis-bundle-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:22 allocation score on redis-bundle-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:3 allocation score on compute-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:3 allocation score on compute-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:3 allocation score on controller-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:3 allocation score on controller-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:3 allocation score on controller-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:3 allocation score on database-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:3 allocation score on database-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:3 allocation score on database-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:3 allocation score on galera-bundle-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:3 allocation score on galera-bundle-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:3 allocation score on galera-bundle-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:3 allocation score on messaging-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:3 allocation score on messaging-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:3 allocation score on messaging-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:3 allocation score on ovn-dbs-bundle-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:3 allocation score on ovn-dbs-bundle-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:3 allocation score on ovn-dbs-bundle-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:3 allocation score on rabbitmq-bundle-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:3 allocation score on rabbitmq-bundle-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:3 allocation score on rabbitmq-bundle-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:3 allocation score on redis-bundle-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:3 allocation score on redis-bundle-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:3 allocation score on redis-bundle-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:4 allocation score on compute-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:4 allocation score on compute-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:4 allocation score on controller-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:4 allocation score on controller-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:4 allocation score on controller-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:4 allocation score on database-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:4 allocation score on database-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:4 allocation score on database-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:4 allocation score on galera-bundle-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:4 allocation score on galera-bundle-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:4 allocation score on galera-bundle-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:4 allocation score on messaging-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:4 allocation score on messaging-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:4 allocation score on messaging-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:4 allocation score on ovn-dbs-bundle-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:4 allocation score on ovn-dbs-bundle-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:4 allocation score on ovn-dbs-bundle-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:4 allocation score on rabbitmq-bundle-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:4 allocation score on rabbitmq-bundle-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:4 allocation score on rabbitmq-bundle-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:4 allocation score on redis-bundle-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:4 allocation score on redis-bundle-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:4 allocation score on redis-bundle-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:5 allocation score on compute-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:5 allocation score on compute-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:5 allocation score on controller-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:5 allocation score on controller-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:5 allocation score on controller-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:5 allocation score on database-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:5 allocation score on database-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:5 allocation score on database-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:5 allocation score on galera-bundle-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:5 allocation score on galera-bundle-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:5 allocation score on galera-bundle-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:5 allocation score on messaging-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:5 allocation score on messaging-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:5 allocation score on messaging-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:5 allocation score on ovn-dbs-bundle-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:5 allocation score on ovn-dbs-bundle-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:5 allocation score on ovn-dbs-bundle-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:5 allocation score on rabbitmq-bundle-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:5 allocation score on rabbitmq-bundle-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:5 allocation score on rabbitmq-bundle-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:5 allocation score on redis-bundle-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:5 allocation score on redis-bundle-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:5 allocation score on redis-bundle-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:6 allocation score on compute-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:6 allocation score on compute-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:6 allocation score on controller-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:6 allocation score on controller-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:6 allocation score on controller-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:6 allocation score on database-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:6 allocation score on database-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:6 allocation score on database-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:6 allocation score on galera-bundle-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:6 allocation score on galera-bundle-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:6 allocation score on galera-bundle-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:6 allocation score on messaging-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:6 allocation score on messaging-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:6 allocation score on messaging-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:6 allocation score on ovn-dbs-bundle-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:6 allocation score on ovn-dbs-bundle-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:6 allocation score on ovn-dbs-bundle-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:6 allocation score on rabbitmq-bundle-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:6 allocation score on rabbitmq-bundle-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:6 allocation score on rabbitmq-bundle-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:6 allocation score on redis-bundle-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:6 allocation score on redis-bundle-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:6 allocation score on redis-bundle-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:7 allocation score on compute-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:7 allocation score on compute-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:7 allocation score on controller-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:7 allocation score on controller-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:7 allocation score on controller-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:7 allocation score on database-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:7 allocation score on database-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:7 allocation score on database-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:7 allocation score on galera-bundle-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:7 allocation score on galera-bundle-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:7 allocation score on galera-bundle-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:7 allocation score on messaging-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:7 allocation score on messaging-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:7 allocation score on messaging-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:7 allocation score on ovn-dbs-bundle-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:7 allocation score on ovn-dbs-bundle-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:7 allocation score on ovn-dbs-bundle-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:7 allocation score on rabbitmq-bundle-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:7 allocation score on rabbitmq-bundle-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:7 allocation score on rabbitmq-bundle-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:7 allocation score on redis-bundle-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:7 allocation score on redis-bundle-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:7 allocation score on redis-bundle-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:8 allocation score on compute-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:8 allocation score on compute-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:8 allocation score on controller-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:8 allocation score on controller-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:8 allocation score on controller-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:8 allocation score on database-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:8 allocation score on database-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:8 allocation score on database-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:8 allocation score on galera-bundle-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:8 allocation score on galera-bundle-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:8 allocation score on galera-bundle-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:8 allocation score on messaging-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:8 allocation score on messaging-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:8 allocation score on messaging-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:8 allocation score on ovn-dbs-bundle-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:8 allocation score on ovn-dbs-bundle-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:8 allocation score on ovn-dbs-bundle-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:8 allocation score on rabbitmq-bundle-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:8 allocation score on rabbitmq-bundle-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:8 allocation score on rabbitmq-bundle-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:8 allocation score on redis-bundle-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:8 allocation score on redis-bundle-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:8 allocation score on redis-bundle-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:9 allocation score on compute-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:9 allocation score on compute-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:9 allocation score on controller-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:9 allocation score on controller-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:9 allocation score on controller-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:9 allocation score on database-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:9 allocation score on database-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:9 allocation score on database-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:9 allocation score on galera-bundle-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:9 allocation score on galera-bundle-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:9 allocation score on galera-bundle-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:9 allocation score on messaging-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:9 allocation score on messaging-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:9 allocation score on messaging-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:9 allocation score on ovn-dbs-bundle-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:9 allocation score on ovn-dbs-bundle-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:9 allocation score on ovn-dbs-bundle-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:9 allocation score on rabbitmq-bundle-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:9 allocation score on rabbitmq-bundle-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:9 allocation score on rabbitmq-bundle-2: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:9 allocation score on redis-bundle-0: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:9 allocation score on redis-bundle-1: -INFINITY
+pcmk__native_allocate: compute-unfence-trigger:9 allocation score on redis-bundle-2: -INFINITY
+pcmk__native_allocate: galera-bundle-0 allocation score on compute-0: -INFINITY
+pcmk__native_allocate: galera-bundle-0 allocation score on compute-1: -INFINITY
+pcmk__native_allocate: galera-bundle-0 allocation score on controller-0: 0
+pcmk__native_allocate: galera-bundle-0 allocation score on controller-1: 0
+pcmk__native_allocate: galera-bundle-0 allocation score on controller-2: 0
+pcmk__native_allocate: galera-bundle-0 allocation score on database-0: 10000
+pcmk__native_allocate: galera-bundle-0 allocation score on database-1: 0
+pcmk__native_allocate: galera-bundle-0 allocation score on database-2: 0
+pcmk__native_allocate: galera-bundle-0 allocation score on messaging-0: 0
+pcmk__native_allocate: galera-bundle-0 allocation score on messaging-1: 0
+pcmk__native_allocate: galera-bundle-0 allocation score on messaging-2: 0
+pcmk__native_allocate: galera-bundle-1 allocation score on compute-0: -INFINITY
+pcmk__native_allocate: galera-bundle-1 allocation score on compute-1: -INFINITY
+pcmk__native_allocate: galera-bundle-1 allocation score on controller-0: 0
+pcmk__native_allocate: galera-bundle-1 allocation score on controller-1: 0
+pcmk__native_allocate: galera-bundle-1 allocation score on controller-2: 0
+pcmk__native_allocate: galera-bundle-1 allocation score on database-0: 0
+pcmk__native_allocate: galera-bundle-1 allocation score on database-1: 10000
+pcmk__native_allocate: galera-bundle-1 allocation score on database-2: 0
+pcmk__native_allocate: galera-bundle-1 allocation score on messaging-0: 0
+pcmk__native_allocate: galera-bundle-1 allocation score on messaging-1: 0
+pcmk__native_allocate: galera-bundle-1 allocation score on messaging-2: 0
+pcmk__native_allocate: galera-bundle-2 allocation score on compute-0: -INFINITY
+pcmk__native_allocate: galera-bundle-2 allocation score on compute-1: -INFINITY
+pcmk__native_allocate: galera-bundle-2 allocation score on controller-0: 0
+pcmk__native_allocate: galera-bundle-2 allocation score on controller-1: 0
+pcmk__native_allocate: galera-bundle-2 allocation score on controller-2: 0
+pcmk__native_allocate: galera-bundle-2 allocation score on database-0: 0
+pcmk__native_allocate: galera-bundle-2 allocation score on database-1: 0
+pcmk__native_allocate: galera-bundle-2 allocation score on database-2: 10000
+pcmk__native_allocate: galera-bundle-2 allocation score on messaging-0: 0
+pcmk__native_allocate: galera-bundle-2 allocation score on messaging-1: 0
+pcmk__native_allocate: galera-bundle-2 allocation score on messaging-2: 0
+pcmk__native_allocate: galera-bundle-podman-0 allocation score on compute-0: -INFINITY
+pcmk__native_allocate: galera-bundle-podman-0 allocation score on compute-1: -INFINITY
+pcmk__native_allocate: galera-bundle-podman-0 allocation score on controller-0: -INFINITY
+pcmk__native_allocate: galera-bundle-podman-0 allocation score on controller-1: -INFINITY
+pcmk__native_allocate: galera-bundle-podman-0 allocation score on controller-2: -INFINITY
+pcmk__native_allocate: galera-bundle-podman-0 allocation score on database-0: 0
+pcmk__native_allocate: galera-bundle-podman-0 allocation score on database-1: 0
+pcmk__native_allocate: galera-bundle-podman-0 allocation score on database-2: 0
+pcmk__native_allocate: galera-bundle-podman-0 allocation score on messaging-0: -INFINITY
+pcmk__native_allocate: galera-bundle-podman-0 allocation score on messaging-1: -INFINITY
+pcmk__native_allocate: galera-bundle-podman-0 allocation score on messaging-2: -INFINITY
+pcmk__native_allocate: galera-bundle-podman-1 allocation score on compute-0: -INFINITY
+pcmk__native_allocate: galera-bundle-podman-1 allocation score on compute-1: -INFINITY
+pcmk__native_allocate: galera-bundle-podman-1 allocation score on controller-0: -INFINITY
+pcmk__native_allocate: galera-bundle-podman-1 allocation score on controller-1: -INFINITY
+pcmk__native_allocate: galera-bundle-podman-1 allocation score on controller-2: -INFINITY
+pcmk__native_allocate: galera-bundle-podman-1 allocation score on database-0: -INFINITY
+pcmk__native_allocate: galera-bundle-podman-1 allocation score on database-1: 0
+pcmk__native_allocate: galera-bundle-podman-1 allocation score on database-2: 0
+pcmk__native_allocate: galera-bundle-podman-1 allocation score on messaging-0: -INFINITY
+pcmk__native_allocate: galera-bundle-podman-1 allocation score on messaging-1: -INFINITY
+pcmk__native_allocate: galera-bundle-podman-1 allocation score on messaging-2: -INFINITY
+pcmk__native_allocate: galera-bundle-podman-2 allocation score on compute-0: -INFINITY
+pcmk__native_allocate: galera-bundle-podman-2 allocation score on compute-1: -INFINITY
+pcmk__native_allocate: galera-bundle-podman-2 allocation score on controller-0: -INFINITY
+pcmk__native_allocate: galera-bundle-podman-2 allocation score on controller-1: -INFINITY
+pcmk__native_allocate: galera-bundle-podman-2 allocation score on controller-2: -INFINITY
+pcmk__native_allocate: galera-bundle-podman-2 allocation score on database-0: -INFINITY
+pcmk__native_allocate: galera-bundle-podman-2 allocation score on database-1: -INFINITY
+pcmk__native_allocate: galera-bundle-podman-2 allocation score on database-2: 0
+pcmk__native_allocate: galera-bundle-podman-2 allocation score on messaging-0: -INFINITY
+pcmk__native_allocate: galera-bundle-podman-2 allocation score on messaging-1: -INFINITY
+pcmk__native_allocate: galera-bundle-podman-2 allocation score on messaging-2: -INFINITY
+pcmk__native_allocate: galera:0 allocation score on galera-bundle-0: INFINITY
+pcmk__native_allocate: galera:1 allocation score on galera-bundle-1: INFINITY
+pcmk__native_allocate: galera:2 allocation score on galera-bundle-2: INFINITY
+pcmk__native_allocate: haproxy-bundle-podman-0 allocation score on compute-0: -INFINITY
+pcmk__native_allocate: haproxy-bundle-podman-0 allocation score on compute-1: -INFINITY
+pcmk__native_allocate: haproxy-bundle-podman-0 allocation score on controller-0: INFINITY
+pcmk__native_allocate: haproxy-bundle-podman-0 allocation score on controller-1: INFINITY
+pcmk__native_allocate: haproxy-bundle-podman-0 allocation score on controller-2: INFINITY
+pcmk__native_allocate: haproxy-bundle-podman-0 allocation score on database-0: -INFINITY
+pcmk__native_allocate: haproxy-bundle-podman-0 allocation score on database-1: -INFINITY
+pcmk__native_allocate: haproxy-bundle-podman-0 allocation score on database-2: -INFINITY
+pcmk__native_allocate: haproxy-bundle-podman-0 allocation score on messaging-0: -INFINITY
+pcmk__native_allocate: haproxy-bundle-podman-0 allocation score on messaging-1: -INFINITY
+pcmk__native_allocate: haproxy-bundle-podman-0 allocation score on messaging-2: -INFINITY
+pcmk__native_allocate: haproxy-bundle-podman-1 allocation score on compute-0: -INFINITY
+pcmk__native_allocate: haproxy-bundle-podman-1 allocation score on compute-1: -INFINITY
+pcmk__native_allocate: haproxy-bundle-podman-1 allocation score on controller-0: INFINITY
+pcmk__native_allocate: haproxy-bundle-podman-1 allocation score on controller-1: INFINITY
+pcmk__native_allocate: haproxy-bundle-podman-1 allocation score on controller-2: -INFINITY
+pcmk__native_allocate: haproxy-bundle-podman-1 allocation score on database-0: -INFINITY
+pcmk__native_allocate: haproxy-bundle-podman-1 allocation score on database-1: -INFINITY
+pcmk__native_allocate: haproxy-bundle-podman-1 allocation score on database-2: -INFINITY
+pcmk__native_allocate: haproxy-bundle-podman-1 allocation score on messaging-0: -INFINITY
+pcmk__native_allocate: haproxy-bundle-podman-1 allocation score on messaging-1: -INFINITY
+pcmk__native_allocate: haproxy-bundle-podman-1 allocation score on messaging-2: -INFINITY
+pcmk__native_allocate: haproxy-bundle-podman-2 allocation score on compute-0: -INFINITY
+pcmk__native_allocate: haproxy-bundle-podman-2 allocation score on compute-1: -INFINITY
+pcmk__native_allocate: haproxy-bundle-podman-2 allocation score on controller-0: -INFINITY
+pcmk__native_allocate: haproxy-bundle-podman-2 allocation score on controller-1: INFINITY
+pcmk__native_allocate: haproxy-bundle-podman-2 allocation score on controller-2: -INFINITY
+pcmk__native_allocate: haproxy-bundle-podman-2 allocation score on database-0: -INFINITY
+pcmk__native_allocate: haproxy-bundle-podman-2 allocation score on database-1: -INFINITY
+pcmk__native_allocate: haproxy-bundle-podman-2 allocation score on database-2: -INFINITY
+pcmk__native_allocate: haproxy-bundle-podman-2 allocation score on messaging-0: -INFINITY
+pcmk__native_allocate: haproxy-bundle-podman-2 allocation score on messaging-1: -INFINITY
+pcmk__native_allocate: haproxy-bundle-podman-2 allocation score on messaging-2: -INFINITY
+pcmk__native_allocate: ip-10.0.0.150 allocation score on compute-0: -INFINITY
+pcmk__native_allocate: ip-10.0.0.150 allocation score on compute-1: -INFINITY
+pcmk__native_allocate: ip-10.0.0.150 allocation score on controller-0: INFINITY
+pcmk__native_allocate: ip-10.0.0.150 allocation score on controller-1: 0
+pcmk__native_allocate: ip-10.0.0.150 allocation score on controller-2: 0
+pcmk__native_allocate: ip-10.0.0.150 allocation score on database-0: -INFINITY
+pcmk__native_allocate: ip-10.0.0.150 allocation score on database-1: -INFINITY
+pcmk__native_allocate: ip-10.0.0.150 allocation score on database-2: -INFINITY
+pcmk__native_allocate: ip-10.0.0.150 allocation score on messaging-0: -INFINITY
+pcmk__native_allocate: ip-10.0.0.150 allocation score on messaging-1: -INFINITY
+pcmk__native_allocate: ip-10.0.0.150 allocation score on messaging-2: -INFINITY
+pcmk__native_allocate: ip-172.17.1.150 allocation score on compute-0: -INFINITY
+pcmk__native_allocate: ip-172.17.1.150 allocation score on compute-1: -INFINITY
+pcmk__native_allocate: ip-172.17.1.150 allocation score on controller-0: 0
+pcmk__native_allocate: ip-172.17.1.150 allocation score on controller-1: 0
+pcmk__native_allocate: ip-172.17.1.150 allocation score on controller-2: INFINITY
+pcmk__native_allocate: ip-172.17.1.150 allocation score on database-0: -INFINITY
+pcmk__native_allocate: ip-172.17.1.150 allocation score on database-1: -INFINITY
+pcmk__native_allocate: ip-172.17.1.150 allocation score on database-2: -INFINITY
+pcmk__native_allocate: ip-172.17.1.150 allocation score on messaging-0: -INFINITY
+pcmk__native_allocate: ip-172.17.1.150 allocation score on messaging-1: -INFINITY
+pcmk__native_allocate: ip-172.17.1.150 allocation score on messaging-2: -INFINITY
+pcmk__native_allocate: ip-172.17.1.151 allocation score on compute-0: -INFINITY
+pcmk__native_allocate: ip-172.17.1.151 allocation score on compute-1: -INFINITY
+pcmk__native_allocate: ip-172.17.1.151 allocation score on controller-0: 0
+pcmk__native_allocate: ip-172.17.1.151 allocation score on controller-1: INFINITY
+pcmk__native_allocate: ip-172.17.1.151 allocation score on controller-2: 0
+pcmk__native_allocate: ip-172.17.1.151 allocation score on database-0: -INFINITY
+pcmk__native_allocate: ip-172.17.1.151 allocation score on database-1: -INFINITY
+pcmk__native_allocate: ip-172.17.1.151 allocation score on database-2: -INFINITY
+pcmk__native_allocate: ip-172.17.1.151 allocation score on messaging-0: -INFINITY
+pcmk__native_allocate: ip-172.17.1.151 allocation score on messaging-1: -INFINITY
+pcmk__native_allocate: ip-172.17.1.151 allocation score on messaging-2: -INFINITY
+pcmk__native_allocate: ip-172.17.1.57 allocation score on compute-0: -INFINITY
+pcmk__native_allocate: ip-172.17.1.57 allocation score on compute-1: -INFINITY
+pcmk__native_allocate: ip-172.17.1.57 allocation score on controller-0: -INFINITY
+pcmk__native_allocate: ip-172.17.1.57 allocation score on controller-1: -INFINITY
+pcmk__native_allocate: ip-172.17.1.57 allocation score on controller-2: INFINITY
+pcmk__native_allocate: ip-172.17.1.57 allocation score on database-0: -INFINITY
+pcmk__native_allocate: ip-172.17.1.57 allocation score on database-1: -INFINITY
+pcmk__native_allocate: ip-172.17.1.57 allocation score on database-2: -INFINITY
+pcmk__native_allocate: ip-172.17.1.57 allocation score on messaging-0: -INFINITY
+pcmk__native_allocate: ip-172.17.1.57 allocation score on messaging-1: -INFINITY
+pcmk__native_allocate: ip-172.17.1.57 allocation score on messaging-2: -INFINITY
+pcmk__native_allocate: ip-172.17.3.150 allocation score on compute-0: -INFINITY
+pcmk__native_allocate: ip-172.17.3.150 allocation score on compute-1: -INFINITY
+pcmk__native_allocate: ip-172.17.3.150 allocation score on controller-0: INFINITY
+pcmk__native_allocate: ip-172.17.3.150 allocation score on controller-1: 0
+pcmk__native_allocate: ip-172.17.3.150 allocation score on controller-2: 0
+pcmk__native_allocate: ip-172.17.3.150 allocation score on database-0: -INFINITY
+pcmk__native_allocate: ip-172.17.3.150 allocation score on database-1: -INFINITY
+pcmk__native_allocate: ip-172.17.3.150 allocation score on database-2: -INFINITY
+pcmk__native_allocate: ip-172.17.3.150 allocation score on messaging-0: -INFINITY
+pcmk__native_allocate: ip-172.17.3.150 allocation score on messaging-1: -INFINITY
+pcmk__native_allocate: ip-172.17.3.150 allocation score on messaging-2: -INFINITY
+pcmk__native_allocate: ip-172.17.4.150 allocation score on compute-0: -INFINITY
+pcmk__native_allocate: ip-172.17.4.150 allocation score on compute-1: -INFINITY
+pcmk__native_allocate: ip-172.17.4.150 allocation score on controller-0: 0
+pcmk__native_allocate: ip-172.17.4.150 allocation score on controller-1: INFINITY
+pcmk__native_allocate: ip-172.17.4.150 allocation score on controller-2: 0
+pcmk__native_allocate: ip-172.17.4.150 allocation score on database-0: -INFINITY
+pcmk__native_allocate: ip-172.17.4.150 allocation score on database-1: -INFINITY
+pcmk__native_allocate: ip-172.17.4.150 allocation score on database-2: -INFINITY
+pcmk__native_allocate: ip-172.17.4.150 allocation score on messaging-0: -INFINITY
+pcmk__native_allocate: ip-172.17.4.150 allocation score on messaging-1: -INFINITY
+pcmk__native_allocate: ip-172.17.4.150 allocation score on messaging-2: -INFINITY
+pcmk__native_allocate: ip-192.168.24.150 allocation score on compute-0: -INFINITY
+pcmk__native_allocate: ip-192.168.24.150 allocation score on compute-1: -INFINITY
+pcmk__native_allocate: ip-192.168.24.150 allocation score on controller-0: 0
+pcmk__native_allocate: ip-192.168.24.150 allocation score on controller-1: 0
+pcmk__native_allocate: ip-192.168.24.150 allocation score on controller-2: INFINITY
+pcmk__native_allocate: ip-192.168.24.150 allocation score on database-0: -INFINITY
+pcmk__native_allocate: ip-192.168.24.150 allocation score on database-1: -INFINITY
+pcmk__native_allocate: ip-192.168.24.150 allocation score on database-2: -INFINITY
+pcmk__native_allocate: ip-192.168.24.150 allocation score on messaging-0: -INFINITY
+pcmk__native_allocate: ip-192.168.24.150 allocation score on messaging-1: -INFINITY
+pcmk__native_allocate: ip-192.168.24.150 allocation score on messaging-2: -INFINITY
+pcmk__native_allocate: nova-evacuate allocation score on compute-0: -INFINITY
+pcmk__native_allocate: nova-evacuate allocation score on compute-1: -INFINITY
+pcmk__native_allocate: nova-evacuate allocation score on controller-0: 0
+pcmk__native_allocate: nova-evacuate allocation score on controller-1: 0
+pcmk__native_allocate: nova-evacuate allocation score on controller-2: 0
+pcmk__native_allocate: nova-evacuate allocation score on database-0: 0
+pcmk__native_allocate: nova-evacuate allocation score on database-1: 0
+pcmk__native_allocate: nova-evacuate allocation score on database-2: 0
+pcmk__native_allocate: nova-evacuate allocation score on messaging-0: 0
+pcmk__native_allocate: nova-evacuate allocation score on messaging-1: 0
+pcmk__native_allocate: nova-evacuate allocation score on messaging-2: 0
+pcmk__native_allocate: openstack-cinder-volume-podman-0 allocation score on compute-0: -INFINITY
+pcmk__native_allocate: openstack-cinder-volume-podman-0 allocation score on compute-1: -INFINITY
+pcmk__native_allocate: openstack-cinder-volume-podman-0 allocation score on controller-0: 0
+pcmk__native_allocate: openstack-cinder-volume-podman-0 allocation score on controller-1: 0
+pcmk__native_allocate: openstack-cinder-volume-podman-0 allocation score on controller-2: 0
+pcmk__native_allocate: openstack-cinder-volume-podman-0 allocation score on database-0: -INFINITY
+pcmk__native_allocate: openstack-cinder-volume-podman-0 allocation score on database-1: -INFINITY
+pcmk__native_allocate: openstack-cinder-volume-podman-0 allocation score on database-2: -INFINITY
+pcmk__native_allocate: openstack-cinder-volume-podman-0 allocation score on messaging-0: -INFINITY
+pcmk__native_allocate: openstack-cinder-volume-podman-0 allocation score on messaging-1: -INFINITY
+pcmk__native_allocate: openstack-cinder-volume-podman-0 allocation score on messaging-2: -INFINITY
+pcmk__native_allocate: ovn-dbs-bundle-0 allocation score on compute-0: -INFINITY
+pcmk__native_allocate: ovn-dbs-bundle-0 allocation score on compute-1: -INFINITY
+pcmk__native_allocate: ovn-dbs-bundle-0 allocation score on controller-0: 0
+pcmk__native_allocate: ovn-dbs-bundle-0 allocation score on controller-1: 0
+pcmk__native_allocate: ovn-dbs-bundle-0 allocation score on controller-2: 10000
+pcmk__native_allocate: ovn-dbs-bundle-0 allocation score on database-0: 0
+pcmk__native_allocate: ovn-dbs-bundle-0 allocation score on database-1: 0
+pcmk__native_allocate: ovn-dbs-bundle-0 allocation score on database-2: 0
+pcmk__native_allocate: ovn-dbs-bundle-0 allocation score on messaging-0: 0
+pcmk__native_allocate: ovn-dbs-bundle-0 allocation score on messaging-1: 0
+pcmk__native_allocate: ovn-dbs-bundle-0 allocation score on messaging-2: 0
+pcmk__native_allocate: ovn-dbs-bundle-1 allocation score on compute-0: -INFINITY
+pcmk__native_allocate: ovn-dbs-bundle-1 allocation score on compute-1: -INFINITY
+pcmk__native_allocate: ovn-dbs-bundle-1 allocation score on controller-0: 10000
+pcmk__native_allocate: ovn-dbs-bundle-1 allocation score on controller-1: 0
+pcmk__native_allocate: ovn-dbs-bundle-1 allocation score on controller-2: 0
+pcmk__native_allocate: ovn-dbs-bundle-1 allocation score on database-0: 0
+pcmk__native_allocate: ovn-dbs-bundle-1 allocation score on database-1: 0
+pcmk__native_allocate: ovn-dbs-bundle-1 allocation score on database-2: 0
+pcmk__native_allocate: ovn-dbs-bundle-1 allocation score on messaging-0: 0
+pcmk__native_allocate: ovn-dbs-bundle-1 allocation score on messaging-1: 0
+pcmk__native_allocate: ovn-dbs-bundle-1 allocation score on messaging-2: 0
+pcmk__native_allocate: ovn-dbs-bundle-2 allocation score on compute-0: -INFINITY
+pcmk__native_allocate: ovn-dbs-bundle-2 allocation score on compute-1: -INFINITY
+pcmk__native_allocate: ovn-dbs-bundle-2 allocation score on controller-0: 0
+pcmk__native_allocate: ovn-dbs-bundle-2 allocation score on controller-1: 10000
+pcmk__native_allocate: ovn-dbs-bundle-2 allocation score on controller-2: 0
+pcmk__native_allocate: ovn-dbs-bundle-2 allocation score on database-0: 0
+pcmk__native_allocate: ovn-dbs-bundle-2 allocation score on database-1: 0
+pcmk__native_allocate: ovn-dbs-bundle-2 allocation score on database-2: 0
+pcmk__native_allocate: ovn-dbs-bundle-2 allocation score on messaging-0: 0
+pcmk__native_allocate: ovn-dbs-bundle-2 allocation score on messaging-1: 0
+pcmk__native_allocate: ovn-dbs-bundle-2 allocation score on messaging-2: 0
+pcmk__native_allocate: ovn-dbs-bundle-podman-0 allocation score on compute-0: -INFINITY
+pcmk__native_allocate: ovn-dbs-bundle-podman-0 allocation score on compute-1: -INFINITY
+pcmk__native_allocate: ovn-dbs-bundle-podman-0 allocation score on controller-0: 0
+pcmk__native_allocate: ovn-dbs-bundle-podman-0 allocation score on controller-1: 0
+pcmk__native_allocate: ovn-dbs-bundle-podman-0 allocation score on controller-2: INFINITY
+pcmk__native_allocate: ovn-dbs-bundle-podman-0 allocation score on database-0: -INFINITY
+pcmk__native_allocate: ovn-dbs-bundle-podman-0 allocation score on database-1: -INFINITY
+pcmk__native_allocate: ovn-dbs-bundle-podman-0 allocation score on database-2: -INFINITY
+pcmk__native_allocate: ovn-dbs-bundle-podman-0 allocation score on messaging-0: -INFINITY
+pcmk__native_allocate: ovn-dbs-bundle-podman-0 allocation score on messaging-1: -INFINITY
+pcmk__native_allocate: ovn-dbs-bundle-podman-0 allocation score on messaging-2: -INFINITY
+pcmk__native_allocate: ovn-dbs-bundle-podman-1 allocation score on compute-0: -INFINITY
+pcmk__native_allocate: ovn-dbs-bundle-podman-1 allocation score on compute-1: -INFINITY
+pcmk__native_allocate: ovn-dbs-bundle-podman-1 allocation score on controller-0: 0
+pcmk__native_allocate: ovn-dbs-bundle-podman-1 allocation score on controller-1: 0
+pcmk__native_allocate: ovn-dbs-bundle-podman-1 allocation score on controller-2: -INFINITY
+pcmk__native_allocate: ovn-dbs-bundle-podman-1 allocation score on database-0: -INFINITY
+pcmk__native_allocate: ovn-dbs-bundle-podman-1 allocation score on database-1: -INFINITY
+pcmk__native_allocate: ovn-dbs-bundle-podman-1 allocation score on database-2: -INFINITY
+pcmk__native_allocate: ovn-dbs-bundle-podman-1 allocation score on messaging-0: -INFINITY
+pcmk__native_allocate: ovn-dbs-bundle-podman-1 allocation score on messaging-1: -INFINITY
+pcmk__native_allocate: ovn-dbs-bundle-podman-1 allocation score on messaging-2: -INFINITY
+pcmk__native_allocate: ovn-dbs-bundle-podman-2 allocation score on compute-0: -INFINITY
+pcmk__native_allocate: ovn-dbs-bundle-podman-2 allocation score on compute-1: -INFINITY
+pcmk__native_allocate: ovn-dbs-bundle-podman-2 allocation score on controller-0: -INFINITY
+pcmk__native_allocate: ovn-dbs-bundle-podman-2 allocation score on controller-1: 0
+pcmk__native_allocate: ovn-dbs-bundle-podman-2 allocation score on controller-2: -INFINITY
+pcmk__native_allocate: ovn-dbs-bundle-podman-2 allocation score on database-0: -INFINITY
+pcmk__native_allocate: ovn-dbs-bundle-podman-2 allocation score on database-1: -INFINITY
+pcmk__native_allocate: ovn-dbs-bundle-podman-2 allocation score on database-2: -INFINITY
+pcmk__native_allocate: ovn-dbs-bundle-podman-2 allocation score on messaging-0: -INFINITY
+pcmk__native_allocate: ovn-dbs-bundle-podman-2 allocation score on messaging-1: -INFINITY
+pcmk__native_allocate: ovn-dbs-bundle-podman-2 allocation score on messaging-2: -INFINITY
+pcmk__native_allocate: ovndb_servers:0 allocation score on ovn-dbs-bundle-0: INFINITY
+pcmk__native_allocate: ovndb_servers:1 allocation score on ovn-dbs-bundle-1: INFINITY
+pcmk__native_allocate: ovndb_servers:2 allocation score on ovn-dbs-bundle-2: INFINITY
+pcmk__native_allocate: rabbitmq-bundle-0 allocation score on compute-0: -INFINITY
+pcmk__native_allocate: rabbitmq-bundle-0 allocation score on compute-1: -INFINITY
+pcmk__native_allocate: rabbitmq-bundle-0 allocation score on controller-0: 0
+pcmk__native_allocate: rabbitmq-bundle-0 allocation score on controller-1: 0
+pcmk__native_allocate: rabbitmq-bundle-0 allocation score on controller-2: 0
+pcmk__native_allocate: rabbitmq-bundle-0 allocation score on database-0: 0
+pcmk__native_allocate: rabbitmq-bundle-0 allocation score on database-1: 0
+pcmk__native_allocate: rabbitmq-bundle-0 allocation score on database-2: 0
+pcmk__native_allocate: rabbitmq-bundle-0 allocation score on messaging-0: 10000
+pcmk__native_allocate: rabbitmq-bundle-0 allocation score on messaging-1: 0
+pcmk__native_allocate: rabbitmq-bundle-0 allocation score on messaging-2: 0
+pcmk__native_allocate: rabbitmq-bundle-1 allocation score on compute-0: -INFINITY
+pcmk__native_allocate: rabbitmq-bundle-1 allocation score on compute-1: -INFINITY
+pcmk__native_allocate: rabbitmq-bundle-1 allocation score on controller-0: 0
+pcmk__native_allocate: rabbitmq-bundle-1 allocation score on controller-1: 0
+pcmk__native_allocate: rabbitmq-bundle-1 allocation score on controller-2: 0
+pcmk__native_allocate: rabbitmq-bundle-1 allocation score on database-0: 0
+pcmk__native_allocate: rabbitmq-bundle-1 allocation score on database-1: 0
+pcmk__native_allocate: rabbitmq-bundle-1 allocation score on database-2: 0
+pcmk__native_allocate: rabbitmq-bundle-1 allocation score on messaging-0: 0
+pcmk__native_allocate: rabbitmq-bundle-1 allocation score on messaging-1: 10000
+pcmk__native_allocate: rabbitmq-bundle-1 allocation score on messaging-2: 0
+pcmk__native_allocate: rabbitmq-bundle-2 allocation score on compute-0: -INFINITY
+pcmk__native_allocate: rabbitmq-bundle-2 allocation score on compute-1: -INFINITY
+pcmk__native_allocate: rabbitmq-bundle-2 allocation score on controller-0: 0
+pcmk__native_allocate: rabbitmq-bundle-2 allocation score on controller-1: 0
+pcmk__native_allocate: rabbitmq-bundle-2 allocation score on controller-2: 0
+pcmk__native_allocate: rabbitmq-bundle-2 allocation score on database-0: 0
+pcmk__native_allocate: rabbitmq-bundle-2 allocation score on database-1: 0
+pcmk__native_allocate: rabbitmq-bundle-2 allocation score on database-2: 0
+pcmk__native_allocate: rabbitmq-bundle-2 allocation score on messaging-0: 0
+pcmk__native_allocate: rabbitmq-bundle-2 allocation score on messaging-1: 0
+pcmk__native_allocate: rabbitmq-bundle-2 allocation score on messaging-2: 10000
+pcmk__native_allocate: rabbitmq-bundle-podman-0 allocation score on compute-0: -INFINITY
+pcmk__native_allocate: rabbitmq-bundle-podman-0 allocation score on compute-1: -INFINITY
+pcmk__native_allocate: rabbitmq-bundle-podman-0 allocation score on controller-0: -INFINITY
+pcmk__native_allocate: rabbitmq-bundle-podman-0 allocation score on controller-1: -INFINITY
+pcmk__native_allocate: rabbitmq-bundle-podman-0 allocation score on controller-2: -INFINITY
+pcmk__native_allocate: rabbitmq-bundle-podman-0 allocation score on database-0: -INFINITY
+pcmk__native_allocate: rabbitmq-bundle-podman-0 allocation score on database-1: -INFINITY
+pcmk__native_allocate: rabbitmq-bundle-podman-0 allocation score on database-2: -INFINITY
+pcmk__native_allocate: rabbitmq-bundle-podman-0 allocation score on messaging-0: 0
+pcmk__native_allocate: rabbitmq-bundle-podman-0 allocation score on messaging-1: 0
+pcmk__native_allocate: rabbitmq-bundle-podman-0 allocation score on messaging-2: 0
+pcmk__native_allocate: rabbitmq-bundle-podman-1 allocation score on compute-0: -INFINITY
+pcmk__native_allocate: rabbitmq-bundle-podman-1 allocation score on compute-1: -INFINITY
+pcmk__native_allocate: rabbitmq-bundle-podman-1 allocation score on controller-0: -INFINITY
+pcmk__native_allocate: rabbitmq-bundle-podman-1 allocation score on controller-1: -INFINITY
+pcmk__native_allocate: rabbitmq-bundle-podman-1 allocation score on controller-2: -INFINITY
+pcmk__native_allocate: rabbitmq-bundle-podman-1 allocation score on database-0: -INFINITY
+pcmk__native_allocate: rabbitmq-bundle-podman-1 allocation score on database-1: -INFINITY
+pcmk__native_allocate: rabbitmq-bundle-podman-1 allocation score on database-2: -INFINITY
+pcmk__native_allocate: rabbitmq-bundle-podman-1 allocation score on messaging-0: -INFINITY
+pcmk__native_allocate: rabbitmq-bundle-podman-1 allocation score on messaging-1: 0
+pcmk__native_allocate: rabbitmq-bundle-podman-1 allocation score on messaging-2: 0
+pcmk__native_allocate: rabbitmq-bundle-podman-2 allocation score on compute-0: -INFINITY
+pcmk__native_allocate: rabbitmq-bundle-podman-2 allocation score on compute-1: -INFINITY
+pcmk__native_allocate: rabbitmq-bundle-podman-2 allocation score on controller-0: -INFINITY
+pcmk__native_allocate: rabbitmq-bundle-podman-2 allocation score on controller-1: -INFINITY
+pcmk__native_allocate: rabbitmq-bundle-podman-2 allocation score on controller-2: -INFINITY
+pcmk__native_allocate: rabbitmq-bundle-podman-2 allocation score on database-0: -INFINITY
+pcmk__native_allocate: rabbitmq-bundle-podman-2 allocation score on database-1: -INFINITY
+pcmk__native_allocate: rabbitmq-bundle-podman-2 allocation score on database-2: -INFINITY
+pcmk__native_allocate: rabbitmq-bundle-podman-2 allocation score on messaging-0: -INFINITY
+pcmk__native_allocate: rabbitmq-bundle-podman-2 allocation score on messaging-1: -INFINITY
+pcmk__native_allocate: rabbitmq-bundle-podman-2 allocation score on messaging-2: 0
+pcmk__native_allocate: rabbitmq:0 allocation score on rabbitmq-bundle-0: INFINITY
+pcmk__native_allocate: rabbitmq:1 allocation score on rabbitmq-bundle-1: INFINITY
+pcmk__native_allocate: rabbitmq:2 allocation score on rabbitmq-bundle-2: INFINITY
+pcmk__native_allocate: redis-bundle-0 allocation score on compute-0: -INFINITY
+pcmk__native_allocate: redis-bundle-0 allocation score on compute-1: -INFINITY
+pcmk__native_allocate: redis-bundle-0 allocation score on controller-0: 0
+pcmk__native_allocate: redis-bundle-0 allocation score on controller-1: 0
+pcmk__native_allocate: redis-bundle-0 allocation score on controller-2: 10000
+pcmk__native_allocate: redis-bundle-0 allocation score on database-0: 0
+pcmk__native_allocate: redis-bundle-0 allocation score on database-1: 0
+pcmk__native_allocate: redis-bundle-0 allocation score on database-2: 0
+pcmk__native_allocate: redis-bundle-0 allocation score on messaging-0: 0
+pcmk__native_allocate: redis-bundle-0 allocation score on messaging-1: 0
+pcmk__native_allocate: redis-bundle-0 allocation score on messaging-2: 0
+pcmk__native_allocate: redis-bundle-1 allocation score on compute-0: -INFINITY
+pcmk__native_allocate: redis-bundle-1 allocation score on compute-1: -INFINITY
+pcmk__native_allocate: redis-bundle-1 allocation score on controller-0: 10000
+pcmk__native_allocate: redis-bundle-1 allocation score on controller-1: 0
+pcmk__native_allocate: redis-bundle-1 allocation score on controller-2: 0
+pcmk__native_allocate: redis-bundle-1 allocation score on database-0: 0
+pcmk__native_allocate: redis-bundle-1 allocation score on database-1: 0
+pcmk__native_allocate: redis-bundle-1 allocation score on database-2: 0
+pcmk__native_allocate: redis-bundle-1 allocation score on messaging-0: 0
+pcmk__native_allocate: redis-bundle-1 allocation score on messaging-1: 0
+pcmk__native_allocate: redis-bundle-1 allocation score on messaging-2: 0
+pcmk__native_allocate: redis-bundle-2 allocation score on compute-0: -INFINITY
+pcmk__native_allocate: redis-bundle-2 allocation score on compute-1: -INFINITY
+pcmk__native_allocate: redis-bundle-2 allocation score on controller-0: 0
+pcmk__native_allocate: redis-bundle-2 allocation score on controller-1: 10000
+pcmk__native_allocate: redis-bundle-2 allocation score on controller-2: 0
+pcmk__native_allocate: redis-bundle-2 allocation score on database-0: 0
+pcmk__native_allocate: redis-bundle-2 allocation score on database-1: 0
+pcmk__native_allocate: redis-bundle-2 allocation score on database-2: 0
+pcmk__native_allocate: redis-bundle-2 allocation score on messaging-0: 0
+pcmk__native_allocate: redis-bundle-2 allocation score on messaging-1: 0
+pcmk__native_allocate: redis-bundle-2 allocation score on messaging-2: 0
+pcmk__native_allocate: redis-bundle-podman-0 allocation score on compute-0: -INFINITY
+pcmk__native_allocate: redis-bundle-podman-0 allocation score on compute-1: -INFINITY
+pcmk__native_allocate: redis-bundle-podman-0 allocation score on controller-0: 0
+pcmk__native_allocate: redis-bundle-podman-0 allocation score on controller-1: 0
+pcmk__native_allocate: redis-bundle-podman-0 allocation score on controller-2: 0
+pcmk__native_allocate: redis-bundle-podman-0 allocation score on database-0: -INFINITY
+pcmk__native_allocate: redis-bundle-podman-0 allocation score on database-1: -INFINITY
+pcmk__native_allocate: redis-bundle-podman-0 allocation score on database-2: -INFINITY
+pcmk__native_allocate: redis-bundle-podman-0 allocation score on messaging-0: -INFINITY
+pcmk__native_allocate: redis-bundle-podman-0 allocation score on messaging-1: -INFINITY
+pcmk__native_allocate: redis-bundle-podman-0 allocation score on messaging-2: -INFINITY
+pcmk__native_allocate: redis-bundle-podman-1 allocation score on compute-0: -INFINITY
+pcmk__native_allocate: redis-bundle-podman-1 allocation score on compute-1: -INFINITY
+pcmk__native_allocate: redis-bundle-podman-1 allocation score on controller-0: 0
+pcmk__native_allocate: redis-bundle-podman-1 allocation score on controller-1: 0
+pcmk__native_allocate: redis-bundle-podman-1 allocation score on controller-2: -INFINITY
+pcmk__native_allocate: redis-bundle-podman-1 allocation score on database-0: -INFINITY
+pcmk__native_allocate: redis-bundle-podman-1 allocation score on database-1: -INFINITY
+pcmk__native_allocate: redis-bundle-podman-1 allocation score on database-2: -INFINITY
+pcmk__native_allocate: redis-bundle-podman-1 allocation score on messaging-0: -INFINITY
+pcmk__native_allocate: redis-bundle-podman-1 allocation score on messaging-1: -INFINITY
+pcmk__native_allocate: redis-bundle-podman-1 allocation score on messaging-2: -INFINITY
+pcmk__native_allocate: redis-bundle-podman-2 allocation score on compute-0: -INFINITY
+pcmk__native_allocate: redis-bundle-podman-2 allocation score on compute-1: -INFINITY
+pcmk__native_allocate: redis-bundle-podman-2 allocation score on controller-0: -INFINITY
+pcmk__native_allocate: redis-bundle-podman-2 allocation score on controller-1: 0
+pcmk__native_allocate: redis-bundle-podman-2 allocation score on controller-2: -INFINITY
+pcmk__native_allocate: redis-bundle-podman-2 allocation score on database-0: -INFINITY
+pcmk__native_allocate: redis-bundle-podman-2 allocation score on database-1: -INFINITY
+pcmk__native_allocate: redis-bundle-podman-2 allocation score on database-2: -INFINITY
+pcmk__native_allocate: redis-bundle-podman-2 allocation score on messaging-0: -INFINITY
+pcmk__native_allocate: redis-bundle-podman-2 allocation score on messaging-1: -INFINITY
+pcmk__native_allocate: redis-bundle-podman-2 allocation score on messaging-2: -INFINITY
+pcmk__native_allocate: redis:0 allocation score on redis-bundle-0: INFINITY
+pcmk__native_allocate: redis:1 allocation score on redis-bundle-1: INFINITY
+pcmk__native_allocate: redis:2 allocation score on redis-bundle-2: INFINITY
+pcmk__native_allocate: stonith-fence_compute-fence-nova allocation score on compute-0: -INFINITY
+pcmk__native_allocate: stonith-fence_compute-fence-nova allocation score on compute-1: -INFINITY
+pcmk__native_allocate: stonith-fence_compute-fence-nova allocation score on controller-0: 0
+pcmk__native_allocate: stonith-fence_compute-fence-nova allocation score on controller-1: 0
+pcmk__native_allocate: stonith-fence_compute-fence-nova allocation score on controller-2: 0
+pcmk__native_allocate: stonith-fence_compute-fence-nova allocation score on database-0: 0
+pcmk__native_allocate: stonith-fence_compute-fence-nova allocation score on database-1: 0
+pcmk__native_allocate: stonith-fence_compute-fence-nova allocation score on database-2: 0
+pcmk__native_allocate: stonith-fence_compute-fence-nova allocation score on messaging-0: 0
+pcmk__native_allocate: stonith-fence_compute-fence-nova allocation score on messaging-1: 0
+pcmk__native_allocate: stonith-fence_compute-fence-nova allocation score on messaging-2: 0
+pcmk__native_allocate: stonith-fence_ipmilan-5254001f5f3c allocation score on compute-0: -INFINITY
+pcmk__native_allocate: stonith-fence_ipmilan-5254001f5f3c allocation score on compute-1: -INFINITY
+pcmk__native_allocate: stonith-fence_ipmilan-5254001f5f3c allocation score on controller-0: 0
+pcmk__native_allocate: stonith-fence_ipmilan-5254001f5f3c allocation score on controller-1: 0
+pcmk__native_allocate: stonith-fence_ipmilan-5254001f5f3c allocation score on controller-2: 0
+pcmk__native_allocate: stonith-fence_ipmilan-5254001f5f3c allocation score on database-0: -10000
+pcmk__native_allocate: stonith-fence_ipmilan-5254001f5f3c allocation score on database-1: 0
+pcmk__native_allocate: stonith-fence_ipmilan-5254001f5f3c allocation score on database-2: 0
+pcmk__native_allocate: stonith-fence_ipmilan-5254001f5f3c allocation score on messaging-0: 0
+pcmk__native_allocate: stonith-fence_ipmilan-5254001f5f3c allocation score on messaging-1: 0
+pcmk__native_allocate: stonith-fence_ipmilan-5254001f5f3c allocation score on messaging-2: 0
+pcmk__native_allocate: stonith-fence_ipmilan-52540033df9c allocation score on compute-0: -INFINITY
+pcmk__native_allocate: stonith-fence_ipmilan-52540033df9c allocation score on compute-1: -INFINITY
+pcmk__native_allocate: stonith-fence_ipmilan-52540033df9c allocation score on controller-0: 0
+pcmk__native_allocate: stonith-fence_ipmilan-52540033df9c allocation score on controller-1: 0
+pcmk__native_allocate: stonith-fence_ipmilan-52540033df9c allocation score on controller-2: 0
+pcmk__native_allocate: stonith-fence_ipmilan-52540033df9c allocation score on database-0: 0
+pcmk__native_allocate: stonith-fence_ipmilan-52540033df9c allocation score on database-1: 0
+pcmk__native_allocate: stonith-fence_ipmilan-52540033df9c allocation score on database-2: 0
+pcmk__native_allocate: stonith-fence_ipmilan-52540033df9c allocation score on messaging-0: 0
+pcmk__native_allocate: stonith-fence_ipmilan-52540033df9c allocation score on messaging-1: 0
+pcmk__native_allocate: stonith-fence_ipmilan-52540033df9c allocation score on messaging-2: -10000
+pcmk__native_allocate: stonith-fence_ipmilan-5254003f88b4 allocation score on compute-0: -INFINITY
+pcmk__native_allocate: stonith-fence_ipmilan-5254003f88b4 allocation score on compute-1: -INFINITY
+pcmk__native_allocate: stonith-fence_ipmilan-5254003f88b4 allocation score on controller-0: 0
+pcmk__native_allocate: stonith-fence_ipmilan-5254003f88b4 allocation score on controller-1: 0
+pcmk__native_allocate: stonith-fence_ipmilan-5254003f88b4 allocation score on controller-2: -10000
+pcmk__native_allocate: stonith-fence_ipmilan-5254003f88b4 allocation score on database-0: 0
+pcmk__native_allocate: stonith-fence_ipmilan-5254003f88b4 allocation score on database-1: 0
+pcmk__native_allocate: stonith-fence_ipmilan-5254003f88b4 allocation score on database-2: 0
+pcmk__native_allocate: stonith-fence_ipmilan-5254003f88b4 allocation score on messaging-0: 0
+pcmk__native_allocate: stonith-fence_ipmilan-5254003f88b4 allocation score on messaging-1: 0
+pcmk__native_allocate: stonith-fence_ipmilan-5254003f88b4 allocation score on messaging-2: 0
+pcmk__native_allocate: stonith-fence_ipmilan-525400642894 allocation score on compute-0: -INFINITY
+pcmk__native_allocate: stonith-fence_ipmilan-525400642894 allocation score on compute-1: -INFINITY
+pcmk__native_allocate: stonith-fence_ipmilan-525400642894 allocation score on controller-0: 0
+pcmk__native_allocate: stonith-fence_ipmilan-525400642894 allocation score on controller-1: 0
+pcmk__native_allocate: stonith-fence_ipmilan-525400642894 allocation score on controller-2: 0
+pcmk__native_allocate: stonith-fence_ipmilan-525400642894 allocation score on database-0: 0
+pcmk__native_allocate: stonith-fence_ipmilan-525400642894 allocation score on database-1: 0
+pcmk__native_allocate: stonith-fence_ipmilan-525400642894 allocation score on database-2: 0
+pcmk__native_allocate: stonith-fence_ipmilan-525400642894 allocation score on messaging-0: 0
+pcmk__native_allocate: stonith-fence_ipmilan-525400642894 allocation score on messaging-1: 0
+pcmk__native_allocate: stonith-fence_ipmilan-525400642894 allocation score on messaging-2: 0
+pcmk__native_allocate: stonith-fence_ipmilan-5254007b7920 allocation score on compute-0: -INFINITY
+pcmk__native_allocate: stonith-fence_ipmilan-5254007b7920 allocation score on compute-1: -INFINITY
+pcmk__native_allocate: stonith-fence_ipmilan-5254007b7920 allocation score on controller-0: 0
+pcmk__native_allocate: stonith-fence_ipmilan-5254007b7920 allocation score on controller-1: -10000
+pcmk__native_allocate: stonith-fence_ipmilan-5254007b7920 allocation score on controller-2: 0
+pcmk__native_allocate: stonith-fence_ipmilan-5254007b7920 allocation score on database-0: 0
+pcmk__native_allocate: stonith-fence_ipmilan-5254007b7920 allocation score on database-1: 0
+pcmk__native_allocate: stonith-fence_ipmilan-5254007b7920 allocation score on database-2: 0
+pcmk__native_allocate: stonith-fence_ipmilan-5254007b7920 allocation score on messaging-0: 0
+pcmk__native_allocate: stonith-fence_ipmilan-5254007b7920 allocation score on messaging-1: 0
+pcmk__native_allocate: stonith-fence_ipmilan-5254007b7920 allocation score on messaging-2: 0
+pcmk__native_allocate: stonith-fence_ipmilan-5254009cb549 allocation score on compute-0: -INFINITY
+pcmk__native_allocate: stonith-fence_ipmilan-5254009cb549 allocation score on compute-1: -INFINITY
+pcmk__native_allocate: stonith-fence_ipmilan-5254009cb549 allocation score on controller-0: 0
+pcmk__native_allocate: stonith-fence_ipmilan-5254009cb549 allocation score on controller-1: 0
+pcmk__native_allocate: stonith-fence_ipmilan-5254009cb549 allocation score on controller-2: 0
+pcmk__native_allocate: stonith-fence_ipmilan-5254009cb549 allocation score on database-0: 0
+pcmk__native_allocate: stonith-fence_ipmilan-5254009cb549 allocation score on database-1: 0
+pcmk__native_allocate: stonith-fence_ipmilan-5254009cb549 allocation score on database-2: 0
+pcmk__native_allocate: stonith-fence_ipmilan-5254009cb549 allocation score on messaging-0: 0
+pcmk__native_allocate: stonith-fence_ipmilan-5254009cb549 allocation score on messaging-1: -10000
+pcmk__native_allocate: stonith-fence_ipmilan-5254009cb549 allocation score on messaging-2: 0
+pcmk__native_allocate: stonith-fence_ipmilan-525400bb150b allocation score on compute-0: -INFINITY
+pcmk__native_allocate: stonith-fence_ipmilan-525400bb150b allocation score on compute-1: -INFINITY
+pcmk__native_allocate: stonith-fence_ipmilan-525400bb150b allocation score on controller-0: 0
+pcmk__native_allocate: stonith-fence_ipmilan-525400bb150b allocation score on controller-1: 0
+pcmk__native_allocate: stonith-fence_ipmilan-525400bb150b allocation score on controller-2: 0
+pcmk__native_allocate: stonith-fence_ipmilan-525400bb150b allocation score on database-0: 0
+pcmk__native_allocate: stonith-fence_ipmilan-525400bb150b allocation score on database-1: 0
+pcmk__native_allocate: stonith-fence_ipmilan-525400bb150b allocation score on database-2: -10000
+pcmk__native_allocate: stonith-fence_ipmilan-525400bb150b allocation score on messaging-0: 0
+pcmk__native_allocate: stonith-fence_ipmilan-525400bb150b allocation score on messaging-1: 0
+pcmk__native_allocate: stonith-fence_ipmilan-525400bb150b allocation score on messaging-2: 0
+pcmk__native_allocate: stonith-fence_ipmilan-525400d5382b allocation score on compute-0: -INFINITY
+pcmk__native_allocate: stonith-fence_ipmilan-525400d5382b allocation score on compute-1: -INFINITY
+pcmk__native_allocate: stonith-fence_ipmilan-525400d5382b allocation score on controller-0: 0
+pcmk__native_allocate: stonith-fence_ipmilan-525400d5382b allocation score on controller-1: 0
+pcmk__native_allocate: stonith-fence_ipmilan-525400d5382b allocation score on controller-2: 0
+pcmk__native_allocate: stonith-fence_ipmilan-525400d5382b allocation score on database-0: 0
+pcmk__native_allocate: stonith-fence_ipmilan-525400d5382b allocation score on database-1: 0
+pcmk__native_allocate: stonith-fence_ipmilan-525400d5382b allocation score on database-2: 0
+pcmk__native_allocate: stonith-fence_ipmilan-525400d5382b allocation score on messaging-0: 0
+pcmk__native_allocate: stonith-fence_ipmilan-525400d5382b allocation score on messaging-1: 0
+pcmk__native_allocate: stonith-fence_ipmilan-525400d5382b allocation score on messaging-2: 0
+pcmk__native_allocate: stonith-fence_ipmilan-525400dc0f81 allocation score on compute-0: -INFINITY
+pcmk__native_allocate: stonith-fence_ipmilan-525400dc0f81 allocation score on compute-1: -INFINITY
+pcmk__native_allocate: stonith-fence_ipmilan-525400dc0f81 allocation score on controller-0: -10000
+pcmk__native_allocate: stonith-fence_ipmilan-525400dc0f81 allocation score on controller-1: 0
+pcmk__native_allocate: stonith-fence_ipmilan-525400dc0f81 allocation score on controller-2: 0
+pcmk__native_allocate: stonith-fence_ipmilan-525400dc0f81 allocation score on database-0: 0
+pcmk__native_allocate: stonith-fence_ipmilan-525400dc0f81 allocation score on database-1: 0
+pcmk__native_allocate: stonith-fence_ipmilan-525400dc0f81 allocation score on database-2: 0
+pcmk__native_allocate: stonith-fence_ipmilan-525400dc0f81 allocation score on messaging-0: 0
+pcmk__native_allocate: stonith-fence_ipmilan-525400dc0f81 allocation score on messaging-1: 0
+pcmk__native_allocate: stonith-fence_ipmilan-525400dc0f81 allocation score on messaging-2: 0
+pcmk__native_allocate: stonith-fence_ipmilan-525400e10267 allocation score on compute-0: -INFINITY
+pcmk__native_allocate: stonith-fence_ipmilan-525400e10267 allocation score on compute-1: -INFINITY
+pcmk__native_allocate: stonith-fence_ipmilan-525400e10267 allocation score on controller-0: 0
+pcmk__native_allocate: stonith-fence_ipmilan-525400e10267 allocation score on controller-1: 0
+pcmk__native_allocate: stonith-fence_ipmilan-525400e10267 allocation score on controller-2: 0
+pcmk__native_allocate: stonith-fence_ipmilan-525400e10267 allocation score on database-0: 0
+pcmk__native_allocate: stonith-fence_ipmilan-525400e10267 allocation score on database-1: 0
+pcmk__native_allocate: stonith-fence_ipmilan-525400e10267 allocation score on database-2: 0
+pcmk__native_allocate: stonith-fence_ipmilan-525400e10267 allocation score on messaging-0: -10000
+pcmk__native_allocate: stonith-fence_ipmilan-525400e10267 allocation score on messaging-1: 0
+pcmk__native_allocate: stonith-fence_ipmilan-525400e10267 allocation score on messaging-2: 0
+pcmk__native_allocate: stonith-fence_ipmilan-525400ffc780 allocation score on compute-0: -INFINITY
+pcmk__native_allocate: stonith-fence_ipmilan-525400ffc780 allocation score on compute-1: -INFINITY
+pcmk__native_allocate: stonith-fence_ipmilan-525400ffc780 allocation score on controller-0: 0
+pcmk__native_allocate: stonith-fence_ipmilan-525400ffc780 allocation score on controller-1: 0
+pcmk__native_allocate: stonith-fence_ipmilan-525400ffc780 allocation score on controller-2: 0
+pcmk__native_allocate: stonith-fence_ipmilan-525400ffc780 allocation score on database-0: 0
+pcmk__native_allocate: stonith-fence_ipmilan-525400ffc780 allocation score on database-1: -10000
+pcmk__native_allocate: stonith-fence_ipmilan-525400ffc780 allocation score on database-2: 0
+pcmk__native_allocate: stonith-fence_ipmilan-525400ffc780 allocation score on messaging-0: 0
+pcmk__native_allocate: stonith-fence_ipmilan-525400ffc780 allocation score on messaging-1: 0
+pcmk__native_allocate: stonith-fence_ipmilan-525400ffc780 allocation score on messaging-2: 0
+redis:0 promotion score on redis-bundle-0: 1
+redis:1 promotion score on redis-bundle-1: 1
+redis:2 promotion score on redis-bundle-2: 1
diff --git a/cts/scheduler/remote-connection-shutdown.summary b/cts/scheduler/remote-connection-shutdown.summary
new file mode 100644
index 0000000..8756c33
--- /dev/null
+++ b/cts/scheduler/remote-connection-shutdown.summary
@@ -0,0 +1,186 @@
+Using the original execution date of: 2020-11-17 07:03:16Z
+
+Current cluster status:
+Online: [ controller-0 controller-1 controller-2 database-0 database-1 database-2 messaging-0 messaging-1 messaging-2 ]
+RemoteOnline: [ compute-0 compute-1 ]
+GuestOnline: [ galera-bundle-0:galera-bundle-podman-0 galera-bundle-1:galera-bundle-podman-1 galera-bundle-2:galera-bundle-podman-2 ovn-dbs-bundle-0:ovn-dbs-bundle-podman-0 ovn-dbs-bundle-1:ovn-dbs-bundle-podman-1 ovn-dbs-bundle-2:ovn-dbs-bundle-podman-2 rabbitmq-bundle-0:rabbitmq-bundle-podman-0 rabbitmq-bundle-1:rabbitmq-bundle-podman-1 rabbitmq-bundle-2:rabbitmq-bundle-podman-2 redis-bundle-0:redis-bundle-podman-0 redis-bundle-1:redis-bundle-podman-1 redis-bundle-2:redis-bundle-podman-2 ]
+
+ compute-0	(ocf::pacemaker:remote):	 Started controller-0
+ compute-1	(ocf::pacemaker:remote):	 Started controller-1
+ Container bundle set: galera-bundle [cluster.common.tag/mariadb:pcmklatest]
+   galera-bundle-0	(ocf::heartbeat:galera):	 Master database-0
+   galera-bundle-1	(ocf::heartbeat:galera):	 Master database-1
+   galera-bundle-2	(ocf::heartbeat:galera):	 Master database-2
+ Container bundle set: rabbitmq-bundle [cluster.common.tag/rabbitmq:pcmklatest]
+   rabbitmq-bundle-0	(ocf::heartbeat:rabbitmq-cluster):	 Started messaging-0
+   rabbitmq-bundle-1	(ocf::heartbeat:rabbitmq-cluster):	 Started messaging-1
+   rabbitmq-bundle-2	(ocf::heartbeat:rabbitmq-cluster):	 Started messaging-2
+ Container bundle set: redis-bundle [cluster.common.tag/redis:pcmklatest]
+   redis-bundle-0	(ocf::heartbeat:redis):	 Master controller-2
+   redis-bundle-1	(ocf::heartbeat:redis):	 Slave controller-0
+   redis-bundle-2	(ocf::heartbeat:redis):	 Slave controller-1
+ ip-192.168.24.150	(ocf::heartbeat:IPaddr2):	 Started controller-2
+ ip-10.0.0.150	(ocf::heartbeat:IPaddr2):	 Started controller-0
+ ip-172.17.1.151	(ocf::heartbeat:IPaddr2):	 Started controller-1
+ ip-172.17.1.150	(ocf::heartbeat:IPaddr2):	 Started controller-2
+ ip-172.17.3.150	(ocf::heartbeat:IPaddr2):	 Started controller-0
+ ip-172.17.4.150	(ocf::heartbeat:IPaddr2):	 Started controller-1
+ Container bundle set: haproxy-bundle [cluster.common.tag/haproxy:pcmklatest]
+   haproxy-bundle-podman-0	(ocf::heartbeat:podman):	 Started controller-2
+   haproxy-bundle-podman-1	(ocf::heartbeat:podman):	 Started controller-0
+   haproxy-bundle-podman-2	(ocf::heartbeat:podman):	 Started controller-1
+ Container bundle set: ovn-dbs-bundle [cluster.common.tag/ovn-northd:pcmklatest]
+   ovn-dbs-bundle-0	(ocf::ovn:ovndb-servers):	 Master controller-2
+   ovn-dbs-bundle-1	(ocf::ovn:ovndb-servers):	 Slave controller-0
+   ovn-dbs-bundle-2	(ocf::ovn:ovndb-servers):	 Slave controller-1
+ ip-172.17.1.57	(ocf::heartbeat:IPaddr2):	 Started controller-2
+ stonith-fence_compute-fence-nova	(stonith:fence_compute):	 Stopped
+ Clone Set: compute-unfence-trigger-clone [compute-unfence-trigger]
+     Started: [ compute-0 compute-1 ]
+     Stopped: [ controller-0 controller-1 controller-2 database-0 database-1 database-2 messaging-0 messaging-1 messaging-2 ]
+ nova-evacuate	(ocf::openstack:NovaEvacuate):	 Started database-0
+ stonith-fence_ipmilan-52540033df9c	(stonith:fence_ipmilan):	 Started database-1
+ stonith-fence_ipmilan-5254001f5f3c	(stonith:fence_ipmilan):	 Started database-2
+ stonith-fence_ipmilan-5254003f88b4	(stonith:fence_ipmilan):	 Started messaging-0
+ stonith-fence_ipmilan-5254007b7920	(stonith:fence_ipmilan):	 Started messaging-1
+ stonith-fence_ipmilan-525400642894	(stonith:fence_ipmilan):	 Started messaging-2
+ stonith-fence_ipmilan-525400d5382b	(stonith:fence_ipmilan):	 Started database-2
+ stonith-fence_ipmilan-525400bb150b	(stonith:fence_ipmilan):	 Started messaging-0
+ stonith-fence_ipmilan-525400ffc780	(stonith:fence_ipmilan):	 Started messaging-2
+ stonith-fence_ipmilan-5254009cb549	(stonith:fence_ipmilan):	 Started database-0
+ stonith-fence_ipmilan-525400e10267	(stonith:fence_ipmilan):	 Started messaging-1
+ stonith-fence_ipmilan-525400dc0f81	(stonith:fence_ipmilan):	 Started database-1
+ Container bundle: openstack-cinder-volume [cluster.common.tag/cinder-volume:pcmklatest]
+   openstack-cinder-volume-podman-0	(ocf::heartbeat:podman):	 Started controller-0
+
+Only 'private' parameters to stonith-fence_compute-fence-nova for unfencing compute-0 changed
+Only 'private' parameters to stonith-fence_compute-fence-nova for unfencing compute-1 changed
+Only 'private' parameters to stonith-fence_ipmilan-5254009cb549_start_0 on database-0 changed: 0:0;322:1375:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269
+Only 'private' parameters to stonith-fence_ipmilan-5254009cb549_monitor_60000 on database-0 changed: 0:0;323:1375:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269
+Only 'private' parameters to nova-evacuate_start_0 on database-0 changed: 0:0;258:1420:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269
+Only 'private' parameters to nova-evacuate_monitor_10000 on database-0 changed: 0:0;259:1420:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269
+Only 'private' parameters to stonith-fence_ipmilan-525400dc0f81_start_0 on database-1 changed: 0:0;330:1380:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269
+Only 'private' parameters to stonith-fence_ipmilan-525400dc0f81_monitor_60000 on database-1 changed: 0:0;331:1380:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269
+Only 'private' parameters to stonith-fence_ipmilan-52540033df9c_start_0 on database-1 changed: 0:0;261:1420:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269
+Only 'private' parameters to stonith-fence_ipmilan-52540033df9c_monitor_60000 on database-1 changed: 0:0;263:1420:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269
+Only 'private' parameters to stonith-fence_ipmilan-525400d5382b_start_0 on database-2 changed: 0:0;319:1374:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269
+Only 'private' parameters to stonith-fence_ipmilan-525400d5382b_monitor_60000 on database-2 changed: 0:0;320:1374:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269
+Only 'private' parameters to stonith-fence_ipmilan-5254001f5f3c_start_0 on database-2 changed: 0:0;263:1422:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269
+Only 'private' parameters to stonith-fence_ipmilan-5254001f5f3c_monitor_60000 on database-2 changed: 0:0;265:1422:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269
+Only 'private' parameters to stonith-fence_ipmilan-525400e10267_start_0 on messaging-1 changed: 0:0;320:1317:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269
+Only 'private' parameters to stonith-fence_ipmilan-525400e10267_monitor_60000 on messaging-1 changed: 0:0;326:1318:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269
+Only 'private' parameters to stonith-fence_ipmilan-5254007b7920_start_0 on messaging-1 changed: 0:0;271:1422:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269
+Only 'private' parameters to stonith-fence_ipmilan-5254007b7920_monitor_60000 on messaging-1 changed: 0:0;273:1422:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269
+Only 'private' parameters to stonith-fence_ipmilan-525400bb150b_start_0 on messaging-0 changed: 0:0;324:70:0:40f880e4-b328-4380-9703-47856390a1e0
+Only 'private' parameters to stonith-fence_ipmilan-525400bb150b_monitor_60000 on messaging-0 changed: 0:0;325:70:0:40f880e4-b328-4380-9703-47856390a1e0
+Only 'private' parameters to stonith-fence_ipmilan-5254003f88b4_start_0 on messaging-0 changed: 0:0;267:1422:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269
+Only 'private' parameters to stonith-fence_ipmilan-5254003f88b4_monitor_60000 on messaging-0 changed: 0:0;269:1422:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269
+Only 'private' parameters to stonith-fence_ipmilan-525400642894_start_0 on messaging-2 changed: 0:0;272:1424:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269
+Only 'private' parameters to stonith-fence_ipmilan-525400642894_monitor_60000 on messaging-2 changed: 0:0;274:1424:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269
+Only 'private' parameters to stonith-fence_ipmilan-525400ffc780_start_0 on messaging-2 changed: 0:0;321:49:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269
+Only 'private' parameters to stonith-fence_ipmilan-525400ffc780_monitor_60000 on messaging-2 changed: 0:0;323:50:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269
+Transition Summary:
+ * Stop       compute-0                            (               controller-0 )   due to node availability
+ * Start      stonith-fence_compute-fence-nova     (                 database-0 )  
+ * Stop       compute-unfence-trigger:0            (                  compute-0 )   due to node availability
+ * Move       nova-evacuate                        (   database-0 -> database-1 )  
+ * Move       stonith-fence_ipmilan-52540033df9c   (   database-1 -> database-2 )  
+ * Move       stonith-fence_ipmilan-5254001f5f3c   (  database-2 -> messaging-0 )  
+ * Move       stonith-fence_ipmilan-5254003f88b4   ( messaging-0 -> messaging-1 )  
+ * Move       stonith-fence_ipmilan-5254007b7920   ( messaging-1 -> messaging-2 )  
+ * Move       stonith-fence_ipmilan-525400ffc780   (  messaging-2 -> database-0 )  
+ * Move       stonith-fence_ipmilan-5254009cb549   (   database-0 -> database-1 )  
+
+Executing cluster transition:
+ * Resource action: stonith-fence_compute-fence-nova start on database-0
+ * Cluster action:  clear_failcount for stonith-fence_compute-fence-nova on messaging-2
+ * Cluster action:  clear_failcount for stonith-fence_compute-fence-nova on messaging-0
+ * Cluster action:  clear_failcount for stonith-fence_compute-fence-nova on messaging-1
+ * Cluster action:  clear_failcount for stonith-fence_compute-fence-nova on controller-2
+ * Cluster action:  clear_failcount for stonith-fence_compute-fence-nova on controller-1
+ * Cluster action:  clear_failcount for stonith-fence_compute-fence-nova on controller-0
+ * Cluster action:  clear_failcount for stonith-fence_compute-fence-nova on database-2
+ * Cluster action:  clear_failcount for stonith-fence_compute-fence-nova on database-1
+ * Cluster action:  clear_failcount for stonith-fence_compute-fence-nova on database-0
+ * Pseudo action:   compute-unfence-trigger-clone_stop_0
+ * Resource action: nova-evacuate   stop on database-0
+ * Resource action: stonith-fence_ipmilan-52540033df9c stop on database-1
+ * Resource action: stonith-fence_ipmilan-5254001f5f3c stop on database-2
+ * Resource action: stonith-fence_ipmilan-5254003f88b4 stop on messaging-0
+ * Resource action: stonith-fence_ipmilan-5254007b7920 stop on messaging-1
+ * Resource action: stonith-fence_ipmilan-525400ffc780 stop on messaging-2
+ * Resource action: stonith-fence_ipmilan-5254009cb549 stop on database-0
+ * Resource action: stonith-fence_compute-fence-nova monitor=60000 on database-0
+ * Resource action: compute-unfence-trigger stop on compute-0
+ * Pseudo action:   compute-unfence-trigger-clone_stopped_0
+ * Resource action: nova-evacuate   start on database-1
+ * Resource action: stonith-fence_ipmilan-52540033df9c start on database-2
+ * Resource action: stonith-fence_ipmilan-5254001f5f3c start on messaging-0
+ * Resource action: stonith-fence_ipmilan-5254003f88b4 start on messaging-1
+ * Resource action: stonith-fence_ipmilan-5254007b7920 start on messaging-2
+ * Resource action: stonith-fence_ipmilan-525400ffc780 start on database-0
+ * Resource action: stonith-fence_ipmilan-5254009cb549 start on database-1
+ * Resource action: compute-0       stop on controller-0
+ * Resource action: nova-evacuate   monitor=10000 on database-1
+ * Resource action: stonith-fence_ipmilan-52540033df9c monitor=60000 on database-2
+ * Resource action: stonith-fence_ipmilan-5254001f5f3c monitor=60000 on messaging-0
+ * Resource action: stonith-fence_ipmilan-5254003f88b4 monitor=60000 on messaging-1
+ * Resource action: stonith-fence_ipmilan-5254007b7920 monitor=60000 on messaging-2
+ * Resource action: stonith-fence_ipmilan-525400ffc780 monitor=60000 on database-0
+ * Resource action: stonith-fence_ipmilan-5254009cb549 monitor=60000 on database-1
+Using the original execution date of: 2020-11-17 07:03:16Z
+
+Revised cluster status:
+Online: [ controller-0 controller-1 controller-2 database-0 database-1 database-2 messaging-0 messaging-1 messaging-2 ]
+RemoteOnline: [ compute-1 ]
+RemoteOFFLINE: [ compute-0 ]
+GuestOnline: [ galera-bundle-0:galera-bundle-podman-0 galera-bundle-1:galera-bundle-podman-1 galera-bundle-2:galera-bundle-podman-2 ovn-dbs-bundle-0:ovn-dbs-bundle-podman-0 ovn-dbs-bundle-1:ovn-dbs-bundle-podman-1 ovn-dbs-bundle-2:ovn-dbs-bundle-podman-2 rabbitmq-bundle-0:rabbitmq-bundle-podman-0 rabbitmq-bundle-1:rabbitmq-bundle-podman-1 rabbitmq-bundle-2:rabbitmq-bundle-podman-2 redis-bundle-0:redis-bundle-podman-0 redis-bundle-1:redis-bundle-podman-1 redis-bundle-2:redis-bundle-podman-2 ]
+
+ compute-0	(ocf::pacemaker:remote):	 Stopped
+ compute-1	(ocf::pacemaker:remote):	 Started controller-1
+ Container bundle set: galera-bundle [cluster.common.tag/mariadb:pcmklatest]
+   galera-bundle-0	(ocf::heartbeat:galera):	 Master database-0
+   galera-bundle-1	(ocf::heartbeat:galera):	 Master database-1
+   galera-bundle-2	(ocf::heartbeat:galera):	 Master database-2
+ Container bundle set: rabbitmq-bundle [cluster.common.tag/rabbitmq:pcmklatest]
+   rabbitmq-bundle-0	(ocf::heartbeat:rabbitmq-cluster):	 Started messaging-0
+   rabbitmq-bundle-1	(ocf::heartbeat:rabbitmq-cluster):	 Started messaging-1
+   rabbitmq-bundle-2	(ocf::heartbeat:rabbitmq-cluster):	 Started messaging-2
+ Container bundle set: redis-bundle [cluster.common.tag/redis:pcmklatest]
+   redis-bundle-0	(ocf::heartbeat:redis):	 Master controller-2
+   redis-bundle-1	(ocf::heartbeat:redis):	 Slave controller-0
+   redis-bundle-2	(ocf::heartbeat:redis):	 Slave controller-1
+ ip-192.168.24.150	(ocf::heartbeat:IPaddr2):	 Started controller-2
+ ip-10.0.0.150	(ocf::heartbeat:IPaddr2):	 Started controller-0
+ ip-172.17.1.151	(ocf::heartbeat:IPaddr2):	 Started controller-1
+ ip-172.17.1.150	(ocf::heartbeat:IPaddr2):	 Started controller-2
+ ip-172.17.3.150	(ocf::heartbeat:IPaddr2):	 Started controller-0
+ ip-172.17.4.150	(ocf::heartbeat:IPaddr2):	 Started controller-1
+ Container bundle set: haproxy-bundle [cluster.common.tag/haproxy:pcmklatest]
+   haproxy-bundle-podman-0	(ocf::heartbeat:podman):	 Started controller-2
+   haproxy-bundle-podman-1	(ocf::heartbeat:podman):	 Started controller-0
+   haproxy-bundle-podman-2	(ocf::heartbeat:podman):	 Started controller-1
+ Container bundle set: ovn-dbs-bundle [cluster.common.tag/ovn-northd:pcmklatest]
+   ovn-dbs-bundle-0	(ocf::ovn:ovndb-servers):	 Master controller-2
+   ovn-dbs-bundle-1	(ocf::ovn:ovndb-servers):	 Slave controller-0
+   ovn-dbs-bundle-2	(ocf::ovn:ovndb-servers):	 Slave controller-1
+ ip-172.17.1.57	(ocf::heartbeat:IPaddr2):	 Started controller-2
+ stonith-fence_compute-fence-nova	(stonith:fence_compute):	 Started database-0
+ Clone Set: compute-unfence-trigger-clone [compute-unfence-trigger]
+     Started: [ compute-1 ]
+     Stopped: [ compute-0 controller-0 controller-1 controller-2 database-0 database-1 database-2 messaging-0 messaging-1 messaging-2 ]
+ nova-evacuate	(ocf::openstack:NovaEvacuate):	 Started database-1
+ stonith-fence_ipmilan-52540033df9c	(stonith:fence_ipmilan):	 Started database-2
+ stonith-fence_ipmilan-5254001f5f3c	(stonith:fence_ipmilan):	 Started messaging-0
+ stonith-fence_ipmilan-5254003f88b4	(stonith:fence_ipmilan):	 Started messaging-1
+ stonith-fence_ipmilan-5254007b7920	(stonith:fence_ipmilan):	 Started messaging-2
+ stonith-fence_ipmilan-525400642894	(stonith:fence_ipmilan):	 Started messaging-2
+ stonith-fence_ipmilan-525400d5382b	(stonith:fence_ipmilan):	 Started database-2
+ stonith-fence_ipmilan-525400bb150b	(stonith:fence_ipmilan):	 Started messaging-0
+ stonith-fence_ipmilan-525400ffc780	(stonith:fence_ipmilan):	 Started database-0
+ stonith-fence_ipmilan-5254009cb549	(stonith:fence_ipmilan):	 Started database-1
+ stonith-fence_ipmilan-525400e10267	(stonith:fence_ipmilan):	 Started messaging-1
+ stonith-fence_ipmilan-525400dc0f81	(stonith:fence_ipmilan):	 Started database-1
+ Container bundle: openstack-cinder-volume [cluster.common.tag/cinder-volume:pcmklatest]
+   openstack-cinder-volume-podman-0	(ocf::heartbeat:podman):	 Started controller-0
+
diff --git a/cts/scheduler/remote-connection-shutdown.xml b/cts/scheduler/remote-connection-shutdown.xml
new file mode 100644
index 0000000..0e4f995
--- /dev/null
+++ b/cts/scheduler/remote-connection-shutdown.xml
@@ -0,0 +1,2109 @@
+<cib crm_feature_set="3.6.1" validate-with="pacemaker-3.4" epoch="397" num_updates="1" admin_epoch="0" cib-last-written="Tue Nov 17 05:25:05 2020" update-origin="controller-0" update-client="cibadmin" update-user="root" have-quorum="1" dc-uuid="3" execution-date="1605596596">
+  <configuration>
+    <crm_config>
+      <cluster_property_set id="cib-bootstrap-options">
+        <nvpair id="cib-bootstrap-options-have-watchdog" name="have-watchdog" value="false"/>
+        <nvpair id="cib-bootstrap-options-dc-version" name="dc-version" value="2.0.5-2.el8-31aa4f5515"/>
+        <nvpair id="cib-bootstrap-options-cluster-infrastructure" name="cluster-infrastructure" value="corosync"/>
+        <nvpair id="cib-bootstrap-options-cluster-name" name="cluster-name" value="tripleo_cluster"/>
+        <nvpair id="cib-bootstrap-options-stonith-enabled" name="stonith-enabled" value="true"/>
+        <nvpair id="cib-bootstrap-options-cluster-recheck-interval" name="cluster-recheck-interval" value="60s"/>
+      </cluster_property_set>
+      <cluster_property_set id="redis_replication">
+        <nvpair id="redis_replication-redis_REPL_INFO" name="redis_REPL_INFO" value="controller-2"/>
+      </cluster_property_set>
+      <cluster_property_set id="ovn_ovsdb_master_server">
+        <nvpair id="ovn_ovsdb_master_server-OVN_REPL_INFO" name="OVN_REPL_INFO" value="controller-2"/>
+      </cluster_property_set>
+    </crm_config>
+    <nodes>
+      <node id="1" uname="controller-0">
+        <instance_attributes id="nodes-1">
+          <nvpair id="nodes-1-redis-role" name="redis-role" value="true"/>
+          <nvpair id="nodes-1-haproxy-role" name="haproxy-role" value="true"/>
+          <nvpair id="nodes-1-ovn-dbs-role" name="ovn-dbs-role" value="true"/>
+          <nvpair id="nodes-1-cinder-volume-role" name="cinder-volume-role" value="true"/>
+        </instance_attributes>
+      </node>
+      <node id="2" uname="controller-1">
+        <instance_attributes id="nodes-2">
+          <nvpair id="nodes-2-redis-role" name="redis-role" value="true"/>
+          <nvpair id="nodes-2-haproxy-role" name="haproxy-role" value="true"/>
+          <nvpair id="nodes-2-ovn-dbs-role" name="ovn-dbs-role" value="true"/>
+          <nvpair id="nodes-2-cinder-volume-role" name="cinder-volume-role" value="true"/>
+        </instance_attributes>
+      </node>
+      <node id="3" uname="controller-2">
+        <instance_attributes id="nodes-3">
+          <nvpair id="nodes-3-redis-role" name="redis-role" value="true"/>
+          <nvpair id="nodes-3-haproxy-role" name="haproxy-role" value="true"/>
+          <nvpair id="nodes-3-ovn-dbs-role" name="ovn-dbs-role" value="true"/>
+          <nvpair id="nodes-3-cinder-volume-role" name="cinder-volume-role" value="true"/>
+        </instance_attributes>
+      </node>
+      <node id="4" uname="database-0">
+        <instance_attributes id="nodes-4">
+          <nvpair id="nodes-4-galera-role" name="galera-role" value="true"/>
+        </instance_attributes>
+      </node>
+      <node id="5" uname="database-1">
+        <instance_attributes id="nodes-5">
+          <nvpair id="nodes-5-galera-role" name="galera-role" value="true"/>
+        </instance_attributes>
+      </node>
+      <node id="6" uname="database-2">
+        <instance_attributes id="nodes-6">
+          <nvpair id="nodes-6-galera-role" name="galera-role" value="true"/>
+        </instance_attributes>
+      </node>
+      <node id="7" uname="messaging-0">
+        <instance_attributes id="nodes-7">
+          <nvpair id="nodes-7-rabbitmq-role" name="rabbitmq-role" value="true"/>
+          <nvpair id="nodes-7-rmq-node-attr-last-known-rabbitmq" name="rmq-node-attr-last-known-rabbitmq" value="rabbit@messaging-0"/>
+        </instance_attributes>
+      </node>
+      <node id="8" uname="messaging-1">
+        <instance_attributes id="nodes-8">
+          <nvpair id="nodes-8-rabbitmq-role" name="rabbitmq-role" value="true"/>
+          <nvpair id="nodes-8-rmq-node-attr-last-known-rabbitmq" name="rmq-node-attr-last-known-rabbitmq" value="rabbit@messaging-1"/>
+        </instance_attributes>
+      </node>
+      <node id="9" uname="messaging-2">
+        <instance_attributes id="nodes-9">
+          <nvpair id="nodes-9-rabbitmq-role" name="rabbitmq-role" value="true"/>
+          <nvpair id="nodes-9-rmq-node-attr-last-known-rabbitmq" name="rmq-node-attr-last-known-rabbitmq" value="rabbit@messaging-2"/>
+        </instance_attributes>
+      </node>
+      <node id="compute-1" type="remote" uname="compute-1">
+        <instance_attributes id="nodes-compute-1">
+          <nvpair id="nodes-compute-1-compute-instanceha-role" name="compute-instanceha-role" value="true"/>
+        </instance_attributes>
+      </node>
+      <node id="compute-0" type="remote" uname="compute-0">
+        <instance_attributes id="nodes-compute-0">
+          <nvpair id="nodes-compute-0-compute-instanceha-role" name="compute-instanceha-role" value="true"/>
+        </instance_attributes>
+      </node>
+    </nodes>
+    <resources>
+      <primitive class="ocf" id="compute-0" provider="pacemaker" type="remote">
+        <instance_attributes id="compute-0-instance_attributes">
+          <nvpair id="compute-0-instance_attributes-server" name="server" value="172.17.1.105"/>
+        </instance_attributes>
+        <operations>
+          <op id="compute-0-migrate_from-interval-0s" interval="0s" name="migrate_from" timeout="60s"/>
+          <op id="compute-0-migrate_to-interval-0s" interval="0s" name="migrate_to" timeout="60s"/>
+          <op id="compute-0-monitor-interval-20" interval="20" name="monitor"/>
+          <op id="compute-0-reload-interval-0s" interval="0s" name="reload" timeout="60s"/>
+          <op id="compute-0-start-interval-0s" interval="0s" name="start" timeout="60s"/>
+          <op id="compute-0-stop-interval-0s" interval="0s" name="stop" timeout="60s"/>
+        </operations>
+      </primitive>
+      <primitive class="ocf" id="compute-1" provider="pacemaker" type="remote">
+        <instance_attributes id="compute-1-instance_attributes">
+          <nvpair id="compute-1-instance_attributes-server" name="server" value="172.17.1.99"/>
+        </instance_attributes>
+        <operations>
+          <op id="compute-1-migrate_from-interval-0s" interval="0s" name="migrate_from" timeout="60s"/>
+          <op id="compute-1-migrate_to-interval-0s" interval="0s" name="migrate_to" timeout="60s"/>
+          <op id="compute-1-monitor-interval-20" interval="20" name="monitor"/>
+          <op id="compute-1-reload-interval-0s" interval="0s" name="reload" timeout="60s"/>
+          <op id="compute-1-start-interval-0s" interval="0s" name="start" timeout="60s"/>
+          <op id="compute-1-stop-interval-0s" interval="0s" name="stop" timeout="60s"/>
+        </operations>
+      </primitive>
+      <bundle id="galera-bundle">
+        <meta_attributes id="galera-bundle-meta_attributes"/>
+        <podman image="cluster.common.tag/mariadb:pcmklatest" network="host" options="--user=root --log-driver=k8s-file --log-opt path=/var/log/containers/stdouts/galera-bundle.log -e KOLLA_CONFIG_STRATEGY=COPY_ALWAYS" promoted-max="3" replicas="3" run-command="/bin/bash /usr/local/bin/kolla_start"/>
+        <network control-port="3123"/>
+        <storage>
+          <storage-mapping id="mysql-cfg-files" options="ro" source-dir="/var/lib/kolla/config_files/mysql.json" target-dir="/var/lib/kolla/config_files/config.json"/>
+          <storage-mapping id="mysql-cfg-data" options="ro" source-dir="/var/lib/config-data/puppet-generated/mysql/" target-dir="/var/lib/kolla/config_files/src"/>
+          <storage-mapping id="mysql-hosts" options="ro" source-dir="/etc/hosts" target-dir="/etc/hosts"/>
+          <storage-mapping id="mysql-localtime" options="ro" source-dir="/etc/localtime" target-dir="/etc/localtime"/>
+          <storage-mapping id="mysql-lib" options="rw" source-dir="/var/lib/mysql" target-dir="/var/lib/mysql"/>
+          <storage-mapping id="mysql-log-mariadb" options="rw" source-dir="/var/log/mariadb" target-dir="/var/log/mariadb"/>
+          <storage-mapping id="mysql-log" options="rw" source-dir="/var/log/containers/mysql" target-dir="/var/log/mysql"/>
+          <storage-mapping id="mysql-dev-log" options="rw" source-dir="/dev/log" target-dir="/dev/log"/>
+          <storage-mapping id="mysql-pki-gcomm-key" options="ro" source-dir="/etc/pki/tls/private/mysql.key" target-dir="/var/lib/kolla/config_files/src-tls/etc/pki/tls/private/mysql.key"/>
+          <storage-mapping id="mysql-pki-gcomm-cert" options="ro" source-dir="/etc/pki/tls/certs/mysql.crt" target-dir="/var/lib/kolla/config_files/src-tls/etc/pki/tls/certs/mysql.crt"/>
+          <storage-mapping id="mysql-pki-gcomm-ca" options="ro" source-dir="/etc/ipa/ca.crt" target-dir="/var/lib/kolla/config_files/src-tls/etc/ipa/ca.crt"/>
+        </storage>
+        <primitive class="ocf" id="galera" provider="heartbeat" type="galera">
+          <instance_attributes id="galera-instance_attributes">
+            <nvpair id="galera-instance_attributes-additional_parameters" name="additional_parameters" value="--open-files-limit=16384"/>
+            <nvpair id="galera-instance_attributes-cluster_host_map" name="cluster_host_map" value="database-0:database-0.internalapi.redhat.local;database-1:database-1.internalapi.redhat.local;database-2:database-2.internalapi.redhat.local"/>
+            <nvpair id="galera-instance_attributes-enable_creation" name="enable_creation" value="true"/>
+            <nvpair id="galera-instance_attributes-log" name="log" value="/var/log/mysql/mysqld.log"/>
+            <nvpair id="galera-instance_attributes-wsrep_cluster_address" name="wsrep_cluster_address" value="gcomm://database-0.internalapi.redhat.local,database-1.internalapi.redhat.local,database-2.internalapi.redhat.local"/>
+          </instance_attributes>
+          <meta_attributes id="galera-meta_attributes">
+            <nvpair id="galera-meta_attributes-container-attribute-target" name="container-attribute-target" value="host"/>
+            <nvpair id="galera-meta_attributes-master-max" name="master-max" value="3"/>
+            <nvpair id="galera-meta_attributes-ordered" name="ordered" value="true"/>
+          </meta_attributes>
+          <operations>
+            <op id="galera-demote-interval-0s" interval="0s" name="demote" timeout="120s"/>
+            <op id="galera-monitor-interval-20s" interval="20s" name="monitor" timeout="30s"/>
+            <op id="galera-monitor-interval-10s" interval="10s" name="monitor" role="Master" timeout="30s"/>
+            <op id="galera-monitor-interval-30s" interval="30s" name="monitor" role="Slave" timeout="30s"/>
+            <op id="galera-promote-interval-0s" interval="0s" name="promote" on-fail="block" timeout="300s"/>
+            <op id="galera-start-interval-0s" interval="0s" name="start" timeout="120s"/>
+            <op id="galera-stop-interval-0s" interval="0s" name="stop" timeout="120s"/>
+          </operations>
+        </primitive>
+      </bundle>
+      <bundle id="rabbitmq-bundle">
+        <meta_attributes id="rabbitmq-bundle-meta_attributes"/>
+        <podman image="cluster.common.tag/rabbitmq:pcmklatest" network="host" options="--user=root --log-driver=k8s-file --log-opt path=/var/log/containers/stdouts/rabbitmq-bundle.log -e KOLLA_CONFIG_STRATEGY=COPY_ALWAYS -e LANG=en_US.UTF-8 -e LC_ALL=en_US.UTF-8" replicas="3" run-command="/bin/bash /usr/local/bin/kolla_start"/>
+        <network control-port="3122"/>
+        <storage>
+          <storage-mapping id="rabbitmq-cfg-files" options="ro" source-dir="/var/lib/kolla/config_files/rabbitmq.json" target-dir="/var/lib/kolla/config_files/config.json"/>
+          <storage-mapping id="rabbitmq-cfg-data" options="ro" source-dir="/var/lib/config-data/puppet-generated/rabbitmq/" target-dir="/var/lib/kolla/config_files/src"/>
+          <storage-mapping id="rabbitmq-hosts" options="ro" source-dir="/etc/hosts" target-dir="/etc/hosts"/>
+          <storage-mapping id="rabbitmq-localtime" options="ro" source-dir="/etc/localtime" target-dir="/etc/localtime"/>
+          <storage-mapping id="rabbitmq-lib" options="rw" source-dir="/var/lib/rabbitmq" target-dir="/var/lib/rabbitmq"/>
+          <storage-mapping id="rabbitmq-pki-extracted" options="ro" source-dir="/etc/pki/ca-trust/extracted" target-dir="/etc/pki/ca-trust/extracted"/>
+          <storage-mapping id="rabbitmq-pki-ca-bundle-crt" options="ro" source-dir="/etc/pki/tls/certs/ca-bundle.crt" target-dir="/etc/pki/tls/certs/ca-bundle.crt"/>
+          <storage-mapping id="rabbitmq-pki-ca-bundle-trust-crt" options="ro" source-dir="/etc/pki/tls/certs/ca-bundle.trust.crt" target-dir="/etc/pki/tls/certs/ca-bundle.trust.crt"/>
+          <storage-mapping id="rabbitmq-pki-cert" options="ro" source-dir="/etc/pki/tls/certs/rabbitmq.crt" target-dir="/var/lib/kolla/config_files/src-tls/etc/pki/tls/certs/rabbitmq.crt"/>
+          <storage-mapping id="rabbitmq-log" options="rw" source-dir="/var/log/containers/rabbitmq" target-dir="/var/log/rabbitmq"/>
+          <storage-mapping id="rabbitmq-dev-log" options="rw" source-dir="/dev/log" target-dir="/dev/log"/>
+          <storage-mapping id="rabbitmq-pki-key" options="ro" source-dir="/etc/pki/tls/private/rabbitmq.key" target-dir="/var/lib/kolla/config_files/src-tls/etc/pki/tls/private/rabbitmq.key"/>
+        </storage>
+        <primitive class="ocf" id="rabbitmq" provider="heartbeat" type="rabbitmq-cluster">
+          <instance_attributes id="rabbitmq-instance_attributes">
+            <nvpair id="rabbitmq-instance_attributes-set_policy" name="set_policy" value="ha-all ^(?!amq\.).* {&quot;ha-mode&quot;:&quot;exactly&quot;,&quot;ha-params&quot;:2,&quot;ha-promote-on-shutdown&quot;:&quot;always&quot;}"/>
+          </instance_attributes>
+          <meta_attributes id="rabbitmq-meta_attributes">
+            <nvpair id="rabbitmq-meta_attributes-container-attribute-target" name="container-attribute-target" value="host"/>
+            <nvpair id="rabbitmq-meta_attributes-notify" name="notify" value="true"/>
+          </meta_attributes>
+          <operations>
+            <op id="rabbitmq-monitor-interval-10s" interval="10s" name="monitor" timeout="40s"/>
+            <op id="rabbitmq-start-interval-0s" interval="0s" name="start" timeout="200s"/>
+            <op id="rabbitmq-stop-interval-0s" interval="0s" name="stop" timeout="200s"/>
+          </operations>
+        </primitive>
+      </bundle>
+      <bundle id="redis-bundle">
+        <meta_attributes id="redis-bundle-meta_attributes"/>
+        <podman image="cluster.common.tag/redis:pcmklatest" network="host" options="--user=root --log-driver=k8s-file --log-opt path=/var/log/containers/stdouts/redis-bundle.log -e KOLLA_CONFIG_STRATEGY=COPY_ALWAYS" promoted-max="1" replicas="3" run-command="/bin/bash /usr/local/bin/kolla_start"/>
+        <network control-port="3124"/>
+        <storage>
+          <storage-mapping id="redis-cfg-files" options="ro" source-dir="/var/lib/kolla/config_files/redis.json" target-dir="/var/lib/kolla/config_files/config.json"/>
+          <storage-mapping id="redis-cfg-data-redis" options="ro" source-dir="/var/lib/config-data/puppet-generated/redis/" target-dir="/var/lib/kolla/config_files/src"/>
+          <storage-mapping id="redis-hosts" options="ro" source-dir="/etc/hosts" target-dir="/etc/hosts"/>
+          <storage-mapping id="redis-localtime" options="ro" source-dir="/etc/localtime" target-dir="/etc/localtime"/>
+          <storage-mapping id="redis-lib" options="rw" source-dir="/var/lib/redis" target-dir="/var/lib/redis"/>
+          <storage-mapping id="redis-log" options="rw" source-dir="/var/log/containers/redis" target-dir="/var/log/redis"/>
+          <storage-mapping id="redis-run" options="rw,z" source-dir="/var/run/redis" target-dir="/var/run/redis"/>
+          <storage-mapping id="redis-pki-extracted" options="ro" source-dir="/etc/pki/ca-trust/extracted" target-dir="/etc/pki/ca-trust/extracted"/>
+          <storage-mapping id="redis-pki-ca-bundle-crt" options="ro" source-dir="/etc/pki/tls/certs/ca-bundle.crt" target-dir="/etc/pki/tls/certs/ca-bundle.crt"/>
+          <storage-mapping id="redis-pki-ca-bundle-trust-crt" options="ro" source-dir="/etc/pki/tls/certs/ca-bundle.trust.crt" target-dir="/etc/pki/tls/certs/ca-bundle.trust.crt"/>
+          <storage-mapping id="redis-pki-cert" options="ro" source-dir="/etc/pki/tls/cert.pem" target-dir="/etc/pki/tls/cert.pem"/>
+          <storage-mapping id="redis-dev-log" options="rw" source-dir="/dev/log" target-dir="/dev/log"/>
+          <storage-mapping id="redis-pki-gcomm-key" options="ro" source-dir="/etc/pki/tls/private/redis.key" target-dir="/var/lib/kolla/config_files/src-tls/etc/pki/tls/private/redis.key"/>
+          <storage-mapping id="redis-pki-gcomm-cert" options="ro" source-dir="/etc/pki/tls/certs/redis.crt" target-dir="/var/lib/kolla/config_files/src-tls/etc/pki/tls/certs/redis.crt"/>
+        </storage>
+        <primitive class="ocf" id="redis" provider="heartbeat" type="redis">
+          <instance_attributes id="redis-instance_attributes">
+            <nvpair id="redis-instance_attributes-tunnel_host" name="tunnel_host" value="127.0.0.1"/>
+            <nvpair id="redis-instance_attributes-tunnel_port_map" name="tunnel_port_map" value="controller-0:6660;controller-1:6661;controller-2:6662"/>
+            <nvpair id="redis-instance_attributes-wait_last_known_master" name="wait_last_known_master" value="true"/>
+          </instance_attributes>
+          <meta_attributes id="redis-meta_attributes">
+            <nvpair id="redis-meta_attributes-container-attribute-target" name="container-attribute-target" value="host"/>
+            <nvpair id="redis-meta_attributes-interleave" name="interleave" value="true"/>
+            <nvpair id="redis-meta_attributes-notify" name="notify" value="true"/>
+            <nvpair id="redis-meta_attributes-ordered" name="ordered" value="true"/>
+          </meta_attributes>
+          <operations>
+            <op id="redis-demote-interval-0s" interval="0s" name="demote" timeout="120s"/>
+            <op id="redis-monitor-interval-45s" interval="45s" name="monitor" timeout="60s"/>
+            <op id="redis-monitor-interval-20s" interval="20s" name="monitor" role="Master" timeout="60s"/>
+            <op id="redis-monitor-interval-60s" interval="60s" name="monitor" role="Slave" timeout="60s"/>
+            <op id="redis-notify-interval-0s" interval="0s" name="notify" timeout="90s"/>
+            <op id="redis-promote-interval-0s" interval="0s" name="promote" timeout="120s"/>
+            <op id="redis-start-interval-0s" interval="0s" name="start" timeout="200s"/>
+            <op id="redis-stop-interval-0s" interval="0s" name="stop" timeout="200s"/>
+          </operations>
+        </primitive>
+      </bundle>
+      <primitive class="ocf" id="ip-192.168.24.150" provider="heartbeat" type="IPaddr2">
+        <instance_attributes id="ip-192.168.24.150-instance_attributes">
+          <nvpair id="ip-192.168.24.150-instance_attributes-cidr_netmask" name="cidr_netmask" value="32"/>
+          <nvpair id="ip-192.168.24.150-instance_attributes-ip" name="ip" value="192.168.24.150"/>
+        </instance_attributes>
+        <meta_attributes id="ip-192.168.24.150-meta_attributes">
+          <nvpair id="ip-192.168.24.150-meta_attributes-resource-stickiness" name="resource-stickiness" value="INFINITY"/>
+        </meta_attributes>
+        <operations>
+          <op id="ip-192.168.24.150-monitor-interval-10s" interval="10s" name="monitor" timeout="20s"/>
+          <op id="ip-192.168.24.150-start-interval-0s" interval="0s" name="start" timeout="20s"/>
+          <op id="ip-192.168.24.150-stop-interval-0s" interval="0s" name="stop" timeout="20s"/>
+        </operations>
+      </primitive>
+      <primitive class="ocf" id="ip-10.0.0.150" provider="heartbeat" type="IPaddr2">
+        <instance_attributes id="ip-10.0.0.150-instance_attributes">
+          <nvpair id="ip-10.0.0.150-instance_attributes-cidr_netmask" name="cidr_netmask" value="32"/>
+          <nvpair id="ip-10.0.0.150-instance_attributes-ip" name="ip" value="10.0.0.150"/>
+        </instance_attributes>
+        <meta_attributes id="ip-10.0.0.150-meta_attributes">
+          <nvpair id="ip-10.0.0.150-meta_attributes-resource-stickiness" name="resource-stickiness" value="INFINITY"/>
+        </meta_attributes>
+        <operations>
+          <op id="ip-10.0.0.150-monitor-interval-10s" interval="10s" name="monitor" timeout="20s"/>
+          <op id="ip-10.0.0.150-start-interval-0s" interval="0s" name="start" timeout="20s"/>
+          <op id="ip-10.0.0.150-stop-interval-0s" interval="0s" name="stop" timeout="20s"/>
+        </operations>
+      </primitive>
+      <primitive class="ocf" id="ip-172.17.1.151" provider="heartbeat" type="IPaddr2">
+        <instance_attributes id="ip-172.17.1.151-instance_attributes">
+          <nvpair id="ip-172.17.1.151-instance_attributes-cidr_netmask" name="cidr_netmask" value="32"/>
+          <nvpair id="ip-172.17.1.151-instance_attributes-ip" name="ip" value="172.17.1.151"/>
+        </instance_attributes>
+        <meta_attributes id="ip-172.17.1.151-meta_attributes">
+          <nvpair id="ip-172.17.1.151-meta_attributes-resource-stickiness" name="resource-stickiness" value="INFINITY"/>
+        </meta_attributes>
+        <operations>
+          <op id="ip-172.17.1.151-monitor-interval-10s" interval="10s" name="monitor" timeout="20s"/>
+          <op id="ip-172.17.1.151-start-interval-0s" interval="0s" name="start" timeout="20s"/>
+          <op id="ip-172.17.1.151-stop-interval-0s" interval="0s" name="stop" timeout="20s"/>
+        </operations>
+      </primitive>
+      <primitive class="ocf" id="ip-172.17.1.150" provider="heartbeat" type="IPaddr2">
+        <instance_attributes id="ip-172.17.1.150-instance_attributes">
+          <nvpair id="ip-172.17.1.150-instance_attributes-cidr_netmask" name="cidr_netmask" value="32"/>
+          <nvpair id="ip-172.17.1.150-instance_attributes-ip" name="ip" value="172.17.1.150"/>
+        </instance_attributes>
+        <meta_attributes id="ip-172.17.1.150-meta_attributes">
+          <nvpair id="ip-172.17.1.150-meta_attributes-resource-stickiness" name="resource-stickiness" value="INFINITY"/>
+        </meta_attributes>
+        <operations>
+          <op id="ip-172.17.1.150-monitor-interval-10s" interval="10s" name="monitor" timeout="20s"/>
+          <op id="ip-172.17.1.150-start-interval-0s" interval="0s" name="start" timeout="20s"/>
+          <op id="ip-172.17.1.150-stop-interval-0s" interval="0s" name="stop" timeout="20s"/>
+        </operations>
+      </primitive>
+      <primitive class="ocf" id="ip-172.17.3.150" provider="heartbeat" type="IPaddr2">
+        <instance_attributes id="ip-172.17.3.150-instance_attributes">
+          <nvpair id="ip-172.17.3.150-instance_attributes-cidr_netmask" name="cidr_netmask" value="32"/>
+          <nvpair id="ip-172.17.3.150-instance_attributes-ip" name="ip" value="172.17.3.150"/>
+        </instance_attributes>
+        <meta_attributes id="ip-172.17.3.150-meta_attributes">
+          <nvpair id="ip-172.17.3.150-meta_attributes-resource-stickiness" name="resource-stickiness" value="INFINITY"/>
+        </meta_attributes>
+        <operations>
+          <op id="ip-172.17.3.150-monitor-interval-10s" interval="10s" name="monitor" timeout="20s"/>
+          <op id="ip-172.17.3.150-start-interval-0s" interval="0s" name="start" timeout="20s"/>
+          <op id="ip-172.17.3.150-stop-interval-0s" interval="0s" name="stop" timeout="20s"/>
+        </operations>
+      </primitive>
+      <primitive class="ocf" id="ip-172.17.4.150" provider="heartbeat" type="IPaddr2">
+        <instance_attributes id="ip-172.17.4.150-instance_attributes">
+          <nvpair id="ip-172.17.4.150-instance_attributes-cidr_netmask" name="cidr_netmask" value="32"/>
+          <nvpair id="ip-172.17.4.150-instance_attributes-ip" name="ip" value="172.17.4.150"/>
+        </instance_attributes>
+        <meta_attributes id="ip-172.17.4.150-meta_attributes">
+          <nvpair id="ip-172.17.4.150-meta_attributes-resource-stickiness" name="resource-stickiness" value="INFINITY"/>
+        </meta_attributes>
+        <operations>
+          <op id="ip-172.17.4.150-monitor-interval-10s" interval="10s" name="monitor" timeout="20s"/>
+          <op id="ip-172.17.4.150-start-interval-0s" interval="0s" name="start" timeout="20s"/>
+          <op id="ip-172.17.4.150-stop-interval-0s" interval="0s" name="stop" timeout="20s"/>
+        </operations>
+      </primitive>
+      <bundle id="haproxy-bundle">
+        <meta_attributes id="haproxy-bundle-meta_attributes"/>
+        <podman image="cluster.common.tag/haproxy:pcmklatest" network="host" options="--user=root --log-driver=k8s-file --log-opt path=/var/log/containers/stdouts/haproxy-bundle.log -e KOLLA_CONFIG_STRATEGY=COPY_ALWAYS" replicas="3" run-command="/bin/bash /usr/local/bin/kolla_start"/>
+        <storage>
+          <storage-mapping id="haproxy-cfg-files" options="ro" source-dir="/var/lib/kolla/config_files/haproxy.json" target-dir="/var/lib/kolla/config_files/config.json"/>
+          <storage-mapping id="haproxy-cfg-data" options="ro" source-dir="/var/lib/config-data/puppet-generated/haproxy/" target-dir="/var/lib/kolla/config_files/src"/>
+          <storage-mapping id="haproxy-hosts" options="ro" source-dir="/etc/hosts" target-dir="/etc/hosts"/>
+          <storage-mapping id="haproxy-localtime" options="ro" source-dir="/etc/localtime" target-dir="/etc/localtime"/>
+          <storage-mapping id="haproxy-var-lib" options="rw" source-dir="/var/lib/haproxy" target-dir="/var/lib/haproxy"/>
+          <storage-mapping id="haproxy-pki-extracted" options="ro" source-dir="/etc/pki/ca-trust/extracted" target-dir="/etc/pki/ca-trust/extracted"/>
+          <storage-mapping id="haproxy-pki-ca-bundle-crt" options="ro" source-dir="/etc/pki/tls/certs/ca-bundle.crt" target-dir="/etc/pki/tls/certs/ca-bundle.crt"/>
+          <storage-mapping id="haproxy-pki-ca-bundle-trust-crt" options="ro" source-dir="/etc/pki/tls/certs/ca-bundle.trust.crt" target-dir="/etc/pki/tls/certs/ca-bundle.trust.crt"/>
+          <storage-mapping id="haproxy-pki-cert" options="ro" source-dir="/etc/pki/tls/cert.pem" target-dir="/etc/pki/tls/cert.pem"/>
+          <storage-mapping id="haproxy-dev-log" options="rw" source-dir="/dev/log" target-dir="/dev/log"/>
+          <storage-mapping id="haproxy-cert" options="ro" source-dir="/etc/pki/tls/private/overcloud_endpoint.pem" target-dir="/var/lib/kolla/config_files/src-tls/etc/pki/tls/private/overcloud_endpoint.pem"/>
+          <storage-mapping id="haproxy-pki-certs" options="ro" source-dir="/etc/pki/tls/certs/haproxy" target-dir="/var/lib/kolla/config_files/src-tls/etc/pki/tls/certs/haproxy"/>
+          <storage-mapping id="haproxy-pki-keys" options="ro" source-dir="/etc/pki/tls/private/haproxy" target-dir="/var/lib/kolla/config_files/src-tls/etc/pki/tls/private/haproxy"/>
+          <storage-mapping id="haproxy-pki-ca-file" options="ro" source-dir="/etc/ipa/ca.crt" target-dir="/var/lib/kolla/config_files/src-tls/etc/ipa/ca.crt"/>
+        </storage>
+      </bundle>
+      <bundle id="ovn-dbs-bundle">
+        <meta_attributes id="ovn-dbs-bundle-meta_attributes"/>
+        <podman image="cluster.common.tag/ovn-northd:pcmklatest" network="host" options="--log-driver=k8s-file --log-opt path=/var/log/containers/stdouts/ovn-dbs-bundle.log -e KOLLA_CONFIG_STRATEGY=COPY_ALWAYS" promoted-max="1" replicas="3" run-command="/bin/bash /usr/local/bin/kolla_start"/>
+        <network control-port="3125"/>
+        <storage>
+          <storage-mapping id="ovn-dbs-cfg-files" options="ro" source-dir="/var/lib/kolla/config_files/ovn_dbs.json" target-dir="/var/lib/kolla/config_files/config.json"/>
+          <storage-mapping id="ovn-dbs-mod-files" options="ro" source-dir="/lib/modules" target-dir="/lib/modules"/>
+          <storage-mapping id="ovn-dbs-run-files" options="rw" source-dir="/var/lib/openvswitch/ovn" target-dir="/run/openvswitch"/>
+          <storage-mapping id="ovn-dbs-new-run-files" options="rw" source-dir="/var/lib/openvswitch/ovn" target-dir="/run/ovn"/>
+          <storage-mapping id="ovn-dbs-log-files" options="rw" source-dir="/var/log/containers/openvswitch" target-dir="/var/log/openvswitch"/>
+          <storage-mapping id="ovn-dbs-new-log-files" options="rw" source-dir="/var/log/containers/openvswitch" target-dir="/var/log/ovn"/>
+          <storage-mapping id="ovn-dbs-db-path" options="rw" source-dir="/var/lib/openvswitch/ovn" target-dir="/etc/openvswitch"/>
+          <storage-mapping id="ovn-dbs-new-db-path" options="rw" source-dir="/var/lib/openvswitch/ovn" target-dir="/etc/ovn"/>
+          <storage-mapping id="ovn-dbs-pki-" options="ro" source-dir="/etc/pki/tls/private/ovn_dbs.key" target-dir="/etc/pki/tls/private/ovn_dbs.key"/>
+          <storage-mapping id="ovn-dbs-cert" options="ro" source-dir="/etc/pki/tls/certs/ovn_dbs.crt" target-dir="/etc/pki/tls/certs/ovn_dbs.crt"/>
+          <storage-mapping id="ovn-dbs-cacert" options="ro" source-dir="/etc/ipa/ca.crt" target-dir="/etc/ipa/ca.crt"/>
+        </storage>
+        <primitive class="ocf" id="ovndb_servers" provider="ovn" type="ovndb-servers">
+          <instance_attributes id="ovndb_servers-instance_attributes">
+            <nvpair id="ovndb_servers-instance_attributes-inactive_probe_interval" name="inactive_probe_interval" value="180000"/>
+            <nvpair id="ovndb_servers-instance_attributes-listen_on_master_ip_only" name="listen_on_master_ip_only" value="yes"/>
+            <nvpair id="ovndb_servers-instance_attributes-manage_northd" name="manage_northd" value="yes"/>
+            <nvpair id="ovndb_servers-instance_attributes-master_ip" name="master_ip" value="172.17.1.57"/>
+            <nvpair id="ovndb_servers-instance_attributes-nb_master_port" name="nb_master_port" value="6641"/>
+            <nvpair id="ovndb_servers-instance_attributes-nb_master_protocol" name="nb_master_protocol" value="ssl"/>
+            <nvpair id="ovndb_servers-instance_attributes-ovn_nb_db_cacert" name="ovn_nb_db_cacert" value="/etc/ipa/ca.crt"/>
+            <nvpair id="ovndb_servers-instance_attributes-ovn_nb_db_cert" name="ovn_nb_db_cert" value="/etc/pki/tls/certs/ovn_dbs.crt"/>
+            <nvpair id="ovndb_servers-instance_attributes-ovn_nb_db_privkey" name="ovn_nb_db_privkey" value="/etc/pki/tls/private/ovn_dbs.key"/>
+            <nvpair id="ovndb_servers-instance_attributes-ovn_sb_db_cacert" name="ovn_sb_db_cacert" value="/etc/ipa/ca.crt"/>
+            <nvpair id="ovndb_servers-instance_attributes-ovn_sb_db_cert" name="ovn_sb_db_cert" value="/etc/pki/tls/certs/ovn_dbs.crt"/>
+            <nvpair id="ovndb_servers-instance_attributes-ovn_sb_db_privkey" name="ovn_sb_db_privkey" value="/etc/pki/tls/private/ovn_dbs.key"/>
+            <nvpair id="ovndb_servers-instance_attributes-sb_master_port" name="sb_master_port" value="6642"/>
+            <nvpair id="ovndb_servers-instance_attributes-sb_master_protocol" name="sb_master_protocol" value="ssl"/>
+          </instance_attributes>
+          <meta_attributes id="ovndb_servers-meta_attributes">
+            <nvpair id="ovndb_servers-meta_attributes-container-attribute-target" name="container-attribute-target" value="host"/>
+            <nvpair id="ovndb_servers-meta_attributes-notify" name="notify" value="true"/>
+          </meta_attributes>
+          <operations>
+            <op id="ovndb_servers-demote-interval-0s" interval="0s" name="demote" timeout="50s"/>
+            <op id="ovndb_servers-monitor-interval-10s" interval="10s" name="monitor" role="Master" timeout="60s"/>
+            <op id="ovndb_servers-monitor-interval-30s" interval="30s" name="monitor" role="Slave" timeout="60s"/>
+            <op id="ovndb_servers-notify-interval-0s" interval="0s" name="notify" timeout="20s"/>
+            <op id="ovndb_servers-promote-interval-0s" interval="0s" name="promote" timeout="50s"/>
+            <op id="ovndb_servers-start-interval-0s" interval="0s" name="start" timeout="200s"/>
+            <op id="ovndb_servers-stop-interval-0s" interval="0s" name="stop" timeout="200s"/>
+          </operations>
+        </primitive>
+      </bundle>
+      <primitive class="ocf" id="ip-172.17.1.57" provider="heartbeat" type="IPaddr2">
+        <instance_attributes id="ip-172.17.1.57-instance_attributes">
+          <nvpair id="ip-172.17.1.57-instance_attributes-cidr_netmask" name="cidr_netmask" value="32"/>
+          <nvpair id="ip-172.17.1.57-instance_attributes-ip" name="ip" value="172.17.1.57"/>
+        </instance_attributes>
+        <meta_attributes id="ip-172.17.1.57-meta_attributes">
+          <nvpair id="ip-172.17.1.57-meta_attributes-resource-stickiness" name="resource-stickiness" value="INFINITY"/>
+        </meta_attributes>
+        <operations>
+          <op id="ip-172.17.1.57-monitor-interval-10s" interval="10s" name="monitor" timeout="20s"/>
+          <op id="ip-172.17.1.57-start-interval-0s" interval="0s" name="start" timeout="20s"/>
+          <op id="ip-172.17.1.57-stop-interval-0s" interval="0s" name="stop" timeout="20s"/>
+        </operations>
+      </primitive>
+      <primitive class="stonith" id="stonith-fence_compute-fence-nova" type="fence_compute">
+        <instance_attributes id="stonith-fence_compute-fence-nova-instance_attributes">
+          <nvpair id="stonith-fence_compute-fence-nova-instance_attributes-auth_url" name="auth_url" value="https://overcloud.redhat.local:13000"/>
+          <nvpair id="stonith-fence_compute-fence-nova-instance_attributes-domain" name="domain" value="redhat.local"/>
+          <nvpair id="stonith-fence_compute-fence-nova-instance_attributes-login" name="login" value="admin"/>
+          <nvpair id="stonith-fence_compute-fence-nova-instance_attributes-passwd" name="passwd" value="****"/>
+          <nvpair id="stonith-fence_compute-fence-nova-instance_attributes-project_domain" name="project_domain" value="Default"/>
+          <nvpair id="stonith-fence_compute-fence-nova-instance_attributes-record_only" name="record_only" value="1"/>
+          <nvpair id="stonith-fence_compute-fence-nova-instance_attributes-region_name" name="region_name" value="regionOne"/>
+          <nvpair id="stonith-fence_compute-fence-nova-instance_attributes-tenant_name" name="tenant_name" value="admin"/>
+          <nvpair id="stonith-fence_compute-fence-nova-instance_attributes-user_domain" name="user_domain" value="Default"/>
+        </instance_attributes>
+        <meta_attributes id="stonith-fence_compute-fence-nova-meta_attributes">
+          <nvpair id="stonith-fence_compute-fence-nova-meta_attributes-provides" name="provides" value="unfencing"/>
+        </meta_attributes>
+        <operations>
+          <op id="stonith-fence_compute-fence-nova-monitor-interval-60s" interval="60s" name="monitor"/>
+        </operations>
+      </primitive>
+      <clone id="compute-unfence-trigger-clone">
+        <meta_attributes id="compute-unfence-trigger-clone-meta_attributes"/>
+        <primitive class="ocf" id="compute-unfence-trigger" provider="pacemaker" type="Dummy">
+          <meta_attributes id="compute-unfence-trigger-meta_attributes">
+            <nvpair id="compute-unfence-trigger-meta_attributes-requires" name="requires" value="unfencing"/>
+          </meta_attributes>
+          <operations>
+            <op id="compute-unfence-trigger-migrate_from-interval-0s" interval="0s" name="migrate_from" timeout="20s"/>
+            <op id="compute-unfence-trigger-migrate_to-interval-0s" interval="0s" name="migrate_to" timeout="20s"/>
+            <op id="compute-unfence-trigger-monitor-interval-10s" interval="10s" name="monitor" timeout="20s"/>
+            <op id="compute-unfence-trigger-reload-interval-0s" interval="0s" name="reload" timeout="20s"/>
+            <op id="compute-unfence-trigger-start-interval-0s" interval="0s" name="start" timeout="20s"/>
+            <op id="compute-unfence-trigger-stop-interval-0s" interval="0s" name="stop" on-fail="block" timeout="20"/>
+          </operations>
+        </primitive>
+      </clone>
+      <primitive class="ocf" id="nova-evacuate" provider="openstack" type="NovaEvacuate">
+        <meta_attributes id="nova-evacuate-meta_attributes"/>
+        <instance_attributes id="nova-evacuate-instance_attributes">
+          <nvpair id="nova-evacuate-instance_attributes-auth_url" name="auth_url" value="https://overcloud.redhat.local:13000"/>
+          <nvpair id="nova-evacuate-instance_attributes-no_shared_storage" name="no_shared_storage" value="true"/>
+          <nvpair id="nova-evacuate-instance_attributes-password" name="password" value="****"/>
+          <nvpair id="nova-evacuate-instance_attributes-project_domain" name="project_domain" value="Default"/>
+          <nvpair id="nova-evacuate-instance_attributes-region_name" name="region_name" value="regionOne"/>
+          <nvpair id="nova-evacuate-instance_attributes-tenant_name" name="tenant_name" value="admin"/>
+          <nvpair id="nova-evacuate-instance_attributes-user_domain" name="user_domain" value="Default"/>
+          <nvpair id="nova-evacuate-instance_attributes-username" name="username" value="admin"/>
+        </instance_attributes>
+        <operations>
+          <op id="nova-evacuate-monitor-interval-10" interval="10" name="monitor" timeout="600"/>
+          <op id="nova-evacuate-start-interval-0s" interval="0s" name="start" timeout="20"/>
+          <op id="nova-evacuate-stop-interval-0s" interval="0s" name="stop" timeout="20"/>
+        </operations>
+      </primitive>
+      <primitive class="stonith" id="stonith-fence_ipmilan-52540033df9c" type="fence_ipmilan">
+        <meta_attributes id="stonith-fence_ipmilan-52540033df9c-meta_attributes"/>
+        <instance_attributes id="stonith-fence_ipmilan-52540033df9c-instance_attributes">
+          <nvpair id="stonith-fence_ipmilan-52540033df9c-instance_attributes-delay" name="delay" value="20"/>
+          <nvpair id="stonith-fence_ipmilan-52540033df9c-instance_attributes-ipaddr" name="ipaddr" value="172.16.0.15"/>
+          <nvpair id="stonith-fence_ipmilan-52540033df9c-instance_attributes-ipport" name="ipport" value="6231"/>
+          <nvpair id="stonith-fence_ipmilan-52540033df9c-instance_attributes-lanplus" name="lanplus" value="true"/>
+          <nvpair id="stonith-fence_ipmilan-52540033df9c-instance_attributes-login" name="login" value="admin"/>
+          <nvpair id="stonith-fence_ipmilan-52540033df9c-instance_attributes-passwd" name="passwd" value="****"/>
+          <nvpair id="stonith-fence_ipmilan-52540033df9c-instance_attributes-pcmk_host_list" name="pcmk_host_list" value="messaging-2"/>
+        </instance_attributes>
+        <operations>
+          <op id="stonith-fence_ipmilan-52540033df9c-monitor-interval-60s" interval="60s" name="monitor"/>
+        </operations>
+      </primitive>
+      <primitive class="stonith" id="stonith-fence_ipmilan-5254001f5f3c" type="fence_ipmilan">
+        <meta_attributes id="stonith-fence_ipmilan-5254001f5f3c-meta_attributes"/>
+        <instance_attributes id="stonith-fence_ipmilan-5254001f5f3c-instance_attributes">
+          <nvpair id="stonith-fence_ipmilan-5254001f5f3c-instance_attributes-delay" name="delay" value="20"/>
+          <nvpair id="stonith-fence_ipmilan-5254001f5f3c-instance_attributes-ipaddr" name="ipaddr" value="172.16.0.15"/>
+          <nvpair id="stonith-fence_ipmilan-5254001f5f3c-instance_attributes-ipport" name="ipport" value="6240"/>
+          <nvpair id="stonith-fence_ipmilan-5254001f5f3c-instance_attributes-lanplus" name="lanplus" value="true"/>
+          <nvpair id="stonith-fence_ipmilan-5254001f5f3c-instance_attributes-login" name="login" value="admin"/>
+          <nvpair id="stonith-fence_ipmilan-5254001f5f3c-instance_attributes-passwd" name="passwd" value="****"/>
+          <nvpair id="stonith-fence_ipmilan-5254001f5f3c-instance_attributes-pcmk_host_list" name="pcmk_host_list" value="database-0"/>
+        </instance_attributes>
+        <operations>
+          <op id="stonith-fence_ipmilan-5254001f5f3c-monitor-interval-60s" interval="60s" name="monitor"/>
+        </operations>
+      </primitive>
+      <primitive class="stonith" id="stonith-fence_ipmilan-5254003f88b4" type="fence_ipmilan">
+        <meta_attributes id="stonith-fence_ipmilan-5254003f88b4-meta_attributes"/>
+        <instance_attributes id="stonith-fence_ipmilan-5254003f88b4-instance_attributes">
+          <nvpair id="stonith-fence_ipmilan-5254003f88b4-instance_attributes-delay" name="delay" value="20"/>
+          <nvpair id="stonith-fence_ipmilan-5254003f88b4-instance_attributes-ipaddr" name="ipaddr" value="172.16.0.15"/>
+          <nvpair id="stonith-fence_ipmilan-5254003f88b4-instance_attributes-ipport" name="ipport" value="6237"/>
+          <nvpair id="stonith-fence_ipmilan-5254003f88b4-instance_attributes-lanplus" name="lanplus" value="true"/>
+          <nvpair id="stonith-fence_ipmilan-5254003f88b4-instance_attributes-login" name="login" value="admin"/>
+          <nvpair id="stonith-fence_ipmilan-5254003f88b4-instance_attributes-passwd" name="passwd" value="****"/>
+          <nvpair id="stonith-fence_ipmilan-5254003f88b4-instance_attributes-pcmk_host_list" name="pcmk_host_list" value="controller-2"/>
+        </instance_attributes>
+        <operations>
+          <op id="stonith-fence_ipmilan-5254003f88b4-monitor-interval-60s" interval="60s" name="monitor"/>
+        </operations>
+      </primitive>
+      <primitive class="stonith" id="stonith-fence_ipmilan-5254007b7920" type="fence_ipmilan">
+        <meta_attributes id="stonith-fence_ipmilan-5254007b7920-meta_attributes"/>
+        <instance_attributes id="stonith-fence_ipmilan-5254007b7920-instance_attributes">
+          <nvpair id="stonith-fence_ipmilan-5254007b7920-instance_attributes-delay" name="delay" value="20"/>
+          <nvpair id="stonith-fence_ipmilan-5254007b7920-instance_attributes-ipaddr" name="ipaddr" value="172.16.0.15"/>
+          <nvpair id="stonith-fence_ipmilan-5254007b7920-instance_attributes-ipport" name="ipport" value="6235"/>
+          <nvpair id="stonith-fence_ipmilan-5254007b7920-instance_attributes-lanplus" name="lanplus" value="true"/>
+          <nvpair id="stonith-fence_ipmilan-5254007b7920-instance_attributes-login" name="login" value="admin"/>
+          <nvpair id="stonith-fence_ipmilan-5254007b7920-instance_attributes-passwd" name="passwd" value="****"/>
+          <nvpair id="stonith-fence_ipmilan-5254007b7920-instance_attributes-pcmk_host_list" name="pcmk_host_list" value="controller-1"/>
+        </instance_attributes>
+        <operations>
+          <op id="stonith-fence_ipmilan-5254007b7920-monitor-interval-60s" interval="60s" name="monitor"/>
+        </operations>
+      </primitive>
+      <primitive class="stonith" id="stonith-fence_ipmilan-525400642894" type="fence_ipmilan">
+        <meta_attributes id="stonith-fence_ipmilan-525400642894-meta_attributes"/>
+        <instance_attributes id="stonith-fence_ipmilan-525400642894-instance_attributes">
+          <nvpair id="stonith-fence_ipmilan-525400642894-instance_attributes-delay" name="delay" value="20"/>
+          <nvpair id="stonith-fence_ipmilan-525400642894-instance_attributes-ipaddr" name="ipaddr" value="172.16.0.15"/>
+          <nvpair id="stonith-fence_ipmilan-525400642894-instance_attributes-ipport" name="ipport" value="6243"/>
+          <nvpair id="stonith-fence_ipmilan-525400642894-instance_attributes-lanplus" name="lanplus" value="true"/>
+          <nvpair id="stonith-fence_ipmilan-525400642894-instance_attributes-login" name="login" value="admin"/>
+          <nvpair id="stonith-fence_ipmilan-525400642894-instance_attributes-passwd" name="passwd" value="****"/>
+          <nvpair id="stonith-fence_ipmilan-525400642894-instance_attributes-pcmk_host_list" name="pcmk_host_list" value="compute-1"/>
+        </instance_attributes>
+        <operations>
+          <op id="stonith-fence_ipmilan-525400642894-monitor-interval-60s" interval="60s" name="monitor"/>
+        </operations>
+      </primitive>
+      <primitive class="stonith" id="stonith-fence_ipmilan-525400d5382b" type="fence_ipmilan">
+        <meta_attributes id="stonith-fence_ipmilan-525400d5382b-meta_attributes"/>
+        <instance_attributes id="stonith-fence_ipmilan-525400d5382b-instance_attributes">
+          <nvpair id="stonith-fence_ipmilan-525400d5382b-instance_attributes-delay" name="delay" value="20"/>
+          <nvpair id="stonith-fence_ipmilan-525400d5382b-instance_attributes-ipaddr" name="ipaddr" value="172.16.0.15"/>
+          <nvpair id="stonith-fence_ipmilan-525400d5382b-instance_attributes-ipport" name="ipport" value="6238"/>
+          <nvpair id="stonith-fence_ipmilan-525400d5382b-instance_attributes-lanplus" name="lanplus" value="true"/>
+          <nvpair id="stonith-fence_ipmilan-525400d5382b-instance_attributes-login" name="login" value="admin"/>
+          <nvpair id="stonith-fence_ipmilan-525400d5382b-instance_attributes-passwd" name="passwd" value="****"/>
+          <nvpair id="stonith-fence_ipmilan-525400d5382b-instance_attributes-pcmk_host_list" name="pcmk_host_list" value="compute-0"/>
+        </instance_attributes>
+        <operations>
+          <op id="stonith-fence_ipmilan-525400d5382b-monitor-interval-60s" interval="60s" name="monitor"/>
+        </operations>
+      </primitive>
+      <primitive class="stonith" id="stonith-fence_ipmilan-525400bb150b" type="fence_ipmilan">
+        <meta_attributes id="stonith-fence_ipmilan-525400bb150b-meta_attributes"/>
+        <instance_attributes id="stonith-fence_ipmilan-525400bb150b-instance_attributes">
+          <nvpair id="stonith-fence_ipmilan-525400bb150b-instance_attributes-delay" name="delay" value="20"/>
+          <nvpair id="stonith-fence_ipmilan-525400bb150b-instance_attributes-ipaddr" name="ipaddr" value="172.16.0.15"/>
+          <nvpair id="stonith-fence_ipmilan-525400bb150b-instance_attributes-ipport" name="ipport" value="6242"/>
+          <nvpair id="stonith-fence_ipmilan-525400bb150b-instance_attributes-lanplus" name="lanplus" value="true"/>
+          <nvpair id="stonith-fence_ipmilan-525400bb150b-instance_attributes-login" name="login" value="admin"/>
+          <nvpair id="stonith-fence_ipmilan-525400bb150b-instance_attributes-passwd" name="passwd" value="****"/>
+          <nvpair id="stonith-fence_ipmilan-525400bb150b-instance_attributes-pcmk_host_list" name="pcmk_host_list" value="database-2"/>
+        </instance_attributes>
+        <operations>
+          <op id="stonith-fence_ipmilan-525400bb150b-monitor-interval-60s" interval="60s" name="monitor"/>
+        </operations>
+      </primitive>
+      <primitive class="stonith" id="stonith-fence_ipmilan-525400ffc780" type="fence_ipmilan">
+        <meta_attributes id="stonith-fence_ipmilan-525400ffc780-meta_attributes"/>
+        <instance_attributes id="stonith-fence_ipmilan-525400ffc780-instance_attributes">
+          <nvpair id="stonith-fence_ipmilan-525400ffc780-instance_attributes-delay" name="delay" value="20"/>
+          <nvpair id="stonith-fence_ipmilan-525400ffc780-instance_attributes-ipaddr" name="ipaddr" value="172.16.0.15"/>
+          <nvpair id="stonith-fence_ipmilan-525400ffc780-instance_attributes-ipport" name="ipport" value="6241"/>
+          <nvpair id="stonith-fence_ipmilan-525400ffc780-instance_attributes-lanplus" name="lanplus" value="true"/>
+          <nvpair id="stonith-fence_ipmilan-525400ffc780-instance_attributes-login" name="login" value="admin"/>
+          <nvpair id="stonith-fence_ipmilan-525400ffc780-instance_attributes-passwd" name="passwd" value="****"/>
+          <nvpair id="stonith-fence_ipmilan-525400ffc780-instance_attributes-pcmk_host_list" name="pcmk_host_list" value="database-1"/>
+        </instance_attributes>
+        <operations>
+          <op id="stonith-fence_ipmilan-525400ffc780-monitor-interval-60s" interval="60s" name="monitor"/>
+        </operations>
+      </primitive>
+      <primitive class="stonith" id="stonith-fence_ipmilan-5254009cb549" type="fence_ipmilan">
+        <meta_attributes id="stonith-fence_ipmilan-5254009cb549-meta_attributes"/>
+        <instance_attributes id="stonith-fence_ipmilan-5254009cb549-instance_attributes">
+          <nvpair id="stonith-fence_ipmilan-5254009cb549-instance_attributes-delay" name="delay" value="20"/>
+          <nvpair id="stonith-fence_ipmilan-5254009cb549-instance_attributes-ipaddr" name="ipaddr" value="172.16.0.15"/>
+          <nvpair id="stonith-fence_ipmilan-5254009cb549-instance_attributes-ipport" name="ipport" value="6233"/>
+          <nvpair id="stonith-fence_ipmilan-5254009cb549-instance_attributes-lanplus" name="lanplus" value="true"/>
+          <nvpair id="stonith-fence_ipmilan-5254009cb549-instance_attributes-login" name="login" value="admin"/>
+          <nvpair id="stonith-fence_ipmilan-5254009cb549-instance_attributes-passwd" name="passwd" value="****"/>
+          <nvpair id="stonith-fence_ipmilan-5254009cb549-instance_attributes-pcmk_host_list" name="pcmk_host_list" value="messaging-1"/>
+        </instance_attributes>
+        <operations>
+          <op id="stonith-fence_ipmilan-5254009cb549-monitor-interval-60s" interval="60s" name="monitor"/>
+        </operations>
+      </primitive>
+      <primitive class="stonith" id="stonith-fence_ipmilan-525400e10267" type="fence_ipmilan">
+        <meta_attributes id="stonith-fence_ipmilan-525400e10267-meta_attributes"/>
+        <instance_attributes id="stonith-fence_ipmilan-525400e10267-instance_attributes">
+          <nvpair id="stonith-fence_ipmilan-525400e10267-instance_attributes-delay" name="delay" value="20"/>
+          <nvpair id="stonith-fence_ipmilan-525400e10267-instance_attributes-ipaddr" name="ipaddr" value="172.16.0.15"/>
+          <nvpair id="stonith-fence_ipmilan-525400e10267-instance_attributes-ipport" name="ipport" value="6232"/>
+          <nvpair id="stonith-fence_ipmilan-525400e10267-instance_attributes-lanplus" name="lanplus" value="true"/>
+          <nvpair id="stonith-fence_ipmilan-525400e10267-instance_attributes-login" name="login" value="admin"/>
+          <nvpair id="stonith-fence_ipmilan-525400e10267-instance_attributes-passwd" name="passwd" value="****"/>
+          <nvpair id="stonith-fence_ipmilan-525400e10267-instance_attributes-pcmk_host_list" name="pcmk_host_list" value="messaging-0"/>
+        </instance_attributes>
+        <operations>
+          <op id="stonith-fence_ipmilan-525400e10267-monitor-interval-60s" interval="60s" name="monitor"/>
+        </operations>
+      </primitive>
+      <primitive class="stonith" id="stonith-fence_ipmilan-525400dc0f81" type="fence_ipmilan">
+        <meta_attributes id="stonith-fence_ipmilan-525400dc0f81-meta_attributes"/>
+        <instance_attributes id="stonith-fence_ipmilan-525400dc0f81-instance_attributes">
+          <nvpair id="stonith-fence_ipmilan-525400dc0f81-instance_attributes-delay" name="delay" value="20"/>
+          <nvpair id="stonith-fence_ipmilan-525400dc0f81-instance_attributes-ipaddr" name="ipaddr" value="172.16.0.15"/>
+          <nvpair id="stonith-fence_ipmilan-525400dc0f81-instance_attributes-ipport" name="ipport" value="6236"/>
+          <nvpair id="stonith-fence_ipmilan-525400dc0f81-instance_attributes-lanplus" name="lanplus" value="true"/>
+          <nvpair id="stonith-fence_ipmilan-525400dc0f81-instance_attributes-login" name="login" value="admin"/>
+          <nvpair id="stonith-fence_ipmilan-525400dc0f81-instance_attributes-passwd" name="passwd" value="****"/>
+          <nvpair id="stonith-fence_ipmilan-525400dc0f81-instance_attributes-pcmk_host_list" name="pcmk_host_list" value="controller-0"/>
+        </instance_attributes>
+        <operations>
+          <op id="stonith-fence_ipmilan-525400dc0f81-monitor-interval-60s" interval="60s" name="monitor"/>
+        </operations>
+      </primitive>
+      <bundle id="openstack-cinder-volume">
+        <meta_attributes id="openstack-cinder-volume-meta_attributes"/>
+        <podman image="cluster.common.tag/cinder-volume:pcmklatest" network="host" options="--ipc=host --privileged=true --user=root --log-driver=k8s-file --log-opt path=/var/log/containers/stdouts/openstack-cinder-volume.log -e KOLLA_CONFIG_STRATEGY=COPY_ALWAYS" replicas="1" run-command="/bin/bash /usr/local/bin/kolla_start"/>
+        <storage>
+          <storage-mapping id="cinder-volume-etc-hosts" options="ro" source-dir="/etc/hosts" target-dir="/etc/hosts"/>
+          <storage-mapping id="cinder-volume-etc-localtime" options="ro" source-dir="/etc/localtime" target-dir="/etc/localtime"/>
+          <storage-mapping id="cinder-volume-etc-pki-ca-trust-extracted" options="ro" source-dir="/etc/pki/ca-trust/extracted" target-dir="/etc/pki/ca-trust/extracted"/>
+          <storage-mapping id="cinder-volume-etc-pki-ca-trust-source-anchors" options="ro" source-dir="/etc/pki/ca-trust/source/anchors" target-dir="/etc/pki/ca-trust/source/anchors"/>
+          <storage-mapping id="cinder-volume-etc-pki-tls-certs-ca-bundle.crt" options="ro" source-dir="/etc/pki/tls/certs/ca-bundle.crt" target-dir="/etc/pki/tls/certs/ca-bundle.crt"/>
+          <storage-mapping id="cinder-volume-etc-pki-tls-certs-ca-bundle.trust.crt" options="ro" source-dir="/etc/pki/tls/certs/ca-bundle.trust.crt" target-dir="/etc/pki/tls/certs/ca-bundle.trust.crt"/>
+          <storage-mapping id="cinder-volume-etc-pki-tls-cert.pem" options="ro" source-dir="/etc/pki/tls/cert.pem" target-dir="/etc/pki/tls/cert.pem"/>
+          <storage-mapping id="cinder-volume-dev-log" options="rw" source-dir="/dev/log" target-dir="/dev/log"/>
+          <storage-mapping id="cinder-volume-etc-ipa-ca.crt" options="ro" source-dir="/etc/ipa/ca.crt" target-dir="/etc/ipa/ca.crt"/>
+          <storage-mapping id="cinder-volume-etc-puppet" options="ro" source-dir="/etc/puppet" target-dir="/etc/puppet"/>
+          <storage-mapping id="cinder-volume-var-lib-config-data-puppet-generated-cinder" options="ro" source-dir="/var/lib/config-data/puppet-generated/cinder" target-dir="/var/lib/kolla/config_files/src"/>
+          <storage-mapping id="cinder-volume-var-log-containers-cinder" options="z" source-dir="/var/log/containers/cinder" target-dir="/var/log/cinder"/>
+          <storage-mapping id="cinder-volume-var-lib-kolla-config_files-cinder_volume.json" options="ro" source-dir="/var/lib/kolla/config_files/cinder_volume.json" target-dir="/var/lib/kolla/config_files/config.json"/>
+          <storage-mapping id="cinder-volume-etc-iscsi" options="ro" source-dir="/etc/iscsi" target-dir="/var/lib/kolla/config_files/src-iscsid"/>
+          <storage-mapping id="cinder-volume-etc-ceph" options="ro" source-dir="/etc/ceph" target-dir="/var/lib/kolla/config_files/src-ceph"/>
+          <storage-mapping id="cinder-volume-lib-modules" options="ro" source-dir="/lib/modules" target-dir="/lib/modules"/>
+          <storage-mapping id="cinder-volume-dev-" options="rw" source-dir="/dev/" target-dir="/dev/"/>
+          <storage-mapping id="cinder-volume-run-" options="rw" source-dir="/run/" target-dir="/run/"/>
+          <storage-mapping id="cinder-volume-sys" options="rw" source-dir="/sys" target-dir="/sys"/>
+          <storage-mapping id="cinder-volume-var-lib-cinder" options="z" source-dir="/var/lib/cinder" target-dir="/var/lib/cinder"/>
+          <storage-mapping id="cinder-volume-var-lib-iscsi" options="z" source-dir="/var/lib/iscsi" target-dir="/var/lib/iscsi"/>
+        </storage>
+      </bundle>
+    </resources>
+    <constraints>
+      <rsc_location id="location-galera-bundle" resource-discovery="exclusive" rsc="galera-bundle">
+        <rule id="location-galera-bundle-rule" score="0">
+          <expression attribute="galera-role" id="location-galera-bundle-rule-expr" operation="eq" value="true"/>
+        </rule>
+      </rsc_location>
+      <rsc_location id="location-rabbitmq-bundle" resource-discovery="exclusive" rsc="rabbitmq-bundle">
+        <rule id="location-rabbitmq-bundle-rule" score="0">
+          <expression attribute="rabbitmq-role" id="location-rabbitmq-bundle-rule-expr" operation="eq" value="true"/>
+        </rule>
+      </rsc_location>
+      <rsc_location id="location-redis-bundle" resource-discovery="exclusive" rsc="redis-bundle">
+        <rule id="location-redis-bundle-rule" score="0">
+          <expression attribute="redis-role" id="location-redis-bundle-rule-expr" operation="eq" value="true"/>
+        </rule>
+      </rsc_location>
+      <rsc_location id="location-ip-192.168.24.150" resource-discovery="exclusive" rsc="ip-192.168.24.150">
+        <rule id="location-ip-192.168.24.150-rule" score="0">
+          <expression attribute="haproxy-role" id="location-ip-192.168.24.150-rule-expr" operation="eq" value="true"/>
+        </rule>
+      </rsc_location>
+      <rsc_location id="location-ip-10.0.0.150" resource-discovery="exclusive" rsc="ip-10.0.0.150">
+        <rule id="location-ip-10.0.0.150-rule" score="0">
+          <expression attribute="haproxy-role" id="location-ip-10.0.0.150-rule-expr" operation="eq" value="true"/>
+        </rule>
+      </rsc_location>
+      <rsc_location id="location-ip-172.17.1.151" resource-discovery="exclusive" rsc="ip-172.17.1.151">
+        <rule id="location-ip-172.17.1.151-rule" score="0">
+          <expression attribute="haproxy-role" id="location-ip-172.17.1.151-rule-expr" operation="eq" value="true"/>
+        </rule>
+      </rsc_location>
+      <rsc_location id="location-ip-172.17.1.150" resource-discovery="exclusive" rsc="ip-172.17.1.150">
+        <rule id="location-ip-172.17.1.150-rule" score="0">
+          <expression attribute="haproxy-role" id="location-ip-172.17.1.150-rule-expr" operation="eq" value="true"/>
+        </rule>
+      </rsc_location>
+      <rsc_location id="location-ip-172.17.3.150" resource-discovery="exclusive" rsc="ip-172.17.3.150">
+        <rule id="location-ip-172.17.3.150-rule" score="0">
+          <expression attribute="haproxy-role" id="location-ip-172.17.3.150-rule-expr" operation="eq" value="true"/>
+        </rule>
+      </rsc_location>
+      <rsc_location id="location-ip-172.17.4.150" resource-discovery="exclusive" rsc="ip-172.17.4.150">
+        <rule id="location-ip-172.17.4.150-rule" score="0">
+          <expression attribute="haproxy-role" id="location-ip-172.17.4.150-rule-expr" operation="eq" value="true"/>
+        </rule>
+      </rsc_location>
+      <rsc_location id="location-haproxy-bundle" resource-discovery="exclusive" rsc="haproxy-bundle">
+        <rule id="location-haproxy-bundle-rule" score="0">
+          <expression attribute="haproxy-role" id="location-haproxy-bundle-rule-expr" operation="eq" value="true"/>
+        </rule>
+      </rsc_location>
+      <rsc_order first="ip-192.168.24.150" first-action="start" id="order-ip-192.168.24.150-haproxy-bundle-Optional" kind="Optional" then="haproxy-bundle" then-action="start"/>
+      <rsc_colocation id="colocation-ip-192.168.24.150-haproxy-bundle-INFINITY" rsc="ip-192.168.24.150" score="INFINITY" with-rsc="haproxy-bundle"/>
+      <rsc_order first="ip-10.0.0.150" first-action="start" id="order-ip-10.0.0.150-haproxy-bundle-Optional" kind="Optional" then="haproxy-bundle" then-action="start"/>
+      <rsc_colocation id="colocation-ip-10.0.0.150-haproxy-bundle-INFINITY" rsc="ip-10.0.0.150" score="INFINITY" with-rsc="haproxy-bundle"/>
+      <rsc_order first="ip-172.17.1.151" first-action="start" id="order-ip-172.17.1.151-haproxy-bundle-Optional" kind="Optional" then="haproxy-bundle" then-action="start"/>
+      <rsc_colocation id="colocation-ip-172.17.1.151-haproxy-bundle-INFINITY" rsc="ip-172.17.1.151" score="INFINITY" with-rsc="haproxy-bundle"/>
+      <rsc_order first="ip-172.17.1.150" first-action="start" id="order-ip-172.17.1.150-haproxy-bundle-Optional" kind="Optional" then="haproxy-bundle" then-action="start"/>
+      <rsc_colocation id="colocation-ip-172.17.1.150-haproxy-bundle-INFINITY" rsc="ip-172.17.1.150" score="INFINITY" with-rsc="haproxy-bundle"/>
+      <rsc_order first="ip-172.17.3.150" first-action="start" id="order-ip-172.17.3.150-haproxy-bundle-Optional" kind="Optional" then="haproxy-bundle" then-action="start"/>
+      <rsc_colocation id="colocation-ip-172.17.3.150-haproxy-bundle-INFINITY" rsc="ip-172.17.3.150" score="INFINITY" with-rsc="haproxy-bundle"/>
+      <rsc_order first="ip-172.17.4.150" first-action="start" id="order-ip-172.17.4.150-haproxy-bundle-Optional" kind="Optional" then="haproxy-bundle" then-action="start"/>
+      <rsc_colocation id="colocation-ip-172.17.4.150-haproxy-bundle-INFINITY" rsc="ip-172.17.4.150" score="INFINITY" with-rsc="haproxy-bundle"/>
+      <rsc_location id="location-ovn-dbs-bundle" resource-discovery="exclusive" rsc="ovn-dbs-bundle">
+        <rule id="location-ovn-dbs-bundle-rule" score="0">
+          <expression attribute="ovn-dbs-role" id="location-ovn-dbs-bundle-rule-expr" operation="eq" value="true"/>
+        </rule>
+      </rsc_location>
+      <rsc_location id="location-ip-172.17.1.57" resource-discovery="exclusive" rsc="ip-172.17.1.57">
+        <rule id="location-ip-172.17.1.57-rule" score="0">
+          <expression attribute="ovn-dbs-role" id="location-ip-172.17.1.57-rule-expr" operation="eq" value="true"/>
+        </rule>
+      </rsc_location>
+      <rsc_colocation id="colocation-ip-172.17.1.57-ovn-dbs-bundle-INFINITY" rsc="ip-172.17.1.57" rsc-role="Started" score="INFINITY" with-rsc="ovn-dbs-bundle" with-rsc-role="Master"/>
+      <rsc_order first="ovn-dbs-bundle" first-action="promote" id="order-ovn-dbs-bundle-ip-172.17.1.57-Optional" kind="Optional" then="ip-172.17.1.57" then-action="start"/>
+      <rsc_location id="location-compute-unfence-trigger-clone" resource-discovery="never" rsc="compute-unfence-trigger-clone">
+        <rule id="location-compute-unfence-trigger-clone-rule" score="-INFINITY">
+          <expression attribute="compute-instanceha-role" id="location-compute-unfence-trigger-clone-rule-expr" operation="ne" value="true"/>
+        </rule>
+      </rsc_location>
+      <rsc_location id="location-nova-evacuate" resource-discovery="never" rsc="nova-evacuate">
+        <rule id="location-nova-evacuate-rule" score="-INFINITY">
+          <expression attribute="compute-instanceha-role" id="location-nova-evacuate-rule-expr" operation="eq" value="true"/>
+        </rule>
+      </rsc_location>
+      <rsc_location id="location-openstack-cinder-volume" resource-discovery="exclusive" rsc="openstack-cinder-volume">
+        <rule id="location-openstack-cinder-volume-rule" score="0">
+          <expression attribute="cinder-volume-role" id="location-openstack-cinder-volume-rule-expr" operation="eq" value="true"/>
+        </rule>
+      </rsc_location>
+      <rsc_location id="location-stonith-fence_ipmilan-5254001f5f3c-database-0--10000" node="database-0" rsc="stonith-fence_ipmilan-5254001f5f3c" score="-10000"/>
+      <rsc_location id="location-stonith-fence_ipmilan-525400e10267-messaging-0--10000" node="messaging-0" rsc="stonith-fence_ipmilan-525400e10267" score="-10000"/>
+      <rsc_location id="location-stonith-fence_ipmilan-525400bb150b-database-2--10000" node="database-2" rsc="stonith-fence_ipmilan-525400bb150b" score="-10000"/>
+      <rsc_location id="location-stonith-fence_ipmilan-5254009cb549-messaging-1--10000" node="messaging-1" rsc="stonith-fence_ipmilan-5254009cb549" score="-10000"/>
+      <rsc_location id="location-stonith-fence_ipmilan-525400ffc780-database-1--10000" node="database-1" rsc="stonith-fence_ipmilan-525400ffc780" score="-10000"/>
+      <rsc_location id="location-stonith-fence_ipmilan-525400d5382b-compute-0--10000" node="compute-0" rsc="stonith-fence_ipmilan-525400d5382b" score="-10000"/>
+      <rsc_location id="location-stonith-fence_ipmilan-52540033df9c-messaging-2--10000" node="messaging-2" rsc="stonith-fence_ipmilan-52540033df9c" score="-10000"/>
+      <rsc_location id="location-stonith-fence_ipmilan-525400642894-compute-1--10000" node="compute-1" rsc="stonith-fence_ipmilan-525400642894" score="-10000"/>
+      <rsc_location id="location-stonith-fence_ipmilan-5254003f88b4-controller-2--10000" node="controller-2" rsc="stonith-fence_ipmilan-5254003f88b4" score="-10000"/>
+      <rsc_location id="location-stonith-fence_ipmilan-5254007b7920-controller-1--10000" node="controller-1" rsc="stonith-fence_ipmilan-5254007b7920" score="-10000"/>
+      <rsc_location id="location-stonith-fence_ipmilan-525400dc0f81-controller-0--10000" node="controller-0" rsc="stonith-fence_ipmilan-525400dc0f81" score="-10000"/>
+    </constraints>
+    <rsc_defaults>
+      <meta_attributes id="rsc_defaults-meta_attributes">
+        <nvpair id="rsc_defaults-meta_attributes-requires" name="requires" value="fencing"/>
+      </meta_attributes>
+    </rsc_defaults>
+    <op_defaults>
+      <meta_attributes id="op_defaults-meta_attributes">
+        <nvpair id="op_defaults-meta_attributes-timeout" name="timeout" value="120s"/>
+      </meta_attributes>
+    </op_defaults>
+    <fencing-topology>
+      <fencing-level devices="stonith-fence_ipmilan-5254009cb549" id="fl-messaging-1-1" index="1" target="messaging-1"/>
+      <fencing-level devices="stonith-fence_ipmilan-525400bb150b" id="fl-database-2-1" index="1" target="database-2"/>
+      <fencing-level devices="stonith-fence_ipmilan-525400d5382b,stonith-fence_compute-fence-nova" id="fl-compute-0-1" index="1" target="compute-0"/>
+      <fencing-level devices="stonith-fence_ipmilan-525400642894,stonith-fence_compute-fence-nova" id="fl-compute-1-1" index="1" target="compute-1"/>
+      <fencing-level devices="stonith-fence_ipmilan-525400e10267" id="fl-messaging-0-1" index="1" target="messaging-0"/>
+      <fencing-level devices="stonith-fence_ipmilan-5254001f5f3c" id="fl-database-0-1" index="1" target="database-0"/>
+      <fencing-level devices="stonith-fence_ipmilan-52540033df9c" id="fl-messaging-2-1" index="1" target="messaging-2"/>
+      <fencing-level devices="stonith-fence_ipmilan-525400ffc780" id="fl-database-1-1" index="1" target="database-1"/>
+      <fencing-level devices="stonith-fence_ipmilan-5254003f88b4" id="fl-controller-2-1" index="1" target="controller-2"/>
+      <fencing-level devices="stonith-fence_ipmilan-5254007b7920" id="fl-controller-1-1" index="1" target="controller-1"/>
+      <fencing-level devices="stonith-fence_ipmilan-525400dc0f81" id="fl-controller-0-1" index="1" target="controller-0"/>
+    </fencing-topology>
+  </configuration>
+  <status>
+    <node_state id="4" uname="database-0" in_ccm="true" crmd="online" join="member" expected="member" crm-debug-origin="do_update_resource">
+      <transient_attributes id="4">
+        <instance_attributes id="status-4">
+          <nvpair id="status-4-.node-unfenced" name="#node-unfenced" value="1605581396"/>
+          <nvpair id="status-4-fail-count-ovndb_servers.cancel_10000" name="fail-count-ovndb_servers#cancel_10000" value="493"/>
+          <nvpair id="status-4-last-failure-ovndb_servers.cancel_10000" name="last-failure-ovndb_servers#cancel_10000" value="1605589343"/>
+          <nvpair id="status-4-master-galera" name="master-galera" value="100"/>
+          <nvpair id="status-4-fail-count-stonith-fence_compute-fence-nova.start_0" name="fail-count-stonith-fence_compute-fence-nova#start_0" value="INFINITY"/>
+          <nvpair id="status-4-last-failure-stonith-fence_compute-fence-nova.start_0" name="last-failure-stonith-fence_compute-fence-nova#start_0" value="1605589970"/>
+        </instance_attributes>
+      </transient_attributes>
+      <lrm id="4">
+        <lrm_resources>
+          <lrm_resource id="rabbitmq-bundle-1" type="remote" class="ocf" provider="pacemaker" container="rabbitmq-bundle-podman-1">
+            <lrm_rsc_op id="rabbitmq-bundle-1_last_0" operation_key="rabbitmq-bundle-1_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="75:213:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:7;75:213:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="database-0" call-id="6" rc-code="7" op-status="0" interval="0" last-rc-change="1605581396" last-run="1605581396" exec-time="0" queue-time="0" op-digest="e25f0ff041ed91bee8ee197d0ce2aebd" op-force-restart="  server  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
+          </lrm_resource>
+          <lrm_resource id="rabbitmq-bundle-2" type="remote" class="ocf" provider="pacemaker" container="rabbitmq-bundle-podman-2">
+            <lrm_rsc_op id="rabbitmq-bundle-2_last_0" operation_key="rabbitmq-bundle-2_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="76:213:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:7;76:213:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="database-0" call-id="7" rc-code="7" op-status="0" interval="0" last-rc-change="1605581396" last-run="1605581396" exec-time="0" queue-time="0" op-digest="593e15353c64e73e2efe61415c7dd44b" op-force-restart="  server  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
+          </lrm_resource>
+          <lrm_resource id="stonith-fence_ipmilan-525400dc0f81" type="fence_ipmilan" class="stonith">
+            <lrm_rsc_op id="stonith-fence_ipmilan-525400dc0f81_last_0" operation_key="stonith-fence_ipmilan-525400dc0f81_stop_0" operation="stop" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.1" transition-key="329:1380:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;329:1380:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="database-0" call-id="203" rc-code="0" op-status="0" interval="0" last-rc-change="1605589401" last-run="1605589401" exec-time="1" queue-time="0" op-digest="baa6fc182a42d0a5173739535c7c67fe"/>
+          </lrm_resource>
+          <lrm_resource id="galera-bundle-0" type="remote" class="ocf" provider="pacemaker" container="galera-bundle-podman-0">
+            <lrm_rsc_op id="galera-bundle-0_last_0" operation_key="galera-bundle-0_start_0" operation="start" crm-debug-origin="do_update_resource" crm_feature_set="3.6.1" transition-key="58:1404:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;58:1404:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="database-0" call-id="30" rc-code="0" op-status="0" interval="0" last-rc-change="1605589818" last-run="1605589818" exec-time="0" queue-time="0" op-digest="dbc6b52d45a75a0b041af92265b22f9e" op-force-restart="  server  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
+            <lrm_rsc_op id="galera-bundle-0_monitor_30000" operation_key="galera-bundle-0_monitor_30000" operation="monitor" crm-debug-origin="do_update_resource" crm_feature_set="3.6.1" transition-key="63:1405:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;63:1405:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="database-0" call-id="31" rc-code="0" op-status="0" interval="30000" last-rc-change="1605589822" exec-time="0" queue-time="0" op-digest="5d2228aaf67e56daab6dce7f17253926"/>
+          </lrm_resource>
+          <lrm_resource id="stonith-fence_ipmilan-525400bb150b" type="fence_ipmilan" class="stonith">
+            <lrm_rsc_op id="stonith-fence_ipmilan-525400bb150b_last_0" operation_key="stonith-fence_ipmilan-525400bb150b_stop_0" operation="stop" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="323:70:0:40f880e4-b328-4380-9703-47856390a1e0" transition-magic="0:0;323:70:0:40f880e4-b328-4380-9703-47856390a1e0" exit-reason="" on_node="database-0" call-id="147" rc-code="0" op-status="0" interval="0" last-rc-change="1605584024" last-run="1605584024" exec-time="2" queue-time="0" op-digest="7069d4bd259f26c8e756d0cfe8359ac1"/>
+          </lrm_resource>
+          <lrm_resource id="compute-0" type="remote" class="ocf" provider="pacemaker">
+            <lrm_rsc_op id="compute-0_last_0" operation_key="compute-0_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="87:211:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:7;87:211:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="database-0" call-id="1" rc-code="7" op-status="0" interval="0" last-rc-change="1605581392" last-run="1605581392" exec-time="0" queue-time="0" op-digest="94f4ed47fadb94317ef0f8959942f09e" op-force-restart="  server  " op-restart-digest="94f4ed47fadb94317ef0f8959942f09e"/>
+          </lrm_resource>
+          <lrm_resource id="compute-1" type="remote" class="ocf" provider="pacemaker">
+            <lrm_rsc_op id="compute-1_last_0" operation_key="compute-1_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="88:211:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:7;88:211:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="database-0" call-id="2" rc-code="7" op-status="0" interval="0" last-rc-change="1605581392" last-run="1605581392" exec-time="0" queue-time="0" op-digest="4a9ef452428322fd1d0d0c44a6f176fd" op-force-restart="  server  " op-restart-digest="4a9ef452428322fd1d0d0c44a6f176fd"/>
+          </lrm_resource>
+          <lrm_resource id="stonith-fence_ipmilan-5254007b7920" type="fence_ipmilan" class="stonith">
+            <lrm_rsc_op id="stonith-fence_ipmilan-5254007b7920_last_0" operation_key="stonith-fence_ipmilan-5254007b7920_stop_0" operation="stop" crm-debug-origin="do_update_resource" crm_feature_set="3.6.1" transition-key="286:1396:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;286:1396:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="database-0" call-id="205" rc-code="0" op-status="0" interval="0" last-rc-change="1605589779" last-run="1605589779" exec-time="0" queue-time="0" op-digest="292cf370c85404b918bcf8312056ca36" op-secure-params="  password passwd  " op-secure-digest="78d581355e684910edb664ba961cf50d"/>
+            <lrm_rsc_op id="stonith-fence_ipmilan-5254007b7920_monitor_60000" operation_key="stonith-fence_ipmilan-5254007b7920_monitor_60000" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.1" transition-key="310:42:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;310:42:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="database-0" call-id="173" rc-code="0" op-status="0" interval="60000" last-rc-change="1605585887" exec-time="469" queue-time="0" op-digest="91bc9c45f4cca48c0c30614d0126a670" op-secure-params="  password passwd  " op-secure-digest="78d581355e684910edb664ba961cf50d"/>
+          </lrm_resource>
+          <lrm_resource id="stonith-fence_ipmilan-525400ffc780" type="fence_ipmilan" class="stonith">
+            <lrm_rsc_op id="stonith-fence_ipmilan-525400ffc780_last_0" operation_key="stonith-fence_ipmilan-525400ffc780_stop_0" operation="stop" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.1" transition-key="325:48:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;325:48:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="database-0" call-id="175" rc-code="0" op-status="0" interval="0" last-rc-change="1605585911" last-run="1605585911" exec-time="0" queue-time="0" op-digest="d5b19f9189ef5c23bf62dd041a8a1cfd"/>
+          </lrm_resource>
+          <lrm_resource id="stonith-fence_ipmilan-5254009cb549" type="fence_ipmilan" class="stonith">
+            <lrm_rsc_op id="stonith-fence_ipmilan-5254009cb549_last_0" operation_key="stonith-fence_ipmilan-5254009cb549_start_0" operation="start" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.1" transition-key="322:1375:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;322:1375:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="database-0" call-id="200" rc-code="0" op-status="0" interval="0" last-rc-change="1605589381" last-run="1605589381" exec-time="419" queue-time="0" op-digest="da530999b2b0c233366dbd0dab07c65f" op-secure-params="  password passwd  " op-secure-digest="6153a0210bf9ca00a096fe7a933b3ca6"/>
+            <lrm_rsc_op id="stonith-fence_ipmilan-5254009cb549_monitor_60000" operation_key="stonith-fence_ipmilan-5254009cb549_monitor_60000" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.1" transition-key="323:1375:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;323:1375:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="database-0" call-id="201" rc-code="0" op-status="0" interval="60000" last-rc-change="1605589381" exec-time="418" queue-time="0" op-digest="4340ebf2e076f8e92e96c30a4ec0ada7" op-secure-params="  password passwd  " op-secure-digest="6153a0210bf9ca00a096fe7a933b3ca6"/>
+          </lrm_resource>
+          <lrm_resource id="stonith-fence_ipmilan-525400e10267" type="fence_ipmilan" class="stonith">
+            <lrm_rsc_op id="stonith-fence_ipmilan-525400e10267_last_0" operation_key="stonith-fence_ipmilan-525400e10267_stop_0" operation="stop" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.1" transition-key="325:1316:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;325:1316:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="database-0" call-id="187" rc-code="0" op-status="0" interval="0" last-rc-change="1605589305" last-run="1605589305" exec-time="3" queue-time="0" op-digest="ad5ccd62a43794b237bdd30ae0887630"/>
+          </lrm_resource>
+          <lrm_resource id="stonith-fence_ipmilan-5254003f88b4" type="fence_ipmilan" class="stonith">
+            <lrm_rsc_op id="stonith-fence_ipmilan-5254003f88b4_last_0" operation_key="stonith-fence_ipmilan-5254003f88b4_stop_0" operation="stop" crm-debug-origin="do_update_resource" crm_feature_set="3.6.1" transition-key="270:1397:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;270:1397:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="database-0" call-id="211" rc-code="0" op-status="0" interval="0" last-rc-change="1605589786" last-run="1605589786" exec-time="5" queue-time="0" op-digest="e4ae59cf662c224d9817c0d0331d50ba" op-secure-params="  password passwd  " op-secure-digest="9b06848b37b8bbd582e7cd4733987493"/>
+            <lrm_rsc_op id="stonith-fence_ipmilan-5254003f88b4_monitor_60000" operation_key="stonith-fence_ipmilan-5254003f88b4_monitor_60000" operation="monitor" crm-debug-origin="do_update_resource" crm_feature_set="3.6.1" transition-key="285:1396:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;285:1396:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="database-0" call-id="209" rc-code="0" op-status="0" interval="60000" last-rc-change="1605589780" exec-time="468" queue-time="0" op-digest="149734c12b950bda320c528292903d4e" op-secure-params="  password passwd  " op-secure-digest="9b06848b37b8bbd582e7cd4733987493"/>
+          </lrm_resource>
+          <lrm_resource id="stonith-fence_ipmilan-525400642894" type="fence_ipmilan" class="stonith">
+            <lrm_rsc_op id="stonith-fence_ipmilan-525400642894_last_0" operation_key="stonith-fence_ipmilan-525400642894_stop_0" operation="stop" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="316:6:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;316:6:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="database-0" call-id="151" rc-code="0" op-status="0" interval="0" last-rc-change="1605584228" last-run="1605584228" exec-time="6" queue-time="0" op-digest="1779ddd0abf841e7e9914f08b32da1a6"/>
+          </lrm_resource>
+          <lrm_resource id="redis-bundle-0" type="remote" class="ocf" provider="pacemaker" container="redis-bundle-podman-0">
+            <lrm_rsc_op id="redis-bundle-0_last_0" operation_key="redis-bundle-0_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="77:213:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:7;77:213:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="database-0" call-id="8" rc-code="7" op-status="0" interval="0" last-rc-change="1605581397" last-run="1605581397" exec-time="0" queue-time="0" op-digest="f325849fbffe2e62970eb201a50da9f3" op-force-restart="  server  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
+          </lrm_resource>
+          <lrm_resource id="galera-bundle-1" type="remote" class="ocf" provider="pacemaker" container="galera-bundle-podman-1">
+            <lrm_rsc_op id="galera-bundle-1_last_0" operation_key="galera-bundle-1_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="92:211:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:7;92:211:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="database-0" call-id="3" rc-code="7" op-status="0" interval="0" last-rc-change="1605581392" last-run="1605581392" exec-time="0" queue-time="0" op-digest="f6e3b46e18b24f6e1cca9639ec9b7c41" op-force-restart="  server  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
+          </lrm_resource>
+          <lrm_resource id="galera-bundle-2" type="remote" class="ocf" provider="pacemaker" container="galera-bundle-podman-2">
+            <lrm_rsc_op id="galera-bundle-2_last_0" operation_key="galera-bundle-2_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="73:213:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:7;73:213:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="database-0" call-id="4" rc-code="7" op-status="0" interval="0" last-rc-change="1605581396" last-run="1605581396" exec-time="0" queue-time="0" op-digest="bf7cf9acd053cee24dc3401862009e40" op-force-restart="  server  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
+          </lrm_resource>
+          <lrm_resource id="redis-bundle-2" type="remote" class="ocf" provider="pacemaker" container="redis-bundle-podman-2">
+            <lrm_rsc_op id="redis-bundle-2_last_0" operation_key="redis-bundle-2_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="79:213:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:7;79:213:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="database-0" call-id="10" rc-code="7" op-status="0" interval="0" last-rc-change="1605581397" last-run="1605581397" exec-time="0" queue-time="0" op-digest="cd98602d6f977947327050913302f861" op-force-restart="  server  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
+          </lrm_resource>
+          <lrm_resource id="redis-bundle-1" type="remote" class="ocf" provider="pacemaker" container="redis-bundle-podman-1">
+            <lrm_rsc_op id="redis-bundle-1_last_0" operation_key="redis-bundle-1_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="78:213:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:7;78:213:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="database-0" call-id="9" rc-code="7" op-status="0" interval="0" last-rc-change="1605581397" last-run="1605581397" exec-time="0" queue-time="0" op-digest="dd323696d6c8ed14cb71914c411664c9" op-force-restart="  server  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
+          </lrm_resource>
+          <lrm_resource id="ovn-dbs-bundle-0" type="remote" class="ocf" provider="pacemaker" container="ovn-dbs-bundle-podman-0">
+            <lrm_rsc_op id="ovn-dbs-bundle-0_last_0" operation_key="ovn-dbs-bundle-0_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="80:213:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:7;80:213:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="database-0" call-id="11" rc-code="7" op-status="0" interval="0" last-rc-change="1605581397" last-run="1605581397" exec-time="0" queue-time="0" op-digest="bf04cc8b2becfb29770a97d109ad6c4f" op-force-restart="  server  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
+          </lrm_resource>
+          <lrm_resource id="galera-bundle-podman-0" type="podman" class="ocf" provider="heartbeat">
+            <lrm_rsc_op id="galera-bundle-podman-0_last_0" operation_key="galera-bundle-podman-0_start_0" operation="start" crm-debug-origin="do_update_resource" crm_feature_set="3.6.1" transition-key="53:1403:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;53:1403:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="database-0" call-id="216" rc-code="0" op-status="0" interval="0" last-rc-change="1605589816" last-run="1605589816" exec-time="2375" queue-time="0" op-digest="67ad45a24ec9f786a74a5af1f24c1a12"/>
+            <lrm_rsc_op id="galera-bundle-podman-0_monitor_60000" operation_key="galera-bundle-podman-0_monitor_60000" operation="monitor" crm-debug-origin="do_update_resource" crm_feature_set="3.6.1" transition-key="57:1404:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;57:1404:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="database-0" call-id="217" rc-code="0" op-status="0" interval="60000" last-rc-change="1605589818" exec-time="611" queue-time="0" op-digest="9608af3024d8e90f4c523d8bc86c0e2d"/>
+          </lrm_resource>
+          <lrm_resource id="galera-bundle-podman-1" type="podman" class="ocf" provider="heartbeat">
+            <lrm_rsc_op id="galera-bundle-podman-1_last_0" operation_key="galera-bundle-podman-1_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="91:211:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:7;91:211:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="database-0" call-id="11" rc-code="7" op-status="0" interval="0" last-rc-change="1605581392" last-run="1605581392" exec-time="346" queue-time="0" op-digest="a9aac774cc5fb526f706e4d71cba3f8a"/>
+          </lrm_resource>
+          <lrm_resource id="galera-bundle-podman-2" type="podman" class="ocf" provider="heartbeat">
+            <lrm_rsc_op id="galera-bundle-podman-2_last_0" operation_key="galera-bundle-podman-2_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="93:211:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:7;93:211:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="database-0" call-id="16" rc-code="7" op-status="0" interval="0" last-rc-change="1605581392" last-run="1605581392" exec-time="253" queue-time="0" op-digest="1a756f5a00d226af2591b1b953797acc"/>
+          </lrm_resource>
+          <lrm_resource id="ovn-dbs-bundle-2" type="remote" class="ocf" provider="pacemaker" container="ovn-dbs-bundle-podman-2">
+            <lrm_rsc_op id="ovn-dbs-bundle-2_last_0" operation_key="ovn-dbs-bundle-2_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="82:213:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:7;82:213:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="database-0" call-id="13" rc-code="7" op-status="0" interval="0" last-rc-change="1605581397" last-run="1605581397" exec-time="0" queue-time="0" op-digest="015c999adc4143966a5e0ba98e5d74af" op-force-restart="  server  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
+          </lrm_resource>
+          <lrm_resource id="stonith-fence_compute-fence-nova" type="fence_compute" class="stonith">
+            <lrm_rsc_op id="stonith-fence_compute-fence-nova_last_0" operation_key="stonith-fence_compute-fence-nova_stop_0" operation="stop" crm-debug-origin="do_update_resource" crm_feature_set="3.6.1" transition-key="4:1416:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;4:1416:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="database-0" call-id="223" rc-code="0" op-status="0" interval="0" last-rc-change="1605589971" last-run="1605589971" exec-time="0" queue-time="0" op-digest="04758bda751b3d5aa6c380933a6cf696" op-secure-params="  password passwd  " op-secure-digest="e0992836f72674b3c1b56e40d152bdf9"/>
+            <lrm_rsc_op id="stonith-fence_compute-fence-nova_last_failure_0" operation_key="stonith-fence_compute-fence-nova_start_0" operation="start" crm-debug-origin="do_update_resource" crm_feature_set="3.6.1" transition-key="246:1414:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:1;246:1414:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="database-0" call-id="222" rc-code="1" op-status="0" interval="0" last-rc-change="1605589962" last-run="1605589962" exec-time="7740" queue-time="0" op-digest="04758bda751b3d5aa6c380933a6cf696"/>
+          </lrm_resource>
+          <lrm_resource id="ovn-dbs-bundle-1" type="remote" class="ocf" provider="pacemaker" container="ovn-dbs-bundle-podman-1">
+            <lrm_rsc_op id="ovn-dbs-bundle-1_last_0" operation_key="ovn-dbs-bundle-1_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="81:213:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:7;81:213:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="database-0" call-id="12" rc-code="7" op-status="0" interval="0" last-rc-change="1605581397" last-run="1605581397" exec-time="0" queue-time="0" op-digest="d00e87492de6b83a85450cd667db2a88" op-force-restart="  server  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
+          </lrm_resource>
+          <lrm_resource id="stonith-fence_ipmilan-525400d5382b" type="fence_ipmilan" class="stonith">
+            <lrm_rsc_op id="stonith-fence_ipmilan-525400d5382b_last_0" operation_key="stonith-fence_ipmilan-525400d5382b_stop_0" operation="stop" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.1" transition-key="318:1374:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;318:1374:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="database-0" call-id="197" rc-code="0" op-status="0" interval="0" last-rc-change="1605589379" last-run="1605589379" exec-time="0" queue-time="0" op-digest="03339c868b4e990d1eee35ee0d8fd924"/>
+          </lrm_resource>
+          <lrm_resource id="stonith-fence_ipmilan-52540033df9c" type="fence_ipmilan" class="stonith">
+            <lrm_rsc_op id="stonith-fence_ipmilan-52540033df9c_last_0" operation_key="stonith-fence_ipmilan-52540033df9c_stop_0" operation="stop" crm-debug-origin="do_update_resource" crm_feature_set="3.6.1" transition-key="260:1420:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;260:1420:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="database-0" call-id="227" rc-code="0" op-status="0" interval="0" last-rc-change="1605589987" last-run="1605589987" exec-time="1" queue-time="0" op-digest="b0341087994098c62f29bd703448ffed" op-secure-params="  password passwd  " op-secure-digest="4df029b6ad27db68abf3c71606f906ea"/>
+            <lrm_rsc_op id="stonith-fence_ipmilan-52540033df9c_monitor_60000" operation_key="stonith-fence_ipmilan-52540033df9c_monitor_60000" operation="monitor" crm-debug-origin="do_update_resource" crm_feature_set="3.6.1" transition-key="262:1416:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;262:1416:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="database-0" call-id="225" rc-code="0" op-status="0" interval="60000" last-rc-change="1605589971" exec-time="433" queue-time="0" op-digest="d2962d8811a6e1b86f138b75b779d8c6" op-secure-params="  password passwd  " op-secure-digest="4df029b6ad27db68abf3c71606f906ea"/>
+          </lrm_resource>
+          <lrm_resource id="nova-evacuate" type="NovaEvacuate" class="ocf" provider="openstack">
+            <lrm_rsc_op id="nova-evacuate_last_0" operation_key="nova-evacuate_start_0" operation="start" crm-debug-origin="do_update_resource" crm_feature_set="3.6.1" transition-key="258:1420:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;258:1420:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="database-0" call-id="228" rc-code="0" op-status="0" interval="0" last-rc-change="1605589987" last-run="1605589987" exec-time="28" queue-time="0" op-digest="8c367ebe0409afc3686f512ae68b1ee4" op-secure-params="  password  " op-secure-digest="f89eeb9446a58fb145857e36589bd2ee"/>
+            <lrm_rsc_op id="nova-evacuate_monitor_10000" operation_key="nova-evacuate_monitor_10000" operation="monitor" crm-debug-origin="do_update_resource" crm_feature_set="3.6.1" transition-key="259:1420:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;259:1420:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="database-0" call-id="229" rc-code="0" op-status="0" interval="10000" last-rc-change="1605589987" exec-time="31" queue-time="0" op-digest="5196df8d7b65e77d18a4866499aad276" op-secure-params="  password  " op-secure-digest="f89eeb9446a58fb145857e36589bd2ee"/>
+          </lrm_resource>
+          <lrm_resource id="rabbitmq-bundle-0" type="remote" class="ocf" provider="pacemaker" container="rabbitmq-bundle-podman-0">
+            <lrm_rsc_op id="rabbitmq-bundle-0_last_0" operation_key="rabbitmq-bundle-0_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="74:213:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:7;74:213:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="database-0" call-id="5" rc-code="7" op-status="0" interval="0" last-rc-change="1605581396" last-run="1605581396" exec-time="0" queue-time="0" op-digest="a41ad5f9625676395b163a06987de2d6" op-force-restart="  server  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
+          </lrm_resource>
+          <lrm_resource id="stonith-fence_ipmilan-5254001f5f3c" type="fence_ipmilan" class="stonith">
+            <lrm_rsc_op id="stonith-fence_ipmilan-5254001f5f3c_last_0" operation_key="stonith-fence_ipmilan-5254001f5f3c_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="71:214:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:7;71:214:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="database-0" call-id="45" rc-code="7" op-status="0" interval="0" last-rc-change="1605581403" last-run="1605581403" exec-time="0" queue-time="0" op-digest="859262e1216f50b739b9ff444e605375" op-secure-params="  password passwd  " op-secure-digest="95ad05342de9eab61bee697cec0a352e"/>
+          </lrm_resource>
+        </lrm_resources>
+      </lrm>
+    </node_state>
+    <node_state id="5" uname="database-1" in_ccm="true" crmd="online" join="member" expected="member" crm-debug-origin="do_update_resource">
+      <transient_attributes id="5">
+        <instance_attributes id="status-5">
+          <nvpair id="status-5-.node-unfenced" name="#node-unfenced" value="1605582735"/>
+          <nvpair id="status-5-fail-count-ovndb_servers.cancel_10000" name="fail-count-ovndb_servers#cancel_10000" value="363"/>
+          <nvpair id="status-5-last-failure-ovndb_servers.cancel_10000" name="last-failure-ovndb_servers#cancel_10000" value="1605586055"/>
+          <nvpair id="status-5-master-galera" name="master-galera" value="100"/>
+          <nvpair id="status-5-fail-count-stonith-fence_compute-fence-nova.start_0" name="fail-count-stonith-fence_compute-fence-nova#start_0" value="INFINITY"/>
+          <nvpair id="status-5-last-failure-stonith-fence_compute-fence-nova.start_0" name="last-failure-stonith-fence_compute-fence-nova#start_0" value="1605589978"/>
+        </instance_attributes>
+      </transient_attributes>
+      <lrm id="5">
+        <lrm_resources>
+          <lrm_resource id="rabbitmq-bundle-1" type="remote" class="ocf" provider="pacemaker" container="rabbitmq-bundle-podman-1">
+            <lrm_rsc_op id="rabbitmq-bundle-1_last_0" operation_key="rabbitmq-bundle-1_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="70:21:7:40f880e4-b328-4380-9703-47856390a1e0" transition-magic="0:7;70:21:7:40f880e4-b328-4380-9703-47856390a1e0" exit-reason="" on_node="database-1" call-id="6" rc-code="7" op-status="0" interval="0" last-rc-change="1605582739" last-run="1605582739" exec-time="0" queue-time="0" op-digest="e25f0ff041ed91bee8ee197d0ce2aebd" op-force-restart="  server  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
+          </lrm_resource>
+          <lrm_resource id="rabbitmq-bundle-2" type="remote" class="ocf" provider="pacemaker" container="rabbitmq-bundle-podman-2">
+            <lrm_rsc_op id="rabbitmq-bundle-2_last_0" operation_key="rabbitmq-bundle-2_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="71:21:7:40f880e4-b328-4380-9703-47856390a1e0" transition-magic="0:7;71:21:7:40f880e4-b328-4380-9703-47856390a1e0" exit-reason="" on_node="database-1" call-id="7" rc-code="7" op-status="0" interval="0" last-rc-change="1605582739" last-run="1605582739" exec-time="0" queue-time="0" op-digest="593e15353c64e73e2efe61415c7dd44b" op-force-restart="  server  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
+          </lrm_resource>
+          <lrm_resource id="stonith-fence_ipmilan-525400e10267" type="fence_ipmilan" class="stonith">
+            <lrm_rsc_op id="stonith-fence_ipmilan-525400e10267_last_0" operation_key="stonith-fence_ipmilan-525400e10267_stop_0" operation="stop" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="355:52:0:40f880e4-b328-4380-9703-47856390a1e0" transition-magic="0:0;355:52:0:40f880e4-b328-4380-9703-47856390a1e0" exit-reason="" on_node="database-1" call-id="101" rc-code="0" op-status="0" interval="0" last-rc-change="1605583423" last-run="1605583423" exec-time="1" queue-time="0" op-digest="ad5ccd62a43794b237bdd30ae0887630"/>
+          </lrm_resource>
+          <lrm_resource id="stonith-fence_ipmilan-525400bb150b" type="fence_ipmilan" class="stonith">
+            <lrm_rsc_op id="stonith-fence_ipmilan-525400bb150b_last_0" operation_key="stonith-fence_ipmilan-525400bb150b_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="86:21:7:40f880e4-b328-4380-9703-47856390a1e0" transition-magic="0:7;86:21:7:40f880e4-b328-4380-9703-47856390a1e0" exit-reason="" on_node="database-1" call-id="64" rc-code="7" op-status="0" interval="0" last-rc-change="1605582740" last-run="1605582740" exec-time="0" queue-time="0" op-digest="7069d4bd259f26c8e756d0cfe8359ac1" op-secure-params="  password passwd  " op-secure-digest="d7b4bc578fd079201c7ec804f2b8862f"/>
+          </lrm_resource>
+          <lrm_resource id="compute-0" type="remote" class="ocf" provider="pacemaker">
+            <lrm_rsc_op id="compute-0_last_0" operation_key="compute-0_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="74:20:7:40f880e4-b328-4380-9703-47856390a1e0" transition-magic="0:7;74:20:7:40f880e4-b328-4380-9703-47856390a1e0" exit-reason="" on_node="database-1" call-id="1" rc-code="7" op-status="0" interval="0" last-rc-change="1605582731" last-run="1605582731" exec-time="0" queue-time="0" op-digest="94f4ed47fadb94317ef0f8959942f09e" op-force-restart="  server  " op-restart-digest="94f4ed47fadb94317ef0f8959942f09e"/>
+          </lrm_resource>
+          <lrm_resource id="compute-1" type="remote" class="ocf" provider="pacemaker">
+            <lrm_rsc_op id="compute-1_last_0" operation_key="compute-1_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="75:20:7:40f880e4-b328-4380-9703-47856390a1e0" transition-magic="0:7;75:20:7:40f880e4-b328-4380-9703-47856390a1e0" exit-reason="" on_node="database-1" call-id="2" rc-code="7" op-status="0" interval="0" last-rc-change="1605582731" last-run="1605582731" exec-time="0" queue-time="0" op-digest="4a9ef452428322fd1d0d0c44a6f176fd" op-force-restart="  server  " op-restart-digest="4a9ef452428322fd1d0d0c44a6f176fd"/>
+          </lrm_resource>
+          <lrm_resource id="stonith-fence_ipmilan-5254007b7920" type="fence_ipmilan" class="stonith">
+            <lrm_rsc_op id="stonith-fence_ipmilan-5254007b7920_last_0" operation_key="stonith-fence_ipmilan-5254007b7920_stop_0" operation="stop" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="341:2:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;341:2:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="database-1" call-id="113" rc-code="0" op-status="0" interval="0" last-rc-change="1605584081" last-run="1605584081" exec-time="0" queue-time="0" op-digest="292cf370c85404b918bcf8312056ca36"/>
+          </lrm_resource>
+          <lrm_resource id="stonith-fence_ipmilan-525400ffc780" type="fence_ipmilan" class="stonith">
+            <lrm_rsc_op id="stonith-fence_ipmilan-525400ffc780_last_0" operation_key="stonith-fence_ipmilan-525400ffc780_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="87:21:7:40f880e4-b328-4380-9703-47856390a1e0" transition-magic="0:7;87:21:7:40f880e4-b328-4380-9703-47856390a1e0" exit-reason="" on_node="database-1" call-id="68" rc-code="7" op-status="0" interval="0" last-rc-change="1605582740" last-run="1605582740" exec-time="0" queue-time="0" op-digest="d5b19f9189ef5c23bf62dd041a8a1cfd" op-secure-params="  password passwd  " op-secure-digest="4415a1b3c8ddcc34bc954c9b603fc36a"/>
+          </lrm_resource>
+          <lrm_resource id="stonith-fence_ipmilan-5254009cb549" type="fence_ipmilan" class="stonith">
+            <lrm_rsc_op id="stonith-fence_ipmilan-5254009cb549_last_0" operation_key="stonith-fence_ipmilan-5254009cb549_stop_0" operation="stop" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.1" transition-key="323:1367:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;323:1367:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="database-1" call-id="141" rc-code="0" op-status="0" interval="0" last-rc-change="1605589346" last-run="1605589346" exec-time="0" queue-time="0" op-digest="da530999b2b0c233366dbd0dab07c65f"/>
+          </lrm_resource>
+          <lrm_resource id="stonith-fence_ipmilan-525400dc0f81" type="fence_ipmilan" class="stonith">
+            <lrm_rsc_op id="stonith-fence_ipmilan-525400dc0f81_last_0" operation_key="stonith-fence_ipmilan-525400dc0f81_start_0" operation="start" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.1" transition-key="330:1380:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;330:1380:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="database-1" call-id="152" rc-code="0" op-status="0" interval="0" last-rc-change="1605589402" last-run="1605589402" exec-time="376" queue-time="0" op-digest="baa6fc182a42d0a5173739535c7c67fe" op-secure-params="  password passwd  " op-secure-digest="3f25f023614ece56826bc3313a929fd4"/>
+            <lrm_rsc_op id="stonith-fence_ipmilan-525400dc0f81_monitor_60000" operation_key="stonith-fence_ipmilan-525400dc0f81_monitor_60000" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.1" transition-key="331:1380:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;331:1380:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="database-1" call-id="153" rc-code="0" op-status="0" interval="60000" last-rc-change="1605589402" exec-time="378" queue-time="0" op-digest="13d52aa4c145b0de2c501f53075c8376" op-secure-params="  password passwd  " op-secure-digest="3f25f023614ece56826bc3313a929fd4"/>
+          </lrm_resource>
+          <lrm_resource id="stonith-fence_ipmilan-5254003f88b4" type="fence_ipmilan" class="stonith">
+            <lrm_rsc_op id="stonith-fence_ipmilan-5254003f88b4_last_0" operation_key="stonith-fence_ipmilan-5254003f88b4_stop_0" operation="stop" crm-debug-origin="do_update_resource" crm_feature_set="3.6.1" transition-key="267:1420:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;267:1420:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="database-1" call-id="183" rc-code="0" op-status="0" interval="0" last-rc-change="1605589987" last-run="1605589987" exec-time="0" queue-time="0" op-digest="e4ae59cf662c224d9817c0d0331d50ba" op-secure-params="  password passwd  " op-secure-digest="9b06848b37b8bbd582e7cd4733987493"/>
+            <lrm_rsc_op id="stonith-fence_ipmilan-5254003f88b4_monitor_60000" operation_key="stonith-fence_ipmilan-5254003f88b4_monitor_60000" operation="monitor" crm-debug-origin="do_update_resource" crm_feature_set="3.6.1" transition-key="268:1418:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;268:1418:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="database-1" call-id="181" rc-code="0" op-status="0" interval="60000" last-rc-change="1605589978" exec-time="316" queue-time="0" op-digest="149734c12b950bda320c528292903d4e" op-secure-params="  password passwd  " op-secure-digest="9b06848b37b8bbd582e7cd4733987493"/>
+          </lrm_resource>
+          <lrm_resource id="stonith-fence_ipmilan-525400642894" type="fence_ipmilan" class="stonith">
+            <lrm_rsc_op id="stonith-fence_ipmilan-525400642894_last_0" operation_key="stonith-fence_ipmilan-525400642894_stop_0" operation="stop" crm-debug-origin="do_update_resource" crm_feature_set="3.6.1" transition-key="271:1424:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;271:1424:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="database-1" call-id="187" rc-code="0" op-status="0" interval="0" last-rc-change="1605590006" last-run="1605590006" exec-time="0" queue-time="0" op-digest="1779ddd0abf841e7e9914f08b32da1a6" op-secure-params="  password passwd  " op-secure-digest="920d017ea35856c843a6bbf9d9832105"/>
+            <lrm_rsc_op id="stonith-fence_ipmilan-525400642894_monitor_60000" operation_key="stonith-fence_ipmilan-525400642894_monitor_60000" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.1" transition-key="317:1368:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;317:1368:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="database-1" call-id="143" rc-code="0" op-status="0" interval="60000" last-rc-change="1605589347" exec-time="373" queue-time="0" op-digest="4ffb430f9403c55910379b4bb7e5de3d" op-secure-params="  password passwd  " op-secure-digest="920d017ea35856c843a6bbf9d9832105"/>
+          </lrm_resource>
+          <lrm_resource id="galera-bundle-1" type="remote" class="ocf" provider="pacemaker" container="galera-bundle-podman-1">
+            <lrm_rsc_op id="galera-bundle-1_last_0" operation_key="galera-bundle-1_start_0" operation="start" crm-debug-origin="do_update_resource" crm_feature_set="3.6.1" transition-key="63:1404:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;63:1404:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="database-1" call-id="27" rc-code="0" op-status="0" interval="0" last-rc-change="1605589818" last-run="1605589818" exec-time="0" queue-time="0" op-digest="f6e3b46e18b24f6e1cca9639ec9b7c41" op-force-restart="  server  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
+            <lrm_rsc_op id="galera-bundle-1_monitor_30000" operation_key="galera-bundle-1_monitor_30000" operation="monitor" crm-debug-origin="do_update_resource" crm_feature_set="3.6.1" transition-key="68:1405:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;68:1405:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="database-1" call-id="28" rc-code="0" op-status="0" interval="30000" last-rc-change="1605589822" exec-time="0" queue-time="0" op-digest="746166406c5f9be812b779885d4b7629"/>
+          </lrm_resource>
+          <lrm_resource id="galera-bundle-0" type="remote" class="ocf" provider="pacemaker" container="galera-bundle-podman-0">
+            <lrm_rsc_op id="galera-bundle-0_last_0" operation_key="galera-bundle-0_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="77:20:7:40f880e4-b328-4380-9703-47856390a1e0" transition-magic="0:7;77:20:7:40f880e4-b328-4380-9703-47856390a1e0" exit-reason="" on_node="database-1" call-id="3" rc-code="7" op-status="0" interval="0" last-rc-change="1605582731" last-run="1605582731" exec-time="0" queue-time="0" op-digest="dbc6b52d45a75a0b041af92265b22f9e" op-force-restart="  server  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
+          </lrm_resource>
+          <lrm_resource id="redis-bundle-0" type="remote" class="ocf" provider="pacemaker" container="redis-bundle-podman-0">
+            <lrm_rsc_op id="redis-bundle-0_last_0" operation_key="redis-bundle-0_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="72:21:7:40f880e4-b328-4380-9703-47856390a1e0" transition-magic="0:7;72:21:7:40f880e4-b328-4380-9703-47856390a1e0" exit-reason="" on_node="database-1" call-id="8" rc-code="7" op-status="0" interval="0" last-rc-change="1605582739" last-run="1605582739" exec-time="0" queue-time="0" op-digest="f325849fbffe2e62970eb201a50da9f3" op-force-restart="  server  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
+          </lrm_resource>
+          <lrm_resource id="galera-bundle-2" type="remote" class="ocf" provider="pacemaker" container="galera-bundle-podman-2">
+            <lrm_rsc_op id="galera-bundle-2_last_0" operation_key="galera-bundle-2_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="81:20:7:40f880e4-b328-4380-9703-47856390a1e0" transition-magic="0:7;81:20:7:40f880e4-b328-4380-9703-47856390a1e0" exit-reason="" on_node="database-1" call-id="4" rc-code="7" op-status="0" interval="0" last-rc-change="1605582731" last-run="1605582731" exec-time="0" queue-time="0" op-digest="bf7cf9acd053cee24dc3401862009e40" op-force-restart="  server  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
+          </lrm_resource>
+          <lrm_resource id="redis-bundle-2" type="remote" class="ocf" provider="pacemaker" container="redis-bundle-podman-2">
+            <lrm_rsc_op id="redis-bundle-2_last_0" operation_key="redis-bundle-2_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="74:21:7:40f880e4-b328-4380-9703-47856390a1e0" transition-magic="0:7;74:21:7:40f880e4-b328-4380-9703-47856390a1e0" exit-reason="" on_node="database-1" call-id="10" rc-code="7" op-status="0" interval="0" last-rc-change="1605582739" last-run="1605582739" exec-time="0" queue-time="0" op-digest="cd98602d6f977947327050913302f861" op-force-restart="  server  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
+          </lrm_resource>
+          <lrm_resource id="redis-bundle-1" type="remote" class="ocf" provider="pacemaker" container="redis-bundle-podman-1">
+            <lrm_rsc_op id="redis-bundle-1_last_0" operation_key="redis-bundle-1_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="73:21:7:40f880e4-b328-4380-9703-47856390a1e0" transition-magic="0:7;73:21:7:40f880e4-b328-4380-9703-47856390a1e0" exit-reason="" on_node="database-1" call-id="9" rc-code="7" op-status="0" interval="0" last-rc-change="1605582739" last-run="1605582739" exec-time="0" queue-time="0" op-digest="dd323696d6c8ed14cb71914c411664c9" op-force-restart="  server  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
+          </lrm_resource>
+          <lrm_resource id="ovn-dbs-bundle-0" type="remote" class="ocf" provider="pacemaker" container="ovn-dbs-bundle-podman-0">
+            <lrm_rsc_op id="ovn-dbs-bundle-0_last_0" operation_key="ovn-dbs-bundle-0_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="75:21:7:40f880e4-b328-4380-9703-47856390a1e0" transition-magic="0:7;75:21:7:40f880e4-b328-4380-9703-47856390a1e0" exit-reason="" on_node="database-1" call-id="11" rc-code="7" op-status="0" interval="0" last-rc-change="1605582739" last-run="1605582739" exec-time="0" queue-time="0" op-digest="bf04cc8b2becfb29770a97d109ad6c4f" op-force-restart="  server  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
+          </lrm_resource>
+          <lrm_resource id="galera-bundle-podman-0" type="podman" class="ocf" provider="heartbeat">
+            <lrm_rsc_op id="galera-bundle-podman-0_last_0" operation_key="galera-bundle-podman-0_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="76:20:7:40f880e4-b328-4380-9703-47856390a1e0" transition-magic="0:7;76:20:7:40f880e4-b328-4380-9703-47856390a1e0" exit-reason="" on_node="database-1" call-id="7" rc-code="7" op-status="0" interval="0" last-rc-change="1605582731" last-run="1605582731" exec-time="219" queue-time="0" op-digest="67ad45a24ec9f786a74a5af1f24c1a12"/>
+          </lrm_resource>
+          <lrm_resource id="galera-bundle-podman-1" type="podman" class="ocf" provider="heartbeat">
+            <lrm_rsc_op id="galera-bundle-podman-1_last_0" operation_key="galera-bundle-podman-1_start_0" operation="start" crm-debug-origin="do_update_resource" crm_feature_set="3.6.1" transition-key="57:1403:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;57:1403:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="database-1" call-id="168" rc-code="0" op-status="0" interval="0" last-rc-change="1605589816" last-run="1605589816" exec-time="2396" queue-time="0" op-digest="a9aac774cc5fb526f706e4d71cba3f8a"/>
+            <lrm_rsc_op id="galera-bundle-podman-1_monitor_60000" operation_key="galera-bundle-podman-1_monitor_60000" operation="monitor" crm-debug-origin="do_update_resource" crm_feature_set="3.6.1" transition-key="62:1404:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;62:1404:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="database-1" call-id="169" rc-code="0" op-status="0" interval="60000" last-rc-change="1605589818" exec-time="678" queue-time="0" op-digest="44f5b75552ab43bae88d4fbd0e9c1559"/>
+          </lrm_resource>
+          <lrm_resource id="galera-bundle-podman-2" type="podman" class="ocf" provider="heartbeat">
+            <lrm_rsc_op id="galera-bundle-podman-2_last_0" operation_key="galera-bundle-podman-2_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="80:20:7:40f880e4-b328-4380-9703-47856390a1e0" transition-magic="0:7;80:20:7:40f880e4-b328-4380-9703-47856390a1e0" exit-reason="" on_node="database-1" call-id="16" rc-code="7" op-status="0" interval="0" last-rc-change="1605582731" last-run="1605582731" exec-time="271" queue-time="0" op-digest="1a756f5a00d226af2591b1b953797acc"/>
+          </lrm_resource>
+          <lrm_resource id="ovn-dbs-bundle-2" type="remote" class="ocf" provider="pacemaker" container="ovn-dbs-bundle-podman-2">
+            <lrm_rsc_op id="ovn-dbs-bundle-2_last_0" operation_key="ovn-dbs-bundle-2_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="77:21:7:40f880e4-b328-4380-9703-47856390a1e0" transition-magic="0:7;77:21:7:40f880e4-b328-4380-9703-47856390a1e0" exit-reason="" on_node="database-1" call-id="13" rc-code="7" op-status="0" interval="0" last-rc-change="1605582739" last-run="1605582739" exec-time="0" queue-time="0" op-digest="015c999adc4143966a5e0ba98e5d74af" op-force-restart="  server  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
+          </lrm_resource>
+          <lrm_resource id="stonith-fence_compute-fence-nova" type="fence_compute" class="stonith">
+            <lrm_rsc_op id="stonith-fence_compute-fence-nova_last_0" operation_key="stonith-fence_compute-fence-nova_stop_0" operation="stop" crm-debug-origin="do_update_resource" crm_feature_set="3.6.1" transition-key="9:1418:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;9:1418:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="database-1" call-id="179" rc-code="0" op-status="0" interval="0" last-rc-change="1605589978" last-run="1605589978" exec-time="0" queue-time="0" op-digest="04758bda751b3d5aa6c380933a6cf696" op-secure-params="  password passwd  " op-secure-digest="e0992836f72674b3c1b56e40d152bdf9"/>
+            <lrm_rsc_op id="stonith-fence_compute-fence-nova_last_failure_0" operation_key="stonith-fence_compute-fence-nova_start_0" operation="start" crm-debug-origin="do_update_resource" crm_feature_set="3.6.1" transition-key="246:1416:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:1;246:1416:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="database-1" call-id="178" rc-code="1" op-status="0" interval="0" last-rc-change="1605589971" last-run="1605589971" exec-time="7079" queue-time="0" op-digest="04758bda751b3d5aa6c380933a6cf696"/>
+          </lrm_resource>
+          <lrm_resource id="ovn-dbs-bundle-1" type="remote" class="ocf" provider="pacemaker" container="ovn-dbs-bundle-podman-1">
+            <lrm_rsc_op id="ovn-dbs-bundle-1_last_0" operation_key="ovn-dbs-bundle-1_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="76:21:7:40f880e4-b328-4380-9703-47856390a1e0" transition-magic="0:7;76:21:7:40f880e4-b328-4380-9703-47856390a1e0" exit-reason="" on_node="database-1" call-id="12" rc-code="7" op-status="0" interval="0" last-rc-change="1605582739" last-run="1605582739" exec-time="0" queue-time="0" op-digest="d00e87492de6b83a85450cd667db2a88" op-force-restart="  server  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
+          </lrm_resource>
+          <lrm_resource id="stonith-fence_ipmilan-525400d5382b" type="fence_ipmilan" class="stonith">
+            <lrm_rsc_op id="stonith-fence_ipmilan-525400d5382b_last_0" operation_key="stonith-fence_ipmilan-525400d5382b_stop_0" operation="stop" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.1" transition-key="314:1371:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;314:1371:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="database-1" call-id="147" rc-code="0" op-status="0" interval="0" last-rc-change="1605589358" last-run="1605589358" exec-time="1" queue-time="0" op-digest="03339c868b4e990d1eee35ee0d8fd924"/>
+          </lrm_resource>
+          <lrm_resource id="stonith-fence_ipmilan-52540033df9c" type="fence_ipmilan" class="stonith">
+            <lrm_rsc_op id="stonith-fence_ipmilan-52540033df9c_last_0" operation_key="stonith-fence_ipmilan-52540033df9c_start_0" operation="start" crm-debug-origin="do_update_resource" crm_feature_set="3.6.1" transition-key="261:1420:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;261:1420:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="database-1" call-id="184" rc-code="0" op-status="0" interval="0" last-rc-change="1605589987" last-run="1605589987" exec-time="401" queue-time="0" op-digest="b0341087994098c62f29bd703448ffed" op-secure-params="  password passwd  " op-secure-digest="4df029b6ad27db68abf3c71606f906ea"/>
+            <lrm_rsc_op id="stonith-fence_ipmilan-52540033df9c_monitor_60000" operation_key="stonith-fence_ipmilan-52540033df9c_monitor_60000" operation="monitor" crm-debug-origin="do_update_resource" crm_feature_set="3.6.1" transition-key="263:1420:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;263:1420:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="database-1" call-id="185" rc-code="0" op-status="0" interval="60000" last-rc-change="1605589988" exec-time="401" queue-time="0" op-digest="d2962d8811a6e1b86f138b75b779d8c6" op-secure-params="  password passwd  " op-secure-digest="4df029b6ad27db68abf3c71606f906ea"/>
+          </lrm_resource>
+          <lrm_resource id="nova-evacuate" type="NovaEvacuate" class="ocf" provider="openstack">
+            <lrm_rsc_op id="nova-evacuate_last_0" operation_key="nova-evacuate_stop_0" operation="stop" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.1" transition-key="298:41:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;298:41:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="database-1" call-id="123" rc-code="0" op-status="0" interval="0" last-rc-change="1605585884" last-run="1605585884" exec-time="40" queue-time="0" op-digest="8c367ebe0409afc3686f512ae68b1ee4"/>
+          </lrm_resource>
+          <lrm_resource id="rabbitmq-bundle-0" type="remote" class="ocf" provider="pacemaker" container="rabbitmq-bundle-podman-0">
+            <lrm_rsc_op id="rabbitmq-bundle-0_last_0" operation_key="rabbitmq-bundle-0_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="82:20:7:40f880e4-b328-4380-9703-47856390a1e0" transition-magic="0:7;82:20:7:40f880e4-b328-4380-9703-47856390a1e0" exit-reason="" on_node="database-1" call-id="5" rc-code="7" op-status="0" interval="0" last-rc-change="1605582731" last-run="1605582731" exec-time="0" queue-time="0" op-digest="a41ad5f9625676395b163a06987de2d6" op-force-restart="  server  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
+          </lrm_resource>
+          <lrm_resource id="stonith-fence_ipmilan-5254001f5f3c" type="fence_ipmilan" class="stonith">
+            <lrm_rsc_op id="stonith-fence_ipmilan-5254001f5f3c_last_0" operation_key="stonith-fence_ipmilan-5254001f5f3c_stop_0" operation="stop" crm-debug-origin="do_update_resource" crm_feature_set="3.6.1" transition-key="266:1397:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;266:1397:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="database-1" call-id="163" rc-code="0" op-status="0" interval="0" last-rc-change="1605589786" last-run="1605589786" exec-time="7" queue-time="0" op-digest="859262e1216f50b739b9ff444e605375" op-secure-params="  password passwd  " op-secure-digest="95ad05342de9eab61bee697cec0a352e"/>
+            <lrm_rsc_op id="stonith-fence_ipmilan-5254001f5f3c_monitor_60000" operation_key="stonith-fence_ipmilan-5254001f5f3c_monitor_60000" operation="monitor" crm-debug-origin="do_update_resource" crm_feature_set="3.6.1" transition-key="281:1396:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;281:1396:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="database-1" call-id="161" rc-code="0" op-status="0" interval="60000" last-rc-change="1605589780" exec-time="456" queue-time="0" op-digest="8fc39fa18da80977eeaa9f36e53a59ef" op-secure-params="  password passwd  " op-secure-digest="95ad05342de9eab61bee697cec0a352e"/>
+          </lrm_resource>
+        </lrm_resources>
+      </lrm>
+    </node_state>
+    <node_state id="6" uname="database-2" in_ccm="true" crmd="online" join="member" expected="member" crm-debug-origin="do_update_resource">
+      <transient_attributes id="6">
+        <instance_attributes id="status-6">
+          <nvpair id="status-6-.node-unfenced" name="#node-unfenced" value="1605581857"/>
+          <nvpair id="status-6-fail-count-ovndb_servers.cancel_10000" name="fail-count-ovndb_servers#cancel_10000" value="385"/>
+          <nvpair id="status-6-last-failure-ovndb_servers.cancel_10000" name="last-failure-ovndb_servers#cancel_10000" value="1605586209"/>
+          <nvpair id="status-6-master-galera" name="master-galera" value="100"/>
+          <nvpair id="status-6-fail-count-stonith-fence_compute-fence-nova.start_0" name="fail-count-stonith-fence_compute-fence-nova#start_0" value="INFINITY"/>
+          <nvpair id="status-6-last-failure-stonith-fence_compute-fence-nova.start_0" name="last-failure-stonith-fence_compute-fence-nova#start_0" value="1605589987"/>
+        </instance_attributes>
+      </transient_attributes>
+      <lrm id="6">
+        <lrm_resources>
+          <lrm_resource id="rabbitmq-bundle-1" type="remote" class="ocf" provider="pacemaker" container="rabbitmq-bundle-podman-1">
+            <lrm_rsc_op id="rabbitmq-bundle-1_last_0" operation_key="rabbitmq-bundle-1_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="96:241:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:7;96:241:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="database-2" call-id="6" rc-code="7" op-status="0" interval="0" last-rc-change="1605581853" last-run="1605581853" exec-time="0" queue-time="0" op-digest="e25f0ff041ed91bee8ee197d0ce2aebd" op-force-restart="  server  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
+          </lrm_resource>
+          <lrm_resource id="rabbitmq-bundle-2" type="remote" class="ocf" provider="pacemaker" container="rabbitmq-bundle-podman-2">
+            <lrm_rsc_op id="rabbitmq-bundle-2_last_0" operation_key="rabbitmq-bundle-2_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="97:241:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:7;97:241:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="database-2" call-id="7" rc-code="7" op-status="0" interval="0" last-rc-change="1605581853" last-run="1605581853" exec-time="0" queue-time="0" op-digest="593e15353c64e73e2efe61415c7dd44b" op-force-restart="  server  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
+          </lrm_resource>
+          <lrm_resource id="stonith-fence_ipmilan-5254009cb549" type="fence_ipmilan" class="stonith">
+            <lrm_rsc_op id="stonith-fence_ipmilan-5254009cb549_last_0" operation_key="stonith-fence_ipmilan-5254009cb549_stop_0" operation="stop" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.1" transition-key="321:1375:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;321:1375:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="database-2" call-id="165" rc-code="0" op-status="0" interval="0" last-rc-change="1605589381" last-run="1605589381" exec-time="1" queue-time="0" op-digest="da530999b2b0c233366dbd0dab07c65f"/>
+          </lrm_resource>
+          <lrm_resource id="stonith-fence_ipmilan-525400e10267" type="fence_ipmilan" class="stonith">
+            <lrm_rsc_op id="stonith-fence_ipmilan-525400e10267_last_0" operation_key="stonith-fence_ipmilan-525400e10267_stop_0" operation="stop" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="350:20:0:40f880e4-b328-4380-9703-47856390a1e0" transition-magic="0:0;350:20:0:40f880e4-b328-4380-9703-47856390a1e0" exit-reason="" on_node="database-2" call-id="123" rc-code="0" op-status="0" interval="0" last-rc-change="1605582731" last-run="1605582731" exec-time="0" queue-time="0" op-digest="ad5ccd62a43794b237bdd30ae0887630"/>
+          </lrm_resource>
+          <lrm_resource id="stonith-fence_ipmilan-525400d5382b" type="fence_ipmilan" class="stonith">
+            <lrm_rsc_op id="stonith-fence_ipmilan-525400d5382b_last_0" operation_key="stonith-fence_ipmilan-525400d5382b_start_0" operation="start" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.1" transition-key="319:1374:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;319:1374:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="database-2" call-id="162" rc-code="0" op-status="0" interval="0" last-rc-change="1605589379" last-run="1605589379" exec-time="439" queue-time="0" op-digest="03339c868b4e990d1eee35ee0d8fd924" op-secure-params="  password passwd  " op-secure-digest="d80496ebdfcec16ae6f6a8217f6c5c21"/>
+            <lrm_rsc_op id="stonith-fence_ipmilan-525400d5382b_monitor_60000" operation_key="stonith-fence_ipmilan-525400d5382b_monitor_60000" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.1" transition-key="320:1374:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;320:1374:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="database-2" call-id="163" rc-code="0" op-status="0" interval="60000" last-rc-change="1605589379" exec-time="448" queue-time="0" op-digest="b91e0bf179ddffc696ea7db1141231d3" op-secure-params="  password passwd  " op-secure-digest="d80496ebdfcec16ae6f6a8217f6c5c21"/>
+          </lrm_resource>
+          <lrm_resource id="compute-0" type="remote" class="ocf" provider="pacemaker">
+            <lrm_rsc_op id="compute-0_last_0" operation_key="compute-0_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="87:241:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:7;87:241:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="database-2" call-id="1" rc-code="7" op-status="0" interval="0" last-rc-change="1605581853" last-run="1605581853" exec-time="0" queue-time="0" op-digest="94f4ed47fadb94317ef0f8959942f09e" op-force-restart="  server  " op-restart-digest="94f4ed47fadb94317ef0f8959942f09e"/>
+          </lrm_resource>
+          <lrm_resource id="compute-1" type="remote" class="ocf" provider="pacemaker">
+            <lrm_rsc_op id="compute-1_last_0" operation_key="compute-1_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="88:241:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:7;88:241:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="database-2" call-id="2" rc-code="7" op-status="0" interval="0" last-rc-change="1605581853" last-run="1605581853" exec-time="0" queue-time="0" op-digest="4a9ef452428322fd1d0d0c44a6f176fd" op-force-restart="  server  " op-restart-digest="4a9ef452428322fd1d0d0c44a6f176fd"/>
+          </lrm_resource>
+          <lrm_resource id="stonith-fence_ipmilan-5254007b7920" type="fence_ipmilan" class="stonith">
+            <lrm_rsc_op id="stonith-fence_ipmilan-5254007b7920_last_0" operation_key="stonith-fence_ipmilan-5254007b7920_stop_0" operation="stop" crm-debug-origin="do_update_resource" crm_feature_set="3.6.1" transition-key="270:1414:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;270:1414:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="database-2" call-id="187" rc-code="0" op-status="0" interval="0" last-rc-change="1605589962" last-run="1605589962" exec-time="0" queue-time="0" op-digest="292cf370c85404b918bcf8312056ca36" op-secure-params="  password passwd  " op-secure-digest="78d581355e684910edb664ba961cf50d"/>
+            <lrm_rsc_op id="stonith-fence_ipmilan-5254007b7920_monitor_60000" operation_key="stonith-fence_ipmilan-5254007b7920_monitor_60000" operation="monitor" crm-debug-origin="do_update_resource" crm_feature_set="3.6.1" transition-key="291:1405:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;291:1405:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="database-2" call-id="185" rc-code="0" op-status="0" interval="60000" last-rc-change="1605589822" exec-time="530" queue-time="0" op-digest="91bc9c45f4cca48c0c30614d0126a670" op-secure-params="  password passwd  " op-secure-digest="78d581355e684910edb664ba961cf50d"/>
+          </lrm_resource>
+          <lrm_resource id="stonith-fence_ipmilan-525400ffc780" type="fence_ipmilan" class="stonith">
+            <lrm_rsc_op id="stonith-fence_ipmilan-525400ffc780_last_0" operation_key="stonith-fence_ipmilan-525400ffc780_stop_0" operation="stop" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="326:70:0:40f880e4-b328-4380-9703-47856390a1e0" transition-magic="0:0;326:70:0:40f880e4-b328-4380-9703-47856390a1e0" exit-reason="" on_node="database-2" call-id="131" rc-code="0" op-status="0" interval="0" last-rc-change="1605584024" last-run="1605584024" exec-time="0" queue-time="0" op-digest="d5b19f9189ef5c23bf62dd041a8a1cfd"/>
+          </lrm_resource>
+          <lrm_resource id="stonith-fence_ipmilan-525400bb150b" type="fence_ipmilan" class="stonith">
+            <lrm_rsc_op id="stonith-fence_ipmilan-525400bb150b_last_0" operation_key="stonith-fence_ipmilan-525400bb150b_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="76:244:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:7;76:244:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="database-2" call-id="66" rc-code="7" op-status="0" interval="0" last-rc-change="1605581864" last-run="1605581864" exec-time="0" queue-time="0" op-digest="7069d4bd259f26c8e756d0cfe8359ac1" op-secure-params="  password passwd  " op-secure-digest="d7b4bc578fd079201c7ec804f2b8862f"/>
+          </lrm_resource>
+          <lrm_resource id="stonith-fence_ipmilan-525400dc0f81" type="fence_ipmilan" class="stonith">
+            <lrm_rsc_op id="stonith-fence_ipmilan-525400dc0f81_last_0" operation_key="stonith-fence_ipmilan-525400dc0f81_stop_0" operation="stop" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.1" transition-key="329:1374:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;329:1374:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="database-2" call-id="161" rc-code="0" op-status="0" interval="0" last-rc-change="1605589379" last-run="1605589379" exec-time="0" queue-time="0" op-digest="baa6fc182a42d0a5173739535c7c67fe"/>
+          </lrm_resource>
+          <lrm_resource id="stonith-fence_ipmilan-5254003f88b4" type="fence_ipmilan" class="stonith">
+            <lrm_rsc_op id="stonith-fence_ipmilan-5254003f88b4_last_0" operation_key="stonith-fence_ipmilan-5254003f88b4_stop_0" operation="stop" crm-debug-origin="do_update_resource" crm_feature_set="3.6.1" transition-key="266:1422:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;266:1422:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="database-2" call-id="197" rc-code="0" op-status="0" interval="0" last-rc-change="1605589997" last-run="1605589997" exec-time="6" queue-time="0" op-digest="e4ae59cf662c224d9817c0d0331d50ba" op-secure-params="  password passwd  " op-secure-digest="9b06848b37b8bbd582e7cd4733987493"/>
+            <lrm_rsc_op id="stonith-fence_ipmilan-5254003f88b4_monitor_60000" operation_key="stonith-fence_ipmilan-5254003f88b4_monitor_60000" operation="monitor" crm-debug-origin="do_update_resource" crm_feature_set="3.6.1" transition-key="270:1420:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;270:1420:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="database-2" call-id="195" rc-code="0" op-status="0" interval="60000" last-rc-change="1605589988" exec-time="380" queue-time="0" op-digest="149734c12b950bda320c528292903d4e" op-secure-params="  password passwd  " op-secure-digest="9b06848b37b8bbd582e7cd4733987493"/>
+          </lrm_resource>
+          <lrm_resource id="stonith-fence_ipmilan-525400642894" type="fence_ipmilan" class="stonith">
+            <lrm_rsc_op id="stonith-fence_ipmilan-525400642894_last_0" operation_key="stonith-fence_ipmilan-525400642894_stop_0" operation="stop" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.1" transition-key="315:1368:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;315:1368:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="database-2" call-id="155" rc-code="0" op-status="0" interval="0" last-rc-change="1605589347" last-run="1605589347" exec-time="0" queue-time="0" op-digest="1779ddd0abf841e7e9914f08b32da1a6"/>
+          </lrm_resource>
+          <lrm_resource id="galera-bundle-0" type="remote" class="ocf" provider="pacemaker" container="galera-bundle-podman-0">
+            <lrm_rsc_op id="galera-bundle-0_last_0" operation_key="galera-bundle-0_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="90:241:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:7;90:241:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="database-2" call-id="3" rc-code="7" op-status="0" interval="0" last-rc-change="1605581853" last-run="1605581853" exec-time="0" queue-time="0" op-digest="dbc6b52d45a75a0b041af92265b22f9e" op-force-restart="  server  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
+          </lrm_resource>
+          <lrm_resource id="galera-bundle-1" type="remote" class="ocf" provider="pacemaker" container="galera-bundle-podman-1">
+            <lrm_rsc_op id="galera-bundle-1_last_0" operation_key="galera-bundle-1_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="92:241:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:7;92:241:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="database-2" call-id="4" rc-code="7" op-status="0" interval="0" last-rc-change="1605581853" last-run="1605581853" exec-time="0" queue-time="0" op-digest="f6e3b46e18b24f6e1cca9639ec9b7c41" op-force-restart="  server  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
+          </lrm_resource>
+          <lrm_resource id="redis-bundle-1" type="remote" class="ocf" provider="pacemaker" container="redis-bundle-podman-1">
+            <lrm_rsc_op id="redis-bundle-1_last_0" operation_key="redis-bundle-1_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="99:241:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:7;99:241:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="database-2" call-id="9" rc-code="7" op-status="0" interval="0" last-rc-change="1605581853" last-run="1605581853" exec-time="0" queue-time="0" op-digest="dd323696d6c8ed14cb71914c411664c9" op-force-restart="  server  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
+          </lrm_resource>
+          <lrm_resource id="redis-bundle-0" type="remote" class="ocf" provider="pacemaker" container="redis-bundle-podman-0">
+            <lrm_rsc_op id="redis-bundle-0_last_0" operation_key="redis-bundle-0_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="98:241:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:7;98:241:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="database-2" call-id="8" rc-code="7" op-status="0" interval="0" last-rc-change="1605581853" last-run="1605581853" exec-time="0" queue-time="0" op-digest="f325849fbffe2e62970eb201a50da9f3" op-force-restart="  server  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
+          </lrm_resource>
+          <lrm_resource id="ovn-dbs-bundle-0" type="remote" class="ocf" provider="pacemaker" container="ovn-dbs-bundle-podman-0">
+            <lrm_rsc_op id="ovn-dbs-bundle-0_last_0" operation_key="ovn-dbs-bundle-0_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="101:241:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:7;101:241:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="database-2" call-id="11" rc-code="7" op-status="0" interval="0" last-rc-change="1605581853" last-run="1605581853" exec-time="0" queue-time="0" op-digest="bf04cc8b2becfb29770a97d109ad6c4f" op-force-restart="  server  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
+          </lrm_resource>
+          <lrm_resource id="redis-bundle-2" type="remote" class="ocf" provider="pacemaker" container="redis-bundle-podman-2">
+            <lrm_rsc_op id="redis-bundle-2_last_0" operation_key="redis-bundle-2_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="100:241:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:7;100:241:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="database-2" call-id="10" rc-code="7" op-status="0" interval="0" last-rc-change="1605581853" last-run="1605581853" exec-time="0" queue-time="0" op-digest="cd98602d6f977947327050913302f861" op-force-restart="  server  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
+          </lrm_resource>
+          <lrm_resource id="galera-bundle-podman-0" type="podman" class="ocf" provider="heartbeat">
+            <lrm_rsc_op id="galera-bundle-podman-0_last_0" operation_key="galera-bundle-podman-0_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="89:241:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:7;89:241:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="database-2" call-id="7" rc-code="7" op-status="0" interval="0" last-rc-change="1605581853" last-run="1605581853" exec-time="217" queue-time="0" op-digest="67ad45a24ec9f786a74a5af1f24c1a12"/>
+          </lrm_resource>
+          <lrm_resource id="galera-bundle-podman-1" type="podman" class="ocf" provider="heartbeat">
+            <lrm_rsc_op id="galera-bundle-podman-1_last_0" operation_key="galera-bundle-podman-1_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="91:241:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:7;91:241:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="database-2" call-id="12" rc-code="7" op-status="0" interval="0" last-rc-change="1605581853" last-run="1605581853" exec-time="207" queue-time="0" op-digest="a9aac774cc5fb526f706e4d71cba3f8a"/>
+          </lrm_resource>
+          <lrm_resource id="galera-bundle-podman-2" type="podman" class="ocf" provider="heartbeat">
+            <lrm_rsc_op id="galera-bundle-podman-2_last_0" operation_key="galera-bundle-podman-2_start_0" operation="start" crm-debug-origin="do_update_resource" crm_feature_set="3.6.1" transition-key="61:1403:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;61:1403:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="database-2" call-id="182" rc-code="0" op-status="0" interval="0" last-rc-change="1605589816" last-run="1605589816" exec-time="2379" queue-time="0" op-digest="1a756f5a00d226af2591b1b953797acc"/>
+            <lrm_rsc_op id="galera-bundle-podman-2_monitor_60000" operation_key="galera-bundle-podman-2_monitor_60000" operation="monitor" crm-debug-origin="do_update_resource" crm_feature_set="3.6.1" transition-key="67:1404:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;67:1404:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="database-2" call-id="183" rc-code="0" op-status="0" interval="60000" last-rc-change="1605589818" exec-time="567" queue-time="0" op-digest="9184b1dac6dc500e900a58807fcd9258"/>
+          </lrm_resource>
+          <lrm_resource id="ovn-dbs-bundle-2" type="remote" class="ocf" provider="pacemaker" container="ovn-dbs-bundle-podman-2">
+            <lrm_rsc_op id="ovn-dbs-bundle-2_last_0" operation_key="ovn-dbs-bundle-2_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="103:241:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:7;103:241:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="database-2" call-id="13" rc-code="7" op-status="0" interval="0" last-rc-change="1605581853" last-run="1605581853" exec-time="0" queue-time="0" op-digest="015c999adc4143966a5e0ba98e5d74af" op-force-restart="  server  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
+          </lrm_resource>
+          <lrm_resource id="stonith-fence_compute-fence-nova" type="fence_compute" class="stonith">
+            <lrm_rsc_op id="stonith-fence_compute-fence-nova_last_0" operation_key="stonith-fence_compute-fence-nova_stop_0" operation="stop" crm-debug-origin="do_update_resource" crm_feature_set="3.6.1" transition-key="12:1420:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;12:1420:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="database-2" call-id="193" rc-code="0" op-status="0" interval="0" last-rc-change="1605589987" last-run="1605589987" exec-time="7" queue-time="0" op-digest="04758bda751b3d5aa6c380933a6cf696" op-secure-params="  password passwd  " op-secure-digest="e0992836f72674b3c1b56e40d152bdf9"/>
+            <lrm_rsc_op id="stonith-fence_compute-fence-nova_monitor_60000" operation_key="stonith-fence_compute-fence-nova_monitor_60000" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.1" transition-key="298:1380:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;298:1380:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="database-2" call-id="167" rc-code="0" op-status="0" interval="60000" last-rc-change="1605589404" exec-time="2278" queue-time="0" op-digest="b7fc84e1b7330a405db134e78082260d" op-secure-params="  password passwd  " op-secure-digest="e0992836f72674b3c1b56e40d152bdf9"/>
+            <lrm_rsc_op id="stonith-fence_compute-fence-nova_last_failure_0" operation_key="stonith-fence_compute-fence-nova_start_0" operation="start" crm-debug-origin="do_update_resource" crm_feature_set="3.6.1" transition-key="246:1418:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:1;246:1418:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="database-2" call-id="192" rc-code="1" op-status="0" interval="0" last-rc-change="1605589978" last-run="1605589978" exec-time="8898" queue-time="0" op-digest="04758bda751b3d5aa6c380933a6cf696"/>
+          </lrm_resource>
+          <lrm_resource id="ovn-dbs-bundle-1" type="remote" class="ocf" provider="pacemaker" container="ovn-dbs-bundle-podman-1">
+            <lrm_rsc_op id="ovn-dbs-bundle-1_last_0" operation_key="ovn-dbs-bundle-1_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="102:241:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:7;102:241:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="database-2" call-id="12" rc-code="7" op-status="0" interval="0" last-rc-change="1605581853" last-run="1605581853" exec-time="0" queue-time="0" op-digest="d00e87492de6b83a85450cd667db2a88" op-force-restart="  server  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
+          </lrm_resource>
+          <lrm_resource id="galera-bundle-2" type="remote" class="ocf" provider="pacemaker" container="galera-bundle-podman-2">
+            <lrm_rsc_op id="galera-bundle-2_last_0" operation_key="galera-bundle-2_start_0" operation="start" crm-debug-origin="do_update_resource" crm_feature_set="3.6.1" transition-key="68:1404:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;68:1404:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="database-2" call-id="27" rc-code="0" op-status="0" interval="0" last-rc-change="1605589818" last-run="1605589818" exec-time="0" queue-time="0" op-digest="bf7cf9acd053cee24dc3401862009e40" op-force-restart="  server  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
+            <lrm_rsc_op id="galera-bundle-2_monitor_30000" operation_key="galera-bundle-2_monitor_30000" operation="monitor" crm-debug-origin="do_update_resource" crm_feature_set="3.6.1" transition-key="73:1405:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;73:1405:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="database-2" call-id="28" rc-code="0" op-status="0" interval="30000" last-rc-change="1605589822" exec-time="0" queue-time="0" op-digest="a93528f361a63d03ffe904d4b66d82bc"/>
+          </lrm_resource>
+          <lrm_resource id="stonith-fence_ipmilan-52540033df9c" type="fence_ipmilan" class="stonith">
+            <lrm_rsc_op id="stonith-fence_ipmilan-52540033df9c_last_0" operation_key="stonith-fence_ipmilan-52540033df9c_stop_0" operation="stop" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.1" transition-key="301:41:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;301:41:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="database-2" call-id="139" rc-code="0" op-status="0" interval="0" last-rc-change="1605585884" last-run="1605585884" exec-time="11" queue-time="0" op-digest="b0341087994098c62f29bd703448ffed"/>
+          </lrm_resource>
+          <lrm_resource id="nova-evacuate" type="NovaEvacuate" class="ocf" provider="openstack">
+            <lrm_rsc_op id="nova-evacuate_last_0" operation_key="nova-evacuate_stop_0" operation="stop" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.1" transition-key="285:436:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;285:436:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="database-2" call-id="143" rc-code="0" op-status="0" interval="0" last-rc-change="1605586056" last-run="1605586056" exec-time="19" queue-time="0" op-digest="8c367ebe0409afc3686f512ae68b1ee4"/>
+          </lrm_resource>
+          <lrm_resource id="rabbitmq-bundle-0" type="remote" class="ocf" provider="pacemaker" container="rabbitmq-bundle-podman-0">
+            <lrm_rsc_op id="rabbitmq-bundle-0_last_0" operation_key="rabbitmq-bundle-0_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="95:241:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:7;95:241:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="database-2" call-id="5" rc-code="7" op-status="0" interval="0" last-rc-change="1605581853" last-run="1605581853" exec-time="0" queue-time="0" op-digest="a41ad5f9625676395b163a06987de2d6" op-force-restart="  server  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
+          </lrm_resource>
+          <lrm_resource id="stonith-fence_ipmilan-5254001f5f3c" type="fence_ipmilan" class="stonith">
+            <lrm_rsc_op id="stonith-fence_ipmilan-5254001f5f3c_last_0" operation_key="stonith-fence_ipmilan-5254001f5f3c_start_0" operation="start" crm-debug-origin="do_update_resource" crm_feature_set="3.6.1" transition-key="263:1422:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;263:1422:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="database-2" call-id="198" rc-code="0" op-status="0" interval="0" last-rc-change="1605589997" last-run="1605589997" exec-time="354" queue-time="0" op-digest="859262e1216f50b739b9ff444e605375" op-secure-params="  password passwd  " op-secure-digest="95ad05342de9eab61bee697cec0a352e"/>
+            <lrm_rsc_op id="stonith-fence_ipmilan-5254001f5f3c_monitor_60000" operation_key="stonith-fence_ipmilan-5254001f5f3c_monitor_60000" operation="monitor" crm-debug-origin="do_update_resource" crm_feature_set="3.6.1" transition-key="265:1422:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;265:1422:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="database-2" call-id="199" rc-code="0" op-status="0" interval="60000" last-rc-change="1605589997" exec-time="429" queue-time="0" op-digest="8fc39fa18da80977eeaa9f36e53a59ef" op-secure-params="  password passwd  " op-secure-digest="95ad05342de9eab61bee697cec0a352e"/>
+          </lrm_resource>
+        </lrm_resources>
+      </lrm>
+    </node_state>
+    <node_state id="1" uname="controller-0" in_ccm="true" crmd="online" join="member" expected="member" crm-debug-origin="do_update_resource">
+      <transient_attributes id="1">
+        <instance_attributes id="status-1">
+          <nvpair id="status-1-master-redis" name="master-redis" value="1"/>
+          <nvpair id="status-1-master-ovndb_servers" name="master-ovndb_servers" value="5"/>
+          <nvpair id="status-1-.node-unfenced" name="#node-unfenced" value="1605578651"/>
+          <nvpair id="status-1-fail-count-stonith-fence_compute-fence-nova.start_0" name="fail-count-stonith-fence_compute-fence-nova#start_0" value="INFINITY"/>
+          <nvpair id="status-1-last-failure-stonith-fence_compute-fence-nova.start_0" name="last-failure-stonith-fence_compute-fence-nova#start_0" value="1605590014"/>
+        </instance_attributes>
+      </transient_attributes>
+      <lrm id="1">
+        <lrm_resources>
+          <lrm_resource id="openstack-cinder-volume-podman-0" type="podman" class="ocf" provider="heartbeat">
+            <lrm_rsc_op id="openstack-cinder-volume-podman-0_last_0" operation_key="openstack-cinder-volume-podman-0_start_0" operation="start" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="320:156:0:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:0;320:156:0:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="controller-0" call-id="176" rc-code="0" op-status="0" interval="0" last-rc-change="1605579681" last-run="1605579681" exec-time="1512" queue-time="0" op-digest="62db8532552b1d0f98ef09d7bf861b74"/>
+            <lrm_rsc_op id="openstack-cinder-volume-podman-0_monitor_60000" operation_key="openstack-cinder-volume-podman-0_monitor_60000" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="321:156:0:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:0;321:156:0:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="controller-0" call-id="177" rc-code="0" op-status="0" interval="60000" last-rc-change="1605579682" exec-time="192" queue-time="0" op-digest="7a13d680e07e41bd8c9d07dae43dd4e8"/>
+          </lrm_resource>
+          <lrm_resource id="ovn-dbs-bundle-2" type="remote" class="ocf" provider="pacemaker" container="ovn-dbs-bundle-podman-2">
+            <lrm_rsc_op id="ovn-dbs-bundle-2_last_0" operation_key="ovn-dbs-bundle-2_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="110:114:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:7;110:114:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="controller-0" call-id="12" rc-code="7" op-status="0" interval="0" last-rc-change="1605578648" last-run="1605578648" exec-time="0" queue-time="0" op-digest="015c999adc4143966a5e0ba98e5d74af" op-force-restart="  server  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
+          </lrm_resource>
+          <lrm_resource id="stonith-fence_ipmilan-525400dc0f81" type="fence_ipmilan" class="stonith">
+            <lrm_rsc_op id="stonith-fence_ipmilan-525400dc0f81_last_0" operation_key="stonith-fence_ipmilan-525400dc0f81_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="88:115:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:7;88:115:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="controller-0" call-id="138" rc-code="7" op-status="0" interval="0" last-rc-change="1605578656" last-run="1605578656" exec-time="0" queue-time="0" op-digest="baa6fc182a42d0a5173739535c7c67fe" op-secure-params="  password passwd  " op-secure-digest="3f25f023614ece56826bc3313a929fd4"/>
+          </lrm_resource>
+          <lrm_resource id="ip-172.17.1.150" type="IPaddr2" class="ocf" provider="heartbeat">
+            <lrm_rsc_op id="ip-172.17.1.150_last_0" operation_key="ip-172.17.1.150_stop_0" operation="stop" crm-debug-origin="do_update_resource" crm_feature_set="3.4.1" transition-key="196:1409:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;196:1409:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="controller-0" call-id="191" rc-code="0" op-status="0" interval="0" last-rc-change="1605589892" last-run="1605589892" exec-time="140" queue-time="0" op-digest="f5516e4349a3b19d31637236055aea39"/>
+            <lrm_rsc_op id="ip-172.17.1.150_monitor_10000" operation_key="ip-172.17.1.150_monitor_10000" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="225:151:0:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:0;225:151:0:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="controller-0" call-id="173" rc-code="0" op-status="0" interval="10000" last-rc-change="1605579643" exec-time="41" queue-time="0" op-digest="3fee32c661ff815a1e2fd3737c0d3b28"/>
+          </lrm_resource>
+          <lrm_resource id="redis-bundle-podman-0" type="podman" class="ocf" provider="heartbeat">
+            <lrm_rsc_op id="redis-bundle-podman-0_last_0" operation_key="redis-bundle-podman-0_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="90:114:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:7;90:114:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="controller-0" call-id="13" rc-code="7" op-status="0" interval="0" last-rc-change="1605578648" last-run="1605578648" exec-time="209" queue-time="0" op-digest="3a642d99da31dbe69ff109f23770eae7"/>
+          </lrm_resource>
+          <lrm_resource id="redis-bundle-podman-1" type="podman" class="ocf" provider="heartbeat">
+            <lrm_rsc_op id="redis-bundle-podman-1_last_0" operation_key="redis-bundle-podman-1_start_0" operation="start" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="145:133:0:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:0;145:133:0:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="controller-0" call-id="156" rc-code="0" op-status="0" interval="0" last-rc-change="1605579108" last-run="1605579108" exec-time="1882" queue-time="0" op-digest="e420400d891bac146914bebbc10a0e8f"/>
+            <lrm_rsc_op id="redis-bundle-podman-1_monitor_60000" operation_key="redis-bundle-podman-1_monitor_60000" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="146:133:0:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:0;146:133:0:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="controller-0" call-id="157" rc-code="0" op-status="0" interval="60000" last-rc-change="1605579110" exec-time="391" queue-time="0" op-digest="d99e920bcde6459f0606587ea33b4ac0"/>
+          </lrm_resource>
+          <lrm_resource id="nova-evacuate" type="NovaEvacuate" class="ocf" provider="openstack">
+            <lrm_rsc_op id="nova-evacuate_last_0" operation_key="nova-evacuate_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="113:114:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:7;113:114:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="controller-0" call-id="82" rc-code="7" op-status="0" interval="0" last-rc-change="1605578648" last-run="1605578648" exec-time="44" queue-time="0" op-digest="8c367ebe0409afc3686f512ae68b1ee4" op-secure-params="  password  " op-secure-digest="f89eeb9446a58fb145857e36589bd2ee"/>
+          </lrm_resource>
+          <lrm_resource id="ip-172.17.4.150" type="IPaddr2" class="ocf" provider="heartbeat">
+            <lrm_rsc_op id="ip-172.17.4.150_last_0" operation_key="ip-172.17.4.150_stop_0" operation="stop" crm-debug-origin="do_update_resource" crm_feature_set="3.4.1" transition-key="198:1409:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;198:1409:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="controller-0" call-id="193" rc-code="0" op-status="0" interval="0" last-rc-change="1605589892" last-run="1605589892" exec-time="139" queue-time="0" op-digest="ceddf61079b702fdbc8d52e09f642c32"/>
+            <lrm_rsc_op id="ip-172.17.4.150_monitor_10000" operation_key="ip-172.17.4.150_monitor_10000" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="229:152:0:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:0;229:152:0:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="controller-0" call-id="175" rc-code="0" op-status="0" interval="10000" last-rc-change="1605579647" exec-time="44" queue-time="0" op-digest="0a696d34615c22389a16d6e29f453f78"/>
+          </lrm_resource>
+          <lrm_resource id="redis-bundle-podman-2" type="podman" class="ocf" provider="heartbeat">
+            <lrm_rsc_op id="redis-bundle-podman-2_last_0" operation_key="redis-bundle-podman-2_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="94:114:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:7;94:114:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="controller-0" call-id="22" rc-code="7" op-status="0" interval="0" last-rc-change="1605578648" last-run="1605578648" exec-time="221" queue-time="0" op-digest="3e7e379da7a20fdf94fb7950e0711dda"/>
+          </lrm_resource>
+          <lrm_resource id="stonith-fence_ipmilan-525400642894" type="fence_ipmilan" class="stonith">
+            <lrm_rsc_op id="stonith-fence_ipmilan-525400642894_last_0" operation_key="stonith-fence_ipmilan-525400642894_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="118:114:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:7;118:114:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="controller-0" call-id="111" rc-code="7" op-status="0" interval="0" last-rc-change="1605578652" last-run="1605578652" exec-time="0" queue-time="0" op-digest="1779ddd0abf841e7e9914f08b32da1a6" op-secure-params="  password passwd  " op-secure-digest="920d017ea35856c843a6bbf9d9832105"/>
+          </lrm_resource>
+          <lrm_resource id="ip-10.0.0.150" type="IPaddr2" class="ocf" provider="heartbeat">
+            <lrm_rsc_op id="ip-10.0.0.150_last_0" operation_key="ip-10.0.0.150_start_0" operation="start" crm-debug-origin="do_update_resource" crm_feature_set="3.6.1" transition-key="189:1431:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;189:1431:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="controller-0" call-id="196" rc-code="0" op-status="0" interval="0" last-rc-change="1605590033" last-run="1605590033" exec-time="107" queue-time="0" op-digest="27269224203b312ccfa3f15e7df0fe2a"/>
+            <lrm_rsc_op id="ip-10.0.0.150_monitor_10000" operation_key="ip-10.0.0.150_monitor_10000" operation="monitor" crm-debug-origin="do_update_resource" crm_feature_set="3.6.1" transition-key="190:1431:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;190:1431:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="controller-0" call-id="199" rc-code="0" op-status="0" interval="10000" last-rc-change="1605590033" exec-time="110" queue-time="0" op-digest="d89749501ec76525b1c100c0adecbb81"/>
+          </lrm_resource>
+          <lrm_resource id="stonith-fence_ipmilan-5254007b7920" type="fence_ipmilan" class="stonith">
+            <lrm_rsc_op id="stonith-fence_ipmilan-5254007b7920_last_0" operation_key="stonith-fence_ipmilan-5254007b7920_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="117:114:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:7;117:114:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="controller-0" call-id="107" rc-code="7" op-status="0" interval="0" last-rc-change="1605578652" last-run="1605578652" exec-time="0" queue-time="0" op-digest="292cf370c85404b918bcf8312056ca36" op-secure-params="  password passwd  " op-secure-digest="78d581355e684910edb664ba961cf50d"/>
+          </lrm_resource>
+          <lrm_resource id="ip-172.17.1.151" type="IPaddr2" class="ocf" provider="heartbeat">
+            <lrm_rsc_op id="ip-172.17.1.151_last_0" operation_key="ip-172.17.1.151_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="98:114:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:7;98:114:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="controller-0" call-id="35" rc-code="7" op-status="0" interval="0" last-rc-change="1605578648" last-run="1605578648" exec-time="290" queue-time="0" op-digest="d4c6ed079c2999519474018fa68a03d5"/>
+          </lrm_resource>
+          <lrm_resource id="ip-192.168.24.150" type="IPaddr2" class="ocf" provider="heartbeat">
+            <lrm_rsc_op id="ip-192.168.24.150_last_0" operation_key="ip-192.168.24.150_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="96:114:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:7;96:114:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="controller-0" call-id="27" rc-code="7" op-status="0" interval="0" last-rc-change="1605578648" last-run="1605578648" exec-time="354" queue-time="0" op-digest="f3f5413013b2c4ab476074cb9fcfa99a"/>
+          </lrm_resource>
+          <lrm_resource id="stonith-fence_ipmilan-525400d5382b" type="fence_ipmilan" class="stonith">
+            <lrm_rsc_op id="stonith-fence_ipmilan-525400d5382b_last_0" operation_key="stonith-fence_ipmilan-525400d5382b_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="83:115:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:7;83:115:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="controller-0" call-id="118" rc-code="7" op-status="0" interval="0" last-rc-change="1605578656" last-run="1605578656" exec-time="0" queue-time="0" op-digest="03339c868b4e990d1eee35ee0d8fd924" op-secure-params="  password passwd  " op-secure-digest="d80496ebdfcec16ae6f6a8217f6c5c21"/>
+          </lrm_resource>
+          <lrm_resource id="stonith-fence_ipmilan-525400ffc780" type="fence_ipmilan" class="stonith">
+            <lrm_rsc_op id="stonith-fence_ipmilan-525400ffc780_last_0" operation_key="stonith-fence_ipmilan-525400ffc780_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="85:115:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:7;85:115:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="controller-0" call-id="126" rc-code="7" op-status="0" interval="0" last-rc-change="1605578656" last-run="1605578656" exec-time="0" queue-time="0" op-digest="d5b19f9189ef5c23bf62dd041a8a1cfd" op-secure-params="  password passwd  " op-secure-digest="4415a1b3c8ddcc34bc954c9b603fc36a"/>
+          </lrm_resource>
+          <lrm_resource id="redis-bundle-0" type="remote" class="ocf" provider="pacemaker" container="redis-bundle-podman-0">
+            <lrm_rsc_op id="redis-bundle-0_last_0" operation_key="redis-bundle-0_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="91:114:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:7;91:114:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="controller-0" call-id="9" rc-code="7" op-status="0" interval="0" last-rc-change="1605578648" last-run="1605578648" exec-time="0" queue-time="0" op-digest="f325849fbffe2e62970eb201a50da9f3" op-force-restart="  server  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
+          </lrm_resource>
+          <lrm_resource id="stonith-fence_ipmilan-5254001f5f3c" type="fence_ipmilan" class="stonith">
+            <lrm_rsc_op id="stonith-fence_ipmilan-5254001f5f3c_last_0" operation_key="stonith-fence_ipmilan-5254001f5f3c_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="115:114:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:7;115:114:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="controller-0" call-id="99" rc-code="7" op-status="0" interval="0" last-rc-change="1605578652" last-run="1605578652" exec-time="0" queue-time="0" op-digest="859262e1216f50b739b9ff444e605375" op-secure-params="  password passwd  " op-secure-digest="95ad05342de9eab61bee697cec0a352e"/>
+          </lrm_resource>
+          <lrm_resource id="redis-bundle-2" type="remote" class="ocf" provider="pacemaker" container="redis-bundle-podman-2">
+            <lrm_rsc_op id="redis-bundle-2_last_0" operation_key="redis-bundle-2_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="95:114:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:7;95:114:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="controller-0" call-id="10" rc-code="7" op-status="0" interval="0" last-rc-change="1605578648" last-run="1605578648" exec-time="0" queue-time="0" op-digest="cd98602d6f977947327050913302f861" op-force-restart="  server  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
+          </lrm_resource>
+          <lrm_resource id="rabbitmq-bundle-1" type="remote" class="ocf" provider="pacemaker" container="rabbitmq-bundle-podman-1">
+            <lrm_rsc_op id="rabbitmq-bundle-1_last_0" operation_key="rabbitmq-bundle-1_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="88:114:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:7;88:114:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="controller-0" call-id="7" rc-code="7" op-status="0" interval="0" last-rc-change="1605578648" last-run="1605578648" exec-time="0" queue-time="0" op-digest="e25f0ff041ed91bee8ee197d0ce2aebd" op-force-restart="  server  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
+          </lrm_resource>
+          <lrm_resource id="rabbitmq-bundle-2" type="remote" class="ocf" provider="pacemaker" container="rabbitmq-bundle-podman-2">
+            <lrm_rsc_op id="rabbitmq-bundle-2_last_0" operation_key="rabbitmq-bundle-2_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="89:114:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:7;89:114:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="controller-0" call-id="8" rc-code="7" op-status="0" interval="0" last-rc-change="1605578648" last-run="1605578648" exec-time="0" queue-time="0" op-digest="593e15353c64e73e2efe61415c7dd44b" op-force-restart="  server  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
+          </lrm_resource>
+          <lrm_resource id="ovn-dbs-bundle-podman-2" type="podman" class="ocf" provider="heartbeat">
+            <lrm_rsc_op id="ovn-dbs-bundle-podman-2_last_0" operation_key="ovn-dbs-bundle-podman-2_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="109:114:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:7;109:114:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="controller-0" call-id="73" rc-code="7" op-status="0" interval="0" last-rc-change="1605578648" last-run="1605578648" exec-time="123" queue-time="0" op-digest="f4c7f36e22e794b7a60cd85e50c1065c"/>
+          </lrm_resource>
+          <lrm_resource id="ovn-dbs-bundle-podman-1" type="podman" class="ocf" provider="heartbeat">
+            <lrm_rsc_op id="ovn-dbs-bundle-podman-1_last_0" operation_key="ovn-dbs-bundle-podman-1_start_0" operation="start" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.1" transition-key="243:1375:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;243:1375:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="controller-0" call-id="184" rc-code="0" op-status="0" interval="0" last-rc-change="1605589381" last-run="1605589381" exec-time="2216" queue-time="0" op-digest="43d92ad90f1a0eba7e80add98f7eb342"/>
+            <lrm_rsc_op id="ovn-dbs-bundle-podman-1_monitor_60000" operation_key="ovn-dbs-bundle-podman-1_monitor_60000" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.1" transition-key="244:1375:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;244:1375:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="controller-0" call-id="185" rc-code="0" op-status="0" interval="60000" last-rc-change="1605589383" exec-time="516" queue-time="0" op-digest="1ee5fb16cb94b8fb16b018f10ae4cca4"/>
+          </lrm_resource>
+          <lrm_resource id="redis-bundle-1" type="remote" class="ocf" provider="pacemaker" container="redis-bundle-podman-1">
+            <lrm_rsc_op id="redis-bundle-1_last_0" operation_key="redis-bundle-1_start_0" operation="start" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="147:133:0:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:0;147:133:0:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="controller-0" call-id="23" rc-code="0" op-status="0" interval="0" last-rc-change="1605579110" last-run="1605579110" exec-time="0" queue-time="0" op-digest="dd323696d6c8ed14cb71914c411664c9" op-force-restart="  server  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
+            <lrm_rsc_op id="redis-bundle-1_monitor_30000" operation_key="redis-bundle-1_monitor_30000" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="151:134:0:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:0;151:134:0:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="controller-0" call-id="24" rc-code="0" op-status="0" interval="30000" last-rc-change="1605579111" exec-time="0" queue-time="0" op-digest="efa64b64e8e502ff9a6c0dba02a626a4"/>
+          </lrm_resource>
+          <lrm_resource id="ovn-dbs-bundle-podman-0" type="podman" class="ocf" provider="heartbeat">
+            <lrm_rsc_op id="ovn-dbs-bundle-podman-0_last_0" operation_key="ovn-dbs-bundle-podman-0_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="105:114:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:7;105:114:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="controller-0" call-id="64" rc-code="7" op-status="0" interval="0" last-rc-change="1605578648" last-run="1605578648" exec-time="164" queue-time="0" op-digest="365f2d37acd7cd6cf9e11d4d5c8bed89"/>
+          </lrm_resource>
+          <lrm_resource id="stonith-fence_ipmilan-525400bb150b" type="fence_ipmilan" class="stonith">
+            <lrm_rsc_op id="stonith-fence_ipmilan-525400bb150b_last_0" operation_key="stonith-fence_ipmilan-525400bb150b_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="84:115:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:7;84:115:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="controller-0" call-id="122" rc-code="7" op-status="0" interval="0" last-rc-change="1605578656" last-run="1605578656" exec-time="0" queue-time="0" op-digest="7069d4bd259f26c8e756d0cfe8359ac1" op-secure-params="  password passwd  " op-secure-digest="d7b4bc578fd079201c7ec804f2b8862f"/>
+          </lrm_resource>
+          <lrm_resource id="ip-172.17.3.150" type="IPaddr2" class="ocf" provider="heartbeat">
+            <lrm_rsc_op id="ip-172.17.3.150_last_0" operation_key="ip-172.17.3.150_start_0" operation="start" crm-debug-origin="do_update_resource" crm_feature_set="3.6.1" transition-key="195:1431:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;195:1431:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="controller-0" call-id="197" rc-code="0" op-status="0" interval="0" last-rc-change="1605590033" last-run="1605590033" exec-time="92" queue-time="0" op-digest="b76c5030812250538293fcb8b4d1a2de"/>
+            <lrm_rsc_op id="ip-172.17.3.150_monitor_10000" operation_key="ip-172.17.3.150_monitor_10000" operation="monitor" crm-debug-origin="do_update_resource" crm_feature_set="3.6.1" transition-key="196:1431:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;196:1431:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="controller-0" call-id="198" rc-code="0" op-status="0" interval="10000" last-rc-change="1605590033" exec-time="134" queue-time="0" op-digest="184de914c723e1f7046d4cae74356047"/>
+          </lrm_resource>
+          <lrm_resource id="stonith-fence_ipmilan-525400e10267" type="fence_ipmilan" class="stonith">
+            <lrm_rsc_op id="stonith-fence_ipmilan-525400e10267_last_0" operation_key="stonith-fence_ipmilan-525400e10267_stop_0" operation="stop" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="306:141:0:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:0;306:141:0:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="controller-0" call-id="167" rc-code="0" op-status="0" interval="0" last-rc-change="1605579265" last-run="1605579265" exec-time="0" queue-time="0" op-digest="ad5ccd62a43794b237bdd30ae0887630"/>
+          </lrm_resource>
+          <lrm_resource id="stonith-fence_ipmilan-5254003f88b4" type="fence_ipmilan" class="stonith">
+            <lrm_rsc_op id="stonith-fence_ipmilan-5254003f88b4_last_0" operation_key="stonith-fence_ipmilan-5254003f88b4_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="116:114:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:7;116:114:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="controller-0" call-id="103" rc-code="7" op-status="0" interval="0" last-rc-change="1605578652" last-run="1605578652" exec-time="0" queue-time="0" op-digest="e4ae59cf662c224d9817c0d0331d50ba" op-secure-params="  password passwd  " op-secure-digest="9b06848b37b8bbd582e7cd4733987493"/>
+          </lrm_resource>
+          <lrm_resource id="rabbitmq-bundle-0" type="remote" class="ocf" provider="pacemaker" container="rabbitmq-bundle-podman-0">
+            <lrm_rsc_op id="rabbitmq-bundle-0_last_0" operation_key="rabbitmq-bundle-0_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="87:114:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:7;87:114:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="controller-0" call-id="6" rc-code="7" op-status="0" interval="0" last-rc-change="1605578648" last-run="1605578648" exec-time="0" queue-time="0" op-digest="a41ad5f9625676395b163a06987de2d6" op-force-restart="  server  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
+          </lrm_resource>
+          <lrm_resource id="galera-bundle-0" type="remote" class="ocf" provider="pacemaker" container="galera-bundle-podman-0">
+            <lrm_rsc_op id="galera-bundle-0_last_0" operation_key="galera-bundle-0_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="84:114:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:7;84:114:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="controller-0" call-id="3" rc-code="7" op-status="0" interval="0" last-rc-change="1605578648" last-run="1605578648" exec-time="0" queue-time="0" op-digest="dbc6b52d45a75a0b041af92265b22f9e" op-force-restart="  server  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
+          </lrm_resource>
+          <lrm_resource id="galera-bundle-1" type="remote" class="ocf" provider="pacemaker" container="galera-bundle-podman-1">
+            <lrm_rsc_op id="galera-bundle-1_last_0" operation_key="galera-bundle-1_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="85:114:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:7;85:114:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="controller-0" call-id="4" rc-code="7" op-status="0" interval="0" last-rc-change="1605578648" last-run="1605578648" exec-time="0" queue-time="0" op-digest="f6e3b46e18b24f6e1cca9639ec9b7c41" op-force-restart="  server  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
+          </lrm_resource>
+          <lrm_resource id="galera-bundle-2" type="remote" class="ocf" provider="pacemaker" container="galera-bundle-podman-2">
+            <lrm_rsc_op id="galera-bundle-2_last_0" operation_key="galera-bundle-2_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="86:114:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:7;86:114:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="controller-0" call-id="5" rc-code="7" op-status="0" interval="0" last-rc-change="1605578648" last-run="1605578648" exec-time="0" queue-time="0" op-digest="bf7cf9acd053cee24dc3401862009e40" op-force-restart="  server  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
+          </lrm_resource>
+          <lrm_resource id="stonith-fence_ipmilan-52540033df9c" type="fence_ipmilan" class="stonith">
+            <lrm_rsc_op id="stonith-fence_ipmilan-52540033df9c_last_0" operation_key="stonith-fence_ipmilan-52540033df9c_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="114:114:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:7;114:114:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="controller-0" call-id="95" rc-code="7" op-status="0" interval="0" last-rc-change="1605578652" last-run="1605578652" exec-time="0" queue-time="0" op-digest="b0341087994098c62f29bd703448ffed" op-secure-params="  password passwd  " op-secure-digest="4df029b6ad27db68abf3c71606f906ea"/>
+          </lrm_resource>
+          <lrm_resource id="haproxy-bundle-podman-0" type="podman" class="ocf" provider="heartbeat">
+            <lrm_rsc_op id="haproxy-bundle-podman-0_last_0" operation_key="haproxy-bundle-podman-0_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="102:114:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:7;102:114:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="controller-0" call-id="52" rc-code="7" op-status="0" interval="0" last-rc-change="1605578648" last-run="1605578648" exec-time="156" queue-time="0" op-digest="177c4afedacb80bed704490c635b2c89"/>
+          </lrm_resource>
+          <lrm_resource id="haproxy-bundle-podman-1" type="podman" class="ocf" provider="heartbeat">
+            <lrm_rsc_op id="haproxy-bundle-podman-1_last_0" operation_key="haproxy-bundle-podman-1_start_0" operation="start" crm-debug-origin="do_update_resource" crm_feature_set="3.6.1" transition-key="201:1431:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;201:1431:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="controller-0" call-id="200" rc-code="0" op-status="0" interval="0" last-rc-change="1605590033" last-run="1605590033" exec-time="2879" queue-time="0" op-digest="177c4afedacb80bed704490c635b2c89"/>
+            <lrm_rsc_op id="haproxy-bundle-podman-1_monitor_60000" operation_key="haproxy-bundle-podman-1_monitor_60000" operation="monitor" crm-debug-origin="do_update_resource" crm_feature_set="3.6.1" transition-key="202:1431:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;202:1431:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="controller-0" call-id="201" rc-code="0" op-status="0" interval="60000" last-rc-change="1605590036" exec-time="462" queue-time="0" op-digest="dd89f7e6287cd864e46a8f38365e9e6f"/>
+          </lrm_resource>
+          <lrm_resource id="haproxy-bundle-podman-2" type="podman" class="ocf" provider="heartbeat">
+            <lrm_rsc_op id="haproxy-bundle-podman-2_last_0" operation_key="haproxy-bundle-podman-2_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="104:114:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:7;104:114:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="controller-0" call-id="60" rc-code="7" op-status="0" interval="0" last-rc-change="1605578648" last-run="1605578648" exec-time="220" queue-time="0" op-digest="177c4afedacb80bed704490c635b2c89"/>
+          </lrm_resource>
+          <lrm_resource id="compute-0" type="remote" class="ocf" provider="pacemaker">
+            <lrm_rsc_op id="compute-0_last_0" operation_key="compute-0_start_0" operation="start" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="88:200:0:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:0;88:200:0:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="controller-0" call-id="31" rc-code="0" op-status="0" interval="0" last-rc-change="1605581071" last-run="1605581071" exec-time="0" queue-time="0" op-digest="94f4ed47fadb94317ef0f8959942f09e" op-force-restart="  server  " op-restart-digest="94f4ed47fadb94317ef0f8959942f09e"/>
+            <lrm_rsc_op id="compute-0_monitor_20000" operation_key="compute-0_monitor_20000" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="91:202:0:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:0;91:202:0:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="controller-0" call-id="32" rc-code="0" op-status="0" interval="20000" last-rc-change="1605581077" exec-time="0" queue-time="0" op-digest="823e3a84f3d104c7300e8bf746b27a61"/>
+          </lrm_resource>
+          <lrm_resource id="compute-1" type="remote" class="ocf" provider="pacemaker">
+            <lrm_rsc_op id="compute-1_last_0" operation_key="compute-1_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="83:114:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:7;83:114:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="controller-0" call-id="2" rc-code="7" op-status="0" interval="0" last-rc-change="1605578648" last-run="1605578648" exec-time="0" queue-time="0" op-digest="4a9ef452428322fd1d0d0c44a6f176fd" op-force-restart="  server  " op-restart-digest="4a9ef452428322fd1d0d0c44a6f176fd"/>
+          </lrm_resource>
+          <lrm_resource id="stonith-fence_compute-fence-nova" type="fence_compute" class="stonith">
+            <lrm_rsc_op id="stonith-fence_compute-fence-nova_last_0" operation_key="stonith-fence_compute-fence-nova_stop_0" operation="stop" crm-debug-origin="do_update_resource" crm_feature_set="3.4.1" transition-key="18:1426:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;18:1426:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="controller-0" call-id="195" rc-code="0" op-status="0" interval="0" last-rc-change="1605590014" last-run="1605590014" exec-time="0" queue-time="0" op-digest="04758bda751b3d5aa6c380933a6cf696" op-secure-params="  password passwd  " op-secure-digest="e0992836f72674b3c1b56e40d152bdf9"/>
+            <lrm_rsc_op id="stonith-fence_compute-fence-nova_last_failure_0" operation_key="stonith-fence_compute-fence-nova_start_0" operation="start" crm-debug-origin="do_update_resource" crm_feature_set="3.6.1" transition-key="246:1424:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:1;246:1424:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="controller-0" call-id="194" rc-code="1" op-status="0" interval="0" last-rc-change="1605590007" last-run="1605590007" exec-time="7186" queue-time="0" op-digest="04758bda751b3d5aa6c380933a6cf696"/>
+          </lrm_resource>
+          <lrm_resource id="ovn-dbs-bundle-0" type="remote" class="ocf" provider="pacemaker" container="ovn-dbs-bundle-podman-0">
+            <lrm_rsc_op id="ovn-dbs-bundle-0_last_0" operation_key="ovn-dbs-bundle-0_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="106:114:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:7;106:114:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="controller-0" call-id="11" rc-code="7" op-status="0" interval="0" last-rc-change="1605578648" last-run="1605578648" exec-time="0" queue-time="0" op-digest="bf04cc8b2becfb29770a97d109ad6c4f" op-force-restart="  server  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
+          </lrm_resource>
+          <lrm_resource id="ip-172.17.1.57" type="IPaddr2" class="ocf" provider="heartbeat">
+            <lrm_rsc_op id="ip-172.17.1.57_last_0" operation_key="ip-172.17.1.57_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="111:114:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:7;111:114:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="controller-0" call-id="78" rc-code="7" op-status="0" interval="0" last-rc-change="1605578648" last-run="1605578648" exec-time="172" queue-time="0" op-digest="f30f64b9840ab79f20b7417440873104"/>
+          </lrm_resource>
+          <lrm_resource id="ovn-dbs-bundle-1" type="remote" class="ocf" provider="pacemaker" container="ovn-dbs-bundle-podman-1">
+            <lrm_rsc_op id="ovn-dbs-bundle-1_last_0" operation_key="ovn-dbs-bundle-1_start_0" operation="start" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.1" transition-key="245:1375:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;245:1375:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="controller-0" call-id="37" rc-code="0" op-status="0" interval="0" last-rc-change="1605589383" last-run="1605589383" exec-time="0" queue-time="0" op-digest="d00e87492de6b83a85450cd667db2a88" op-force-restart="  server  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
+            <lrm_rsc_op id="ovn-dbs-bundle-1_monitor_30000" operation_key="ovn-dbs-bundle-1_monitor_30000" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.1" transition-key="249:1376:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;249:1376:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="controller-0" call-id="38" rc-code="0" op-status="0" interval="30000" last-rc-change="1605589385" exec-time="0" queue-time="0" op-digest="d32292f5736ec6365136aa382f396e66"/>
+          </lrm_resource>
+          <lrm_resource id="stonith-fence_ipmilan-5254009cb549" type="fence_ipmilan" class="stonith">
+            <lrm_rsc_op id="stonith-fence_ipmilan-5254009cb549_last_0" operation_key="stonith-fence_ipmilan-5254009cb549_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="86:115:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:7;86:115:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="controller-0" call-id="130" rc-code="7" op-status="0" interval="0" last-rc-change="1605578656" last-run="1605578656" exec-time="0" queue-time="0" op-digest="da530999b2b0c233366dbd0dab07c65f" op-secure-params="  password passwd  " op-secure-digest="6153a0210bf9ca00a096fe7a933b3ca6"/>
+          </lrm_resource>
+        </lrm_resources>
+      </lrm>
+    </node_state>
+    <node_state id="2" uname="controller-1" in_ccm="true" crmd="online" join="member" expected="member" crm-debug-origin="do_update_resource">
+      <transient_attributes id="2">
+        <instance_attributes id="status-2">
+          <nvpair id="status-2-master-redis" name="master-redis" value="1"/>
+          <nvpair id="status-2-master-ovndb_servers" name="master-ovndb_servers" value="5"/>
+          <nvpair id="status-2-.node-unfenced" name="#node-unfenced" value="1605579758"/>
+          <nvpair id="status-2-fail-count-stonith-fence_compute-fence-nova.start_0" name="fail-count-stonith-fence_compute-fence-nova#start_0" value="INFINITY"/>
+          <nvpair id="status-2-last-failure-stonith-fence_compute-fence-nova.start_0" name="last-failure-stonith-fence_compute-fence-nova#start_0" value="1605590021"/>
+        </instance_attributes>
+      </transient_attributes>
+      <lrm id="2">
+        <lrm_resources>
+          <lrm_resource id="openstack-cinder-volume-podman-0" type="podman" class="ocf" provider="heartbeat">
+            <lrm_rsc_op id="openstack-cinder-volume-podman-0_last_0" operation_key="openstack-cinder-volume-podman-0_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="125:158:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:7;125:158:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="controller-1" call-id="87" rc-code="7" op-status="0" interval="0" last-rc-change="1605579754" last-run="1605579754" exec-time="147" queue-time="0" op-digest="62db8532552b1d0f98ef09d7bf861b74"/>
+          </lrm_resource>
+          <lrm_resource id="ovn-dbs-bundle-2" type="remote" class="ocf" provider="pacemaker" container="ovn-dbs-bundle-podman-2">
+            <lrm_rsc_op id="ovn-dbs-bundle-2_last_0" operation_key="ovn-dbs-bundle-2_start_0" operation="start" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.1" transition-key="249:1386:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;249:1386:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="controller-1" call-id="31" rc-code="0" op-status="0" interval="0" last-rc-change="1605589419" last-run="1605589419" exec-time="0" queue-time="0" op-digest="015c999adc4143966a5e0ba98e5d74af" op-force-restart="  server  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
+            <lrm_rsc_op id="ovn-dbs-bundle-2_monitor_30000" operation_key="ovn-dbs-bundle-2_monitor_30000" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.1" transition-key="251:1387:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;251:1387:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="controller-1" call-id="32" rc-code="0" op-status="0" interval="30000" last-rc-change="1605589420" exec-time="0" queue-time="0" op-digest="d80c68bbc581d1bd3b9e926370a2f8d5"/>
+          </lrm_resource>
+          <lrm_resource id="stonith-fence_ipmilan-525400dc0f81" type="fence_ipmilan" class="stonith">
+            <lrm_rsc_op id="stonith-fence_ipmilan-525400dc0f81_last_0" operation_key="stonith-fence_ipmilan-525400dc0f81_stop_0" operation="stop" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.1" transition-key="311:869:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;311:869:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="controller-1" call-id="173" rc-code="0" op-status="0" interval="0" last-rc-change="1605586210" last-run="1605586210" exec-time="3" queue-time="0" op-digest="baa6fc182a42d0a5173739535c7c67fe"/>
+          </lrm_resource>
+          <lrm_resource id="ip-172.17.1.150" type="IPaddr2" class="ocf" provider="heartbeat">
+            <lrm_rsc_op id="ip-172.17.1.150_last_0" operation_key="ip-172.17.1.150_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="99:158:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:7;99:158:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="controller-1" call-id="39" rc-code="7" op-status="0" interval="0" last-rc-change="1605579754" last-run="1605579754" exec-time="197" queue-time="0" op-digest="f5516e4349a3b19d31637236055aea39"/>
+          </lrm_resource>
+          <lrm_resource id="redis-bundle-podman-0" type="podman" class="ocf" provider="heartbeat">
+            <lrm_rsc_op id="redis-bundle-podman-0_last_0" operation_key="redis-bundle-podman-0_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="90:158:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:7;90:158:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="controller-1" call-id="13" rc-code="7" op-status="0" interval="0" last-rc-change="1605579754" last-run="1605579754" exec-time="188" queue-time="0" op-digest="3a642d99da31dbe69ff109f23770eae7"/>
+          </lrm_resource>
+          <lrm_resource id="redis-bundle-podman-1" type="podman" class="ocf" provider="heartbeat">
+            <lrm_rsc_op id="redis-bundle-podman-1_last_0" operation_key="redis-bundle-podman-1_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="92:158:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:7;92:158:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="controller-1" call-id="18" rc-code="7" op-status="0" interval="0" last-rc-change="1605579754" last-run="1605579754" exec-time="177" queue-time="0" op-digest="e420400d891bac146914bebbc10a0e8f"/>
+          </lrm_resource>
+          <lrm_resource id="nova-evacuate" type="NovaEvacuate" class="ocf" provider="openstack">
+            <lrm_rsc_op id="nova-evacuate_last_0" operation_key="nova-evacuate_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="113:158:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:7;113:158:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="controller-1" call-id="82" rc-code="7" op-status="0" interval="0" last-rc-change="1605579754" last-run="1605579754" exec-time="58" queue-time="0" op-digest="8c367ebe0409afc3686f512ae68b1ee4" op-secure-params="  password  " op-secure-digest="f89eeb9446a58fb145857e36589bd2ee"/>
+          </lrm_resource>
+          <lrm_resource id="ip-172.17.4.150" type="IPaddr2" class="ocf" provider="heartbeat">
+            <lrm_rsc_op id="ip-172.17.4.150_last_0" operation_key="ip-172.17.4.150_start_0" operation="start" crm-debug-origin="do_update_resource" crm_feature_set="3.6.1" transition-key="197:1431:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;197:1431:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="controller-1" call-id="183" rc-code="0" op-status="0" interval="0" last-rc-change="1605590033" last-run="1605590033" exec-time="129" queue-time="0" op-digest="ceddf61079b702fdbc8d52e09f642c32"/>
+            <lrm_rsc_op id="ip-172.17.4.150_monitor_10000" operation_key="ip-172.17.4.150_monitor_10000" operation="monitor" crm-debug-origin="do_update_resource" crm_feature_set="3.6.1" transition-key="198:1431:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;198:1431:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="controller-1" call-id="185" rc-code="0" op-status="0" interval="10000" last-rc-change="1605590033" exec-time="122" queue-time="0" op-digest="0a696d34615c22389a16d6e29f453f78"/>
+          </lrm_resource>
+          <lrm_resource id="redis-bundle-podman-2" type="podman" class="ocf" provider="heartbeat">
+            <lrm_rsc_op id="redis-bundle-podman-2_last_0" operation_key="redis-bundle-podman-2_start_0" operation="start" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="172:174:0:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:0;172:174:0:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="controller-1" call-id="156" rc-code="0" op-status="0" interval="0" last-rc-change="1605580070" last-run="1605580070" exec-time="1953" queue-time="0" op-digest="3e7e379da7a20fdf94fb7950e0711dda"/>
+            <lrm_rsc_op id="redis-bundle-podman-2_monitor_60000" operation_key="redis-bundle-podman-2_monitor_60000" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="173:174:0:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:0;173:174:0:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="controller-1" call-id="157" rc-code="0" op-status="0" interval="60000" last-rc-change="1605580072" exec-time="388" queue-time="0" op-digest="d47bda797791e9cf87511b94ec60b5f9"/>
+          </lrm_resource>
+          <lrm_resource id="stonith-fence_ipmilan-525400642894" type="fence_ipmilan" class="stonith">
+            <lrm_rsc_op id="stonith-fence_ipmilan-525400642894_last_0" operation_key="stonith-fence_ipmilan-525400642894_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="69:160:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:7;69:160:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="controller-1" call-id="114" rc-code="7" op-status="0" interval="0" last-rc-change="1605579763" last-run="1605579763" exec-time="0" queue-time="0" op-digest="1779ddd0abf841e7e9914f08b32da1a6" op-secure-params="  password passwd  " op-secure-digest="920d017ea35856c843a6bbf9d9832105"/>
+          </lrm_resource>
+          <lrm_resource id="ip-10.0.0.150" type="IPaddr2" class="ocf" provider="heartbeat">
+            <lrm_rsc_op id="ip-10.0.0.150_last_0" operation_key="ip-10.0.0.150_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="97:158:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:7;97:158:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="controller-1" call-id="31" rc-code="7" op-status="0" interval="0" last-rc-change="1605579754" last-run="1605579754" exec-time="191" queue-time="0" op-digest="27269224203b312ccfa3f15e7df0fe2a"/>
+          </lrm_resource>
+          <lrm_resource id="stonith-fence_ipmilan-5254007b7920" type="fence_ipmilan" class="stonith">
+            <lrm_rsc_op id="stonith-fence_ipmilan-5254007b7920_last_0" operation_key="stonith-fence_ipmilan-5254007b7920_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="74:159:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:7;74:159:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="controller-1" call-id="110" rc-code="7" op-status="0" interval="0" last-rc-change="1605579759" last-run="1605579759" exec-time="0" queue-time="0" op-digest="292cf370c85404b918bcf8312056ca36" op-secure-params="  password passwd  " op-secure-digest="78d581355e684910edb664ba961cf50d"/>
+          </lrm_resource>
+          <lrm_resource id="ip-172.17.1.151" type="IPaddr2" class="ocf" provider="heartbeat">
+            <lrm_rsc_op id="ip-172.17.1.151_last_0" operation_key="ip-172.17.1.151_start_0" operation="start" crm-debug-origin="do_update_resource" crm_feature_set="3.6.1" transition-key="191:1431:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;191:1431:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="controller-1" call-id="182" rc-code="0" op-status="0" interval="0" last-rc-change="1605590033" last-run="1605590033" exec-time="121" queue-time="0" op-digest="d4c6ed079c2999519474018fa68a03d5"/>
+            <lrm_rsc_op id="ip-172.17.1.151_monitor_10000" operation_key="ip-172.17.1.151_monitor_10000" operation="monitor" crm-debug-origin="do_update_resource" crm_feature_set="3.6.1" transition-key="192:1431:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;192:1431:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="controller-1" call-id="184" rc-code="0" op-status="0" interval="10000" last-rc-change="1605590033" exec-time="116" queue-time="0" op-digest="405d84871d775a5d320ccc9243b781ac"/>
+          </lrm_resource>
+          <lrm_resource id="ip-192.168.24.150" type="IPaddr2" class="ocf" provider="heartbeat">
+            <lrm_rsc_op id="ip-192.168.24.150_last_0" operation_key="ip-192.168.24.150_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="96:158:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:7;96:158:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="controller-1" call-id="27" rc-code="7" op-status="0" interval="0" last-rc-change="1605579754" last-run="1605579754" exec-time="203" queue-time="0" op-digest="f3f5413013b2c4ab476074cb9fcfa99a"/>
+          </lrm_resource>
+          <lrm_resource id="stonith-fence_ipmilan-525400d5382b" type="fence_ipmilan" class="stonith">
+            <lrm_rsc_op id="stonith-fence_ipmilan-525400d5382b_last_0" operation_key="stonith-fence_ipmilan-525400d5382b_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="70:160:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:7;70:160:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="controller-1" call-id="118" rc-code="7" op-status="0" interval="0" last-rc-change="1605579763" last-run="1605579763" exec-time="0" queue-time="0" op-digest="03339c868b4e990d1eee35ee0d8fd924" op-secure-params="  password passwd  " op-secure-digest="d80496ebdfcec16ae6f6a8217f6c5c21"/>
+          </lrm_resource>
+          <lrm_resource id="stonith-fence_ipmilan-525400ffc780" type="fence_ipmilan" class="stonith">
+            <lrm_rsc_op id="stonith-fence_ipmilan-525400ffc780_last_0" operation_key="stonith-fence_ipmilan-525400ffc780_stop_0" operation="stop" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="319:181:0:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:0;319:181:0:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="controller-1" call-id="167" rc-code="0" op-status="0" interval="0" last-rc-change="1605580166" last-run="1605580166" exec-time="1" queue-time="0" op-digest="d5b19f9189ef5c23bf62dd041a8a1cfd"/>
+          </lrm_resource>
+          <lrm_resource id="redis-bundle-0" type="remote" class="ocf" provider="pacemaker" container="redis-bundle-podman-0">
+            <lrm_rsc_op id="redis-bundle-0_last_0" operation_key="redis-bundle-0_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="91:158:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:7;91:158:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="controller-1" call-id="9" rc-code="7" op-status="0" interval="0" last-rc-change="1605579754" last-run="1605579754" exec-time="0" queue-time="0" op-digest="f325849fbffe2e62970eb201a50da9f3" op-force-restart="  server  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
+          </lrm_resource>
+          <lrm_resource id="redis-bundle-1" type="remote" class="ocf" provider="pacemaker" container="redis-bundle-podman-1">
+            <lrm_rsc_op id="redis-bundle-1_last_0" operation_key="redis-bundle-1_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="93:158:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:7;93:158:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="controller-1" call-id="10" rc-code="7" op-status="0" interval="0" last-rc-change="1605579754" last-run="1605579754" exec-time="0" queue-time="0" op-digest="dd323696d6c8ed14cb71914c411664c9" op-force-restart="  server  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
+          </lrm_resource>
+          <lrm_resource id="redis-bundle-2" type="remote" class="ocf" provider="pacemaker" container="redis-bundle-podman-2">
+            <lrm_rsc_op id="redis-bundle-2_last_0" operation_key="redis-bundle-2_start_0" operation="start" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="174:174:0:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:0;174:174:0:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="controller-1" call-id="23" rc-code="0" op-status="0" interval="0" last-rc-change="1605580072" last-run="1605580072" exec-time="0" queue-time="0" op-digest="cd98602d6f977947327050913302f861" op-force-restart="  server  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
+            <lrm_rsc_op id="redis-bundle-2_monitor_30000" operation_key="redis-bundle-2_monitor_30000" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="178:175:0:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:0;178:175:0:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="controller-1" call-id="24" rc-code="0" op-status="0" interval="30000" last-rc-change="1605580074" exec-time="0" queue-time="0" op-digest="a076da96e60da0ec2faccf5f38186767"/>
+          </lrm_resource>
+          <lrm_resource id="rabbitmq-bundle-1" type="remote" class="ocf" provider="pacemaker" container="rabbitmq-bundle-podman-1">
+            <lrm_rsc_op id="rabbitmq-bundle-1_last_0" operation_key="rabbitmq-bundle-1_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="88:158:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:7;88:158:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="controller-1" call-id="7" rc-code="7" op-status="0" interval="0" last-rc-change="1605579753" last-run="1605579753" exec-time="0" queue-time="0" op-digest="e25f0ff041ed91bee8ee197d0ce2aebd" op-force-restart="  server  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
+          </lrm_resource>
+          <lrm_resource id="rabbitmq-bundle-2" type="remote" class="ocf" provider="pacemaker" container="rabbitmq-bundle-podman-2">
+            <lrm_rsc_op id="rabbitmq-bundle-2_last_0" operation_key="rabbitmq-bundle-2_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="89:158:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:7;89:158:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="controller-1" call-id="8" rc-code="7" op-status="0" interval="0" last-rc-change="1605579753" last-run="1605579753" exec-time="0" queue-time="0" op-digest="593e15353c64e73e2efe61415c7dd44b" op-force-restart="  server  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
+          </lrm_resource>
+          <lrm_resource id="ovn-dbs-bundle-podman-2" type="podman" class="ocf" provider="heartbeat">
+            <lrm_rsc_op id="ovn-dbs-bundle-podman-2_last_0" operation_key="ovn-dbs-bundle-podman-2_start_0" operation="start" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.1" transition-key="244:1385:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;244:1385:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="controller-1" call-id="176" rc-code="0" op-status="0" interval="0" last-rc-change="1605589416" last-run="1605589416" exec-time="2412" queue-time="0" op-digest="f4c7f36e22e794b7a60cd85e50c1065c"/>
+            <lrm_rsc_op id="ovn-dbs-bundle-podman-2_monitor_60000" operation_key="ovn-dbs-bundle-podman-2_monitor_60000" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.1" transition-key="248:1386:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;248:1386:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="controller-1" call-id="177" rc-code="0" op-status="0" interval="60000" last-rc-change="1605589419" exec-time="441" queue-time="0" op-digest="a93c6ae63f5e74e08eb80d40457a86c7"/>
+          </lrm_resource>
+          <lrm_resource id="ovn-dbs-bundle-podman-1" type="podman" class="ocf" provider="heartbeat">
+            <lrm_rsc_op id="ovn-dbs-bundle-podman-1_last_0" operation_key="ovn-dbs-bundle-podman-1_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="107:158:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:7;107:158:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="controller-1" call-id="69" rc-code="7" op-status="0" interval="0" last-rc-change="1605579754" last-run="1605579754" exec-time="444" queue-time="0" op-digest="43d92ad90f1a0eba7e80add98f7eb342"/>
+          </lrm_resource>
+          <lrm_resource id="stonith-fence_ipmilan-525400bb150b" type="fence_ipmilan" class="stonith">
+            <lrm_rsc_op id="stonith-fence_ipmilan-525400bb150b_last_0" operation_key="stonith-fence_ipmilan-525400bb150b_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="71:160:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:7;71:160:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="controller-1" call-id="122" rc-code="7" op-status="0" interval="0" last-rc-change="1605579763" last-run="1605579763" exec-time="0" queue-time="0" op-digest="7069d4bd259f26c8e756d0cfe8359ac1" op-secure-params="  password passwd  " op-secure-digest="d7b4bc578fd079201c7ec804f2b8862f"/>
+          </lrm_resource>
+          <lrm_resource id="ovn-dbs-bundle-podman-0" type="podman" class="ocf" provider="heartbeat">
+            <lrm_rsc_op id="ovn-dbs-bundle-podman-0_last_0" operation_key="ovn-dbs-bundle-podman-0_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="105:158:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:7;105:158:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="controller-1" call-id="64" rc-code="7" op-status="0" interval="0" last-rc-change="1605579754" last-run="1605579754" exec-time="240" queue-time="0" op-digest="365f2d37acd7cd6cf9e11d4d5c8bed89"/>
+          </lrm_resource>
+          <lrm_resource id="stonith-fence_ipmilan-5254001f5f3c" type="fence_ipmilan" class="stonith">
+            <lrm_rsc_op id="stonith-fence_ipmilan-5254001f5f3c_last_0" operation_key="stonith-fence_ipmilan-5254001f5f3c_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="72:159:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:7;72:159:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="controller-1" call-id="102" rc-code="7" op-status="0" interval="0" last-rc-change="1605579759" last-run="1605579759" exec-time="0" queue-time="0" op-digest="859262e1216f50b739b9ff444e605375" op-secure-params="  password passwd  " op-secure-digest="95ad05342de9eab61bee697cec0a352e"/>
+          </lrm_resource>
+          <lrm_resource id="ip-172.17.3.150" type="IPaddr2" class="ocf" provider="heartbeat">
+            <lrm_rsc_op id="ip-172.17.3.150_last_0" operation_key="ip-172.17.3.150_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="100:158:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:7;100:158:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="controller-1" call-id="43" rc-code="7" op-status="0" interval="0" last-rc-change="1605579754" last-run="1605579754" exec-time="155" queue-time="0" op-digest="b76c5030812250538293fcb8b4d1a2de"/>
+          </lrm_resource>
+          <lrm_resource id="stonith-fence_ipmilan-525400e10267" type="fence_ipmilan" class="stonith">
+            <lrm_rsc_op id="stonith-fence_ipmilan-525400e10267_last_0" operation_key="stonith-fence_ipmilan-525400e10267_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="74:160:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:7;74:160:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="controller-1" call-id="134" rc-code="7" op-status="0" interval="0" last-rc-change="1605579763" last-run="1605579763" exec-time="0" queue-time="0" op-digest="ad5ccd62a43794b237bdd30ae0887630" op-secure-params="  password passwd  " op-secure-digest="9fbed2700250a8fd49b45f72c08d5d17"/>
+          </lrm_resource>
+          <lrm_resource id="stonith-fence_ipmilan-5254003f88b4" type="fence_ipmilan" class="stonith">
+            <lrm_rsc_op id="stonith-fence_ipmilan-5254003f88b4_last_0" operation_key="stonith-fence_ipmilan-5254003f88b4_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="73:159:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:7;73:159:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="controller-1" call-id="106" rc-code="7" op-status="0" interval="0" last-rc-change="1605579759" last-run="1605579759" exec-time="0" queue-time="0" op-digest="e4ae59cf662c224d9817c0d0331d50ba" op-secure-params="  password passwd  " op-secure-digest="9b06848b37b8bbd582e7cd4733987493"/>
+          </lrm_resource>
+          <lrm_resource id="rabbitmq-bundle-0" type="remote" class="ocf" provider="pacemaker" container="rabbitmq-bundle-podman-0">
+            <lrm_rsc_op id="rabbitmq-bundle-0_last_0" operation_key="rabbitmq-bundle-0_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="87:158:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:7;87:158:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="controller-1" call-id="6" rc-code="7" op-status="0" interval="0" last-rc-change="1605579753" last-run="1605579753" exec-time="0" queue-time="0" op-digest="a41ad5f9625676395b163a06987de2d6" op-force-restart="  server  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
+          </lrm_resource>
+          <lrm_resource id="galera-bundle-0" type="remote" class="ocf" provider="pacemaker" container="galera-bundle-podman-0">
+            <lrm_rsc_op id="galera-bundle-0_last_0" operation_key="galera-bundle-0_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="84:158:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:7;84:158:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="controller-1" call-id="3" rc-code="7" op-status="0" interval="0" last-rc-change="1605579753" last-run="1605579753" exec-time="0" queue-time="0" op-digest="dbc6b52d45a75a0b041af92265b22f9e" op-force-restart="  server  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
+          </lrm_resource>
+          <lrm_resource id="galera-bundle-1" type="remote" class="ocf" provider="pacemaker" container="galera-bundle-podman-1">
+            <lrm_rsc_op id="galera-bundle-1_last_0" operation_key="galera-bundle-1_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="85:158:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:7;85:158:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="controller-1" call-id="4" rc-code="7" op-status="0" interval="0" last-rc-change="1605579753" last-run="1605579753" exec-time="0" queue-time="0" op-digest="f6e3b46e18b24f6e1cca9639ec9b7c41" op-force-restart="  server  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
+          </lrm_resource>
+          <lrm_resource id="galera-bundle-2" type="remote" class="ocf" provider="pacemaker" container="galera-bundle-podman-2">
+            <lrm_rsc_op id="galera-bundle-2_last_0" operation_key="galera-bundle-2_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="86:158:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:7;86:158:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="controller-1" call-id="5" rc-code="7" op-status="0" interval="0" last-rc-change="1605579753" last-run="1605579753" exec-time="0" queue-time="0" op-digest="bf7cf9acd053cee24dc3401862009e40" op-force-restart="  server  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
+          </lrm_resource>
+          <lrm_resource id="stonith-fence_ipmilan-52540033df9c" type="fence_ipmilan" class="stonith">
+            <lrm_rsc_op id="stonith-fence_ipmilan-52540033df9c_last_0" operation_key="stonith-fence_ipmilan-52540033df9c_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="71:159:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:7;71:159:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="controller-1" call-id="98" rc-code="7" op-status="0" interval="0" last-rc-change="1605579759" last-run="1605579759" exec-time="0" queue-time="0" op-digest="b0341087994098c62f29bd703448ffed" op-secure-params="  password passwd  " op-secure-digest="4df029b6ad27db68abf3c71606f906ea"/>
+          </lrm_resource>
+          <lrm_resource id="haproxy-bundle-podman-0" type="podman" class="ocf" provider="heartbeat">
+            <lrm_rsc_op id="haproxy-bundle-podman-0_last_0" operation_key="haproxy-bundle-podman-0_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="102:158:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:7;102:158:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="controller-1" call-id="52" rc-code="7" op-status="0" interval="0" last-rc-change="1605579754" last-run="1605579754" exec-time="127" queue-time="0" op-digest="177c4afedacb80bed704490c635b2c89"/>
+          </lrm_resource>
+          <lrm_resource id="haproxy-bundle-podman-1" type="podman" class="ocf" provider="heartbeat">
+            <lrm_rsc_op id="haproxy-bundle-podman-1_last_0" operation_key="haproxy-bundle-podman-1_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="103:158:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:7;103:158:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="controller-1" call-id="56" rc-code="7" op-status="0" interval="0" last-rc-change="1605579754" last-run="1605579754" exec-time="198" queue-time="0" op-digest="177c4afedacb80bed704490c635b2c89"/>
+          </lrm_resource>
+          <lrm_resource id="haproxy-bundle-podman-2" type="podman" class="ocf" provider="heartbeat">
+            <lrm_rsc_op id="haproxy-bundle-podman-2_last_0" operation_key="haproxy-bundle-podman-2_start_0" operation="start" crm-debug-origin="do_update_resource" crm_feature_set="3.6.1" transition-key="203:1431:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;203:1431:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="controller-1" call-id="186" rc-code="0" op-status="0" interval="0" last-rc-change="1605590033" last-run="1605590033" exec-time="2591" queue-time="0" op-digest="177c4afedacb80bed704490c635b2c89"/>
+            <lrm_rsc_op id="haproxy-bundle-podman-2_monitor_60000" operation_key="haproxy-bundle-podman-2_monitor_60000" operation="monitor" crm-debug-origin="do_update_resource" crm_feature_set="3.6.1" transition-key="204:1431:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;204:1431:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="controller-1" call-id="187" rc-code="0" op-status="0" interval="60000" last-rc-change="1605590036" exec-time="596" queue-time="0" op-digest="dd89f7e6287cd864e46a8f38365e9e6f"/>
+          </lrm_resource>
+          <lrm_resource id="compute-0" type="remote" class="ocf" provider="pacemaker">
+            <lrm_rsc_op id="compute-0_last_0" operation_key="compute-0_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="82:158:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:7;82:158:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="controller-1" call-id="1" rc-code="7" op-status="0" interval="0" last-rc-change="1605579753" last-run="1605579753" exec-time="0" queue-time="0" op-digest="94f4ed47fadb94317ef0f8959942f09e" op-force-restart="  server  " op-restart-digest="94f4ed47fadb94317ef0f8959942f09e"/>
+          </lrm_resource>
+          <lrm_resource id="compute-1" type="remote" class="ocf" provider="pacemaker">
+            <lrm_rsc_op id="compute-1_last_0" operation_key="compute-1_start_0" operation="start" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="90:192:0:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:0;90:192:0:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="controller-1" call-id="28" rc-code="0" op-status="0" interval="0" last-rc-change="1605580728" last-run="1605580728" exec-time="0" queue-time="0" op-digest="4a9ef452428322fd1d0d0c44a6f176fd" op-force-restart="  server  " op-restart-digest="4a9ef452428322fd1d0d0c44a6f176fd"/>
+            <lrm_rsc_op id="compute-1_monitor_20000" operation_key="compute-1_monitor_20000" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="93:194:0:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:0;93:194:0:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="controller-1" call-id="29" rc-code="0" op-status="0" interval="20000" last-rc-change="1605580734" exec-time="0" queue-time="0" op-digest="7d4a40b232743907adf85e688a827f83"/>
+          </lrm_resource>
+          <lrm_resource id="stonith-fence_compute-fence-nova" type="fence_compute" class="stonith">
+            <lrm_rsc_op id="stonith-fence_compute-fence-nova_last_0" operation_key="stonith-fence_compute-fence-nova_stop_0" operation="stop" crm-debug-origin="do_update_resource" crm_feature_set="3.4.1" transition-key="24:1428:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;24:1428:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="controller-1" call-id="181" rc-code="0" op-status="0" interval="0" last-rc-change="1605590022" last-run="1605590022" exec-time="0" queue-time="0" op-digest="04758bda751b3d5aa6c380933a6cf696" op-secure-params="  password passwd  " op-secure-digest="e0992836f72674b3c1b56e40d152bdf9"/>
+            <lrm_rsc_op id="stonith-fence_compute-fence-nova_last_failure_0" operation_key="stonith-fence_compute-fence-nova_start_0" operation="start" crm-debug-origin="do_update_resource" crm_feature_set="3.6.1" transition-key="246:1426:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:1;246:1426:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="controller-1" call-id="180" rc-code="1" op-status="0" interval="0" last-rc-change="1605590014" last-run="1605590014" exec-time="7241" queue-time="0" op-digest="04758bda751b3d5aa6c380933a6cf696"/>
+          </lrm_resource>
+          <lrm_resource id="ovn-dbs-bundle-0" type="remote" class="ocf" provider="pacemaker" container="ovn-dbs-bundle-podman-0">
+            <lrm_rsc_op id="ovn-dbs-bundle-0_last_0" operation_key="ovn-dbs-bundle-0_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="106:158:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:7;106:158:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="controller-1" call-id="11" rc-code="7" op-status="0" interval="0" last-rc-change="1605579754" last-run="1605579754" exec-time="0" queue-time="0" op-digest="bf04cc8b2becfb29770a97d109ad6c4f" op-force-restart="  server  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
+          </lrm_resource>
+          <lrm_resource id="ip-172.17.1.57" type="IPaddr2" class="ocf" provider="heartbeat">
+            <lrm_rsc_op id="ip-172.17.1.57_last_0" operation_key="ip-172.17.1.57_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="111:158:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:7;111:158:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="controller-1" call-id="78" rc-code="7" op-status="0" interval="0" last-rc-change="1605579754" last-run="1605579754" exec-time="308" queue-time="0" op-digest="f30f64b9840ab79f20b7417440873104"/>
+          </lrm_resource>
+          <lrm_resource id="ovn-dbs-bundle-1" type="remote" class="ocf" provider="pacemaker" container="ovn-dbs-bundle-podman-1">
+            <lrm_rsc_op id="ovn-dbs-bundle-1_last_0" operation_key="ovn-dbs-bundle-1_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="108:158:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:7;108:158:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="controller-1" call-id="12" rc-code="7" op-status="0" interval="0" last-rc-change="1605579754" last-run="1605579754" exec-time="0" queue-time="0" op-digest="d00e87492de6b83a85450cd667db2a88" op-force-restart="  server  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
+          </lrm_resource>
+          <lrm_resource id="stonith-fence_ipmilan-5254009cb549" type="fence_ipmilan" class="stonith">
+            <lrm_rsc_op id="stonith-fence_ipmilan-5254009cb549_last_0" operation_key="stonith-fence_ipmilan-5254009cb549_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="73:160:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:7;73:160:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="controller-1" call-id="130" rc-code="7" op-status="0" interval="0" last-rc-change="1605579763" last-run="1605579763" exec-time="0" queue-time="0" op-digest="da530999b2b0c233366dbd0dab07c65f" op-secure-params="  password passwd  " op-secure-digest="6153a0210bf9ca00a096fe7a933b3ca6"/>
+          </lrm_resource>
+        </lrm_resources>
+      </lrm>
+    </node_state>
+    <node_state id="3" uname="controller-2" in_ccm="true" crmd="online" join="member" expected="member" crm-debug-origin="do_update_resource">
+      <transient_attributes id="3">
+        <instance_attributes id="status-3">
+          <nvpair id="status-3-master-redis" name="master-redis" value="1"/>
+          <nvpair id="status-3-master-ovndb_servers" name="master-ovndb_servers" value="10"/>
+          <nvpair id="status-3-.node-unfenced" name="#node-unfenced" value="1605577897"/>
+          <nvpair id="status-3-fail-count-stonith-fence_compute-fence-nova.start_0" name="fail-count-stonith-fence_compute-fence-nova#start_0" value="INFINITY"/>
+          <nvpair id="status-3-last-failure-stonith-fence_compute-fence-nova.start_0" name="last-failure-stonith-fence_compute-fence-nova#start_0" value="1605590030"/>
+        </instance_attributes>
+      </transient_attributes>
+      <lrm id="3">
+        <lrm_resources>
+          <lrm_resource id="openstack-cinder-volume-podman-0" type="podman" class="ocf" provider="heartbeat">
+            <lrm_rsc_op id="openstack-cinder-volume-podman-0_last_0" operation_key="openstack-cinder-volume-podman-0_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="125:75:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:7;125:75:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="controller-2" call-id="86" rc-code="7" op-status="0" interval="0" last-rc-change="1605577891" last-run="1605577891" exec-time="172" queue-time="0" op-digest="62db8532552b1d0f98ef09d7bf861b74"/>
+          </lrm_resource>
+          <lrm_resource id="ovn-dbs-bundle-2" type="remote" class="ocf" provider="pacemaker" container="ovn-dbs-bundle-podman-2">
+            <lrm_rsc_op id="ovn-dbs-bundle-2_last_0" operation_key="ovn-dbs-bundle-2_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="110:75:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:7;110:75:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="controller-2" call-id="12" rc-code="7" op-status="0" interval="0" last-rc-change="1605577891" last-run="1605577891" exec-time="0" queue-time="0" op-digest="015c999adc4143966a5e0ba98e5d74af" op-force-restart="  server  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
+          </lrm_resource>
+          <lrm_resource id="ovn-dbs-bundle-0" type="remote" class="ocf" provider="pacemaker" container="ovn-dbs-bundle-podman-0">
+            <lrm_rsc_op id="ovn-dbs-bundle-0_last_0" operation_key="ovn-dbs-bundle-0_start_0" operation="start" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="241:98:0:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:0;241:98:0:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="controller-2" call-id="26" rc-code="0" op-status="0" interval="0" last-rc-change="1605578297" last-run="1605578297" exec-time="0" queue-time="0" op-digest="bf04cc8b2becfb29770a97d109ad6c4f" op-force-restart="  server  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
+            <lrm_rsc_op id="ovn-dbs-bundle-0_monitor_30000" operation_key="ovn-dbs-bundle-0_monitor_30000" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="245:99:0:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:0;245:99:0:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="controller-2" call-id="27" rc-code="0" op-status="0" interval="30000" last-rc-change="1605578298" exec-time="0" queue-time="0" op-digest="9f294fb368bef68138cb5f6555eacdbb"/>
+          </lrm_resource>
+          <lrm_resource id="redis-bundle-podman-0" type="podman" class="ocf" provider="heartbeat">
+            <lrm_rsc_op id="redis-bundle-podman-0_last_0" operation_key="redis-bundle-podman-0_start_0" operation="start" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="164:91:0:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:0;164:91:0:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="controller-2" call-id="156" rc-code="0" op-status="0" interval="0" last-rc-change="1605578208" last-run="1605578208" exec-time="2181" queue-time="0" op-digest="3a642d99da31dbe69ff109f23770eae7"/>
+            <lrm_rsc_op id="redis-bundle-podman-0_monitor_60000" operation_key="redis-bundle-podman-0_monitor_60000" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="165:91:0:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:0;165:91:0:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="controller-2" call-id="157" rc-code="0" op-status="0" interval="60000" last-rc-change="1605578210" exec-time="385" queue-time="0" op-digest="fc3699b8bbc79807371dc4b30e5291b9"/>
+          </lrm_resource>
+          <lrm_resource id="redis-bundle-podman-1" type="podman" class="ocf" provider="heartbeat">
+            <lrm_rsc_op id="redis-bundle-podman-1_last_0" operation_key="redis-bundle-podman-1_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="92:75:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:7;92:75:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="controller-2" call-id="17" rc-code="7" op-status="0" interval="0" last-rc-change="1605577891" last-run="1605577891" exec-time="196" queue-time="0" op-digest="e420400d891bac146914bebbc10a0e8f"/>
+          </lrm_resource>
+          <lrm_resource id="redis-bundle-podman-2" type="podman" class="ocf" provider="heartbeat">
+            <lrm_rsc_op id="redis-bundle-podman-2_last_0" operation_key="redis-bundle-podman-2_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="94:75:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:7;94:75:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="controller-2" call-id="22" rc-code="7" op-status="0" interval="0" last-rc-change="1605577891" last-run="1605577891" exec-time="127" queue-time="0" op-digest="3e7e379da7a20fdf94fb7950e0711dda"/>
+          </lrm_resource>
+          <lrm_resource id="nova-evacuate" type="NovaEvacuate" class="ocf" provider="openstack">
+            <lrm_rsc_op id="nova-evacuate_last_0" operation_key="nova-evacuate_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="113:75:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:7;113:75:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="controller-2" call-id="82" rc-code="7" op-status="0" interval="0" last-rc-change="1605577891" last-run="1605577891" exec-time="71" queue-time="0" op-digest="8c367ebe0409afc3686f512ae68b1ee4" op-secure-params="  password  " op-secure-digest="f89eeb9446a58fb145857e36589bd2ee"/>
+          </lrm_resource>
+          <lrm_resource id="ip-172.17.4.150" type="IPaddr2" class="ocf" provider="heartbeat">
+            <lrm_rsc_op id="ip-172.17.4.150_last_0" operation_key="ip-172.17.4.150_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="101:75:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:7;101:75:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="controller-2" call-id="47" rc-code="7" op-status="0" interval="0" last-rc-change="1605577891" last-run="1605577891" exec-time="162" queue-time="0" op-digest="ceddf61079b702fdbc8d52e09f642c32"/>
+          </lrm_resource>
+          <lrm_resource id="ip-172.17.1.150" type="IPaddr2" class="ocf" provider="heartbeat">
+            <lrm_rsc_op id="ip-172.17.1.150_last_0" operation_key="ip-172.17.1.150_start_0" operation="start" crm-debug-origin="do_update_resource" crm_feature_set="3.6.1" transition-key="193:1431:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;193:1431:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="controller-2" call-id="197" rc-code="0" op-status="0" interval="0" last-rc-change="1605590033" last-run="1605590033" exec-time="128" queue-time="0" op-digest="f5516e4349a3b19d31637236055aea39"/>
+            <lrm_rsc_op id="ip-172.17.1.150_monitor_10000" operation_key="ip-172.17.1.150_monitor_10000" operation="monitor" crm-debug-origin="do_update_resource" crm_feature_set="3.6.1" transition-key="194:1431:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;194:1431:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="controller-2" call-id="199" rc-code="0" op-status="0" interval="10000" last-rc-change="1605590033" exec-time="119" queue-time="0" op-digest="3fee32c661ff815a1e2fd3737c0d3b28"/>
+          </lrm_resource>
+          <lrm_resource id="ip-10.0.0.150" type="IPaddr2" class="ocf" provider="heartbeat">
+            <lrm_rsc_op id="ip-10.0.0.150_last_0" operation_key="ip-10.0.0.150_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="97:75:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:7;97:75:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="controller-2" call-id="31" rc-code="7" op-status="0" interval="0" last-rc-change="1605577891" last-run="1605577891" exec-time="232" queue-time="0" op-digest="27269224203b312ccfa3f15e7df0fe2a"/>
+          </lrm_resource>
+          <lrm_resource id="stonith-fence_ipmilan-5254007b7920" type="fence_ipmilan" class="stonith">
+            <lrm_rsc_op id="stonith-fence_ipmilan-5254007b7920_last_0" operation_key="stonith-fence_ipmilan-5254007b7920_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="87:76:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:7;87:76:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="controller-2" call-id="110" rc-code="7" op-status="0" interval="0" last-rc-change="1605577899" last-run="1605577899" exec-time="0" queue-time="0" op-digest="292cf370c85404b918bcf8312056ca36" op-secure-params="  password passwd  " op-secure-digest="78d581355e684910edb664ba961cf50d"/>
+          </lrm_resource>
+          <lrm_resource id="stonith-fence_ipmilan-525400642894" type="fence_ipmilan" class="stonith">
+            <lrm_rsc_op id="stonith-fence_ipmilan-525400642894_last_0" operation_key="stonith-fence_ipmilan-525400642894_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="88:76:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:7;88:76:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="controller-2" call-id="114" rc-code="7" op-status="0" interval="0" last-rc-change="1605577899" last-run="1605577899" exec-time="0" queue-time="0" op-digest="1779ddd0abf841e7e9914f08b32da1a6" op-secure-params="  password passwd  " op-secure-digest="920d017ea35856c843a6bbf9d9832105"/>
+          </lrm_resource>
+          <lrm_resource id="ip-172.17.1.151" type="IPaddr2" class="ocf" provider="heartbeat">
+            <lrm_rsc_op id="ip-172.17.1.151_last_0" operation_key="ip-172.17.1.151_stop_0" operation="stop" crm-debug-origin="do_update_resource" crm_feature_set="3.4.1" transition-key="195:1409:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;195:1409:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="controller-2" call-id="191" rc-code="0" op-status="0" interval="0" last-rc-change="1605589892" last-run="1605589892" exec-time="121" queue-time="0" op-digest="d4c6ed079c2999519474018fa68a03d5"/>
+            <lrm_rsc_op id="ip-172.17.1.151_monitor_10000" operation_key="ip-172.17.1.151_monitor_10000" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="223:106:0:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:0;223:106:0:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="controller-2" call-id="175" rc-code="0" op-status="0" interval="10000" last-rc-change="1605578546" exec-time="69" queue-time="0" op-digest="405d84871d775a5d320ccc9243b781ac"/>
+          </lrm_resource>
+          <lrm_resource id="ip-192.168.24.150" type="IPaddr2" class="ocf" provider="heartbeat">
+            <lrm_rsc_op id="ip-192.168.24.150_last_0" operation_key="ip-192.168.24.150_start_0" operation="start" crm-debug-origin="do_update_resource" crm_feature_set="3.6.1" transition-key="187:1431:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;187:1431:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="controller-2" call-id="196" rc-code="0" op-status="0" interval="0" last-rc-change="1605590033" last-run="1605590033" exec-time="125" queue-time="0" op-digest="f3f5413013b2c4ab476074cb9fcfa99a"/>
+            <lrm_rsc_op id="ip-192.168.24.150_monitor_10000" operation_key="ip-192.168.24.150_monitor_10000" operation="monitor" crm-debug-origin="do_update_resource" crm_feature_set="3.6.1" transition-key="188:1431:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;188:1431:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="controller-2" call-id="198" rc-code="0" op-status="0" interval="10000" last-rc-change="1605590033" exec-time="120" queue-time="0" op-digest="9b7b1c208d05ff44599d638e031f9492"/>
+          </lrm_resource>
+          <lrm_resource id="stonith-fence_ipmilan-525400d5382b" type="fence_ipmilan" class="stonith">
+            <lrm_rsc_op id="stonith-fence_ipmilan-525400d5382b_last_0" operation_key="stonith-fence_ipmilan-525400d5382b_stop_0" operation="stop" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="315:98:0:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:0;315:98:0:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="controller-2" call-id="167" rc-code="0" op-status="0" interval="0" last-rc-change="1605578295" last-run="1605578295" exec-time="1" queue-time="0" op-digest="03339c868b4e990d1eee35ee0d8fd924"/>
+          </lrm_resource>
+          <lrm_resource id="stonith-fence_ipmilan-525400ffc780" type="fence_ipmilan" class="stonith">
+            <lrm_rsc_op id="stonith-fence_ipmilan-525400ffc780_last_0" operation_key="stonith-fence_ipmilan-525400ffc780_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="91:76:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:7;91:76:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="controller-2" call-id="126" rc-code="7" op-status="0" interval="0" last-rc-change="1605577899" last-run="1605577899" exec-time="0" queue-time="0" op-digest="d5b19f9189ef5c23bf62dd041a8a1cfd" op-secure-params="  password passwd  " op-secure-digest="4415a1b3c8ddcc34bc954c9b603fc36a"/>
+          </lrm_resource>
+          <lrm_resource id="redis-bundle-0" type="remote" class="ocf" provider="pacemaker" container="redis-bundle-podman-0">
+            <lrm_rsc_op id="redis-bundle-0_last_0" operation_key="redis-bundle-0_start_0" operation="start" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="166:91:0:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:0;166:91:0:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="controller-2" call-id="23" rc-code="0" op-status="0" interval="0" last-rc-change="1605578210" last-run="1605578210" exec-time="0" queue-time="0" op-digest="f325849fbffe2e62970eb201a50da9f3" op-force-restart="  server  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
+            <lrm_rsc_op id="redis-bundle-0_monitor_30000" operation_key="redis-bundle-0_monitor_30000" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="170:92:0:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:0;170:92:0:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="controller-2" call-id="24" rc-code="0" op-status="0" interval="30000" last-rc-change="1605578211" exec-time="0" queue-time="0" op-digest="1edf361604603a3dc6ccd940ce449f27"/>
+          </lrm_resource>
+          <lrm_resource id="redis-bundle-1" type="remote" class="ocf" provider="pacemaker" container="redis-bundle-podman-1">
+            <lrm_rsc_op id="redis-bundle-1_last_0" operation_key="redis-bundle-1_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="93:75:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:7;93:75:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="controller-2" call-id="9" rc-code="7" op-status="0" interval="0" last-rc-change="1605577891" last-run="1605577891" exec-time="0" queue-time="0" op-digest="dd323696d6c8ed14cb71914c411664c9" op-force-restart="  server  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
+          </lrm_resource>
+          <lrm_resource id="ip-172.17.3.150" type="IPaddr2" class="ocf" provider="heartbeat">
+            <lrm_rsc_op id="ip-172.17.3.150_last_0" operation_key="ip-172.17.3.150_stop_0" operation="stop" crm-debug-origin="do_update_resource" crm_feature_set="3.4.1" transition-key="197:1409:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;197:1409:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="controller-2" call-id="193" rc-code="0" op-status="0" interval="0" last-rc-change="1605589892" last-run="1605589892" exec-time="131" queue-time="0" op-digest="b76c5030812250538293fcb8b4d1a2de"/>
+            <lrm_rsc_op id="ip-172.17.3.150_monitor_10000" operation_key="ip-172.17.3.150_monitor_10000" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="227:107:0:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:0;227:107:0:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="controller-2" call-id="177" rc-code="0" op-status="0" interval="10000" last-rc-change="1605578549" exec-time="48" queue-time="0" op-digest="184de914c723e1f7046d4cae74356047"/>
+          </lrm_resource>
+          <lrm_resource id="rabbitmq-bundle-1" type="remote" class="ocf" provider="pacemaker" container="rabbitmq-bundle-podman-1">
+            <lrm_rsc_op id="rabbitmq-bundle-1_last_0" operation_key="rabbitmq-bundle-1_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="88:75:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:7;88:75:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="controller-2" call-id="7" rc-code="7" op-status="0" interval="0" last-rc-change="1605577891" last-run="1605577891" exec-time="0" queue-time="0" op-digest="e25f0ff041ed91bee8ee197d0ce2aebd" op-force-restart="  server  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
+          </lrm_resource>
+          <lrm_resource id="rabbitmq-bundle-2" type="remote" class="ocf" provider="pacemaker" container="rabbitmq-bundle-podman-2">
+            <lrm_rsc_op id="rabbitmq-bundle-2_last_0" operation_key="rabbitmq-bundle-2_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="89:75:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:7;89:75:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="controller-2" call-id="8" rc-code="7" op-status="0" interval="0" last-rc-change="1605577891" last-run="1605577891" exec-time="0" queue-time="0" op-digest="593e15353c64e73e2efe61415c7dd44b" op-force-restart="  server  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
+          </lrm_resource>
+          <lrm_resource id="ovn-dbs-bundle-podman-2" type="podman" class="ocf" provider="heartbeat">
+            <lrm_rsc_op id="ovn-dbs-bundle-podman-2_last_0" operation_key="ovn-dbs-bundle-podman-2_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="109:75:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:7;109:75:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="controller-2" call-id="73" rc-code="7" op-status="0" interval="0" last-rc-change="1605577891" last-run="1605577891" exec-time="172" queue-time="0" op-digest="f4c7f36e22e794b7a60cd85e50c1065c"/>
+          </lrm_resource>
+          <lrm_resource id="ovn-dbs-bundle-podman-1" type="podman" class="ocf" provider="heartbeat">
+            <lrm_rsc_op id="ovn-dbs-bundle-podman-1_last_0" operation_key="ovn-dbs-bundle-podman-1_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="107:75:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:7;107:75:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="controller-2" call-id="68" rc-code="7" op-status="0" interval="0" last-rc-change="1605577891" last-run="1605577891" exec-time="308" queue-time="0" op-digest="43d92ad90f1a0eba7e80add98f7eb342"/>
+          </lrm_resource>
+          <lrm_resource id="stonith-fence_ipmilan-525400bb150b" type="fence_ipmilan" class="stonith">
+            <lrm_rsc_op id="stonith-fence_ipmilan-525400bb150b_last_0" operation_key="stonith-fence_ipmilan-525400bb150b_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="90:76:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:7;90:76:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="controller-2" call-id="122" rc-code="7" op-status="0" interval="0" last-rc-change="1605577899" last-run="1605577899" exec-time="0" queue-time="0" op-digest="7069d4bd259f26c8e756d0cfe8359ac1" op-secure-params="  password passwd  " op-secure-digest="d7b4bc578fd079201c7ec804f2b8862f"/>
+          </lrm_resource>
+          <lrm_resource id="redis-bundle-2" type="remote" class="ocf" provider="pacemaker" container="redis-bundle-podman-2">
+            <lrm_rsc_op id="redis-bundle-2_last_0" operation_key="redis-bundle-2_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="95:75:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:7;95:75:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="controller-2" call-id="10" rc-code="7" op-status="0" interval="0" last-rc-change="1605577891" last-run="1605577891" exec-time="0" queue-time="0" op-digest="cd98602d6f977947327050913302f861" op-force-restart="  server  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
+          </lrm_resource>
+          <lrm_resource id="stonith-fence_ipmilan-5254001f5f3c" type="fence_ipmilan" class="stonith">
+            <lrm_rsc_op id="stonith-fence_ipmilan-5254001f5f3c_last_0" operation_key="stonith-fence_ipmilan-5254001f5f3c_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="85:76:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:7;85:76:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="controller-2" call-id="102" rc-code="7" op-status="0" interval="0" last-rc-change="1605577899" last-run="1605577899" exec-time="0" queue-time="0" op-digest="859262e1216f50b739b9ff444e605375" op-secure-params="  password passwd  " op-secure-digest="95ad05342de9eab61bee697cec0a352e"/>
+          </lrm_resource>
+          <lrm_resource id="ovn-dbs-bundle-podman-0" type="podman" class="ocf" provider="heartbeat">
+            <lrm_rsc_op id="ovn-dbs-bundle-podman-0_last_0" operation_key="ovn-dbs-bundle-podman-0_start_0" operation="start" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="239:98:0:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:0;239:98:0:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="controller-2" call-id="168" rc-code="0" op-status="0" interval="0" last-rc-change="1605578295" last-run="1605578295" exec-time="2084" queue-time="0" op-digest="365f2d37acd7cd6cf9e11d4d5c8bed89"/>
+            <lrm_rsc_op id="ovn-dbs-bundle-podman-0_monitor_60000" operation_key="ovn-dbs-bundle-podman-0_monitor_60000" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="240:98:0:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:0;240:98:0:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="controller-2" call-id="169" rc-code="0" op-status="0" interval="60000" last-rc-change="1605578297" exec-time="480" queue-time="0" op-digest="a29bb6c53d1eb049641b84aa940b8c3e"/>
+          </lrm_resource>
+          <lrm_resource id="stonith-fence_ipmilan-525400e10267" type="fence_ipmilan" class="stonith">
+            <lrm_rsc_op id="stonith-fence_ipmilan-525400e10267_last_0" operation_key="stonith-fence_ipmilan-525400e10267_stop_0" operation="stop" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="325:78:0:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:0;325:78:0:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="controller-2" call-id="142" rc-code="0" op-status="0" interval="0" last-rc-change="1605577906" last-run="1605577906" exec-time="0" queue-time="0" op-digest="ad5ccd62a43794b237bdd30ae0887630"/>
+          </lrm_resource>
+          <lrm_resource id="stonith-fence_ipmilan-5254003f88b4" type="fence_ipmilan" class="stonith">
+            <lrm_rsc_op id="stonith-fence_ipmilan-5254003f88b4_last_0" operation_key="stonith-fence_ipmilan-5254003f88b4_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="86:76:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:7;86:76:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="controller-2" call-id="106" rc-code="7" op-status="0" interval="0" last-rc-change="1605577899" last-run="1605577899" exec-time="0" queue-time="0" op-digest="e4ae59cf662c224d9817c0d0331d50ba" op-secure-params="  password passwd  " op-secure-digest="9b06848b37b8bbd582e7cd4733987493"/>
+          </lrm_resource>
+          <lrm_resource id="rabbitmq-bundle-0" type="remote" class="ocf" provider="pacemaker" container="rabbitmq-bundle-podman-0">
+            <lrm_rsc_op id="rabbitmq-bundle-0_last_0" operation_key="rabbitmq-bundle-0_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="87:75:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:7;87:75:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="controller-2" call-id="6" rc-code="7" op-status="0" interval="0" last-rc-change="1605577891" last-run="1605577891" exec-time="0" queue-time="0" op-digest="a41ad5f9625676395b163a06987de2d6" op-force-restart="  server  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
+          </lrm_resource>
+          <lrm_resource id="galera-bundle-0" type="remote" class="ocf" provider="pacemaker" container="galera-bundle-podman-0">
+            <lrm_rsc_op id="galera-bundle-0_last_0" operation_key="galera-bundle-0_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="84:75:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:7;84:75:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="controller-2" call-id="3" rc-code="7" op-status="0" interval="0" last-rc-change="1605577891" last-run="1605577891" exec-time="0" queue-time="0" op-digest="dbc6b52d45a75a0b041af92265b22f9e" op-force-restart="  server  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
+          </lrm_resource>
+          <lrm_resource id="galera-bundle-1" type="remote" class="ocf" provider="pacemaker" container="galera-bundle-podman-1">
+            <lrm_rsc_op id="galera-bundle-1_last_0" operation_key="galera-bundle-1_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="85:75:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:7;85:75:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="controller-2" call-id="4" rc-code="7" op-status="0" interval="0" last-rc-change="1605577891" last-run="1605577891" exec-time="0" queue-time="0" op-digest="f6e3b46e18b24f6e1cca9639ec9b7c41" op-force-restart="  server  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
+          </lrm_resource>
+          <lrm_resource id="galera-bundle-2" type="remote" class="ocf" provider="pacemaker" container="galera-bundle-podman-2">
+            <lrm_rsc_op id="galera-bundle-2_last_0" operation_key="galera-bundle-2_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="86:75:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:7;86:75:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="controller-2" call-id="5" rc-code="7" op-status="0" interval="0" last-rc-change="1605577891" last-run="1605577891" exec-time="0" queue-time="0" op-digest="bf7cf9acd053cee24dc3401862009e40" op-force-restart="  server  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
+          </lrm_resource>
+          <lrm_resource id="stonith-fence_ipmilan-52540033df9c" type="fence_ipmilan" class="stonith">
+            <lrm_rsc_op id="stonith-fence_ipmilan-52540033df9c_last_0" operation_key="stonith-fence_ipmilan-52540033df9c_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="84:76:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:7;84:76:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="controller-2" call-id="98" rc-code="7" op-status="0" interval="0" last-rc-change="1605577899" last-run="1605577899" exec-time="0" queue-time="0" op-digest="b0341087994098c62f29bd703448ffed" op-secure-params="  password passwd  " op-secure-digest="4df029b6ad27db68abf3c71606f906ea"/>
+          </lrm_resource>
+          <lrm_resource id="haproxy-bundle-podman-0" type="podman" class="ocf" provider="heartbeat">
+            <lrm_rsc_op id="haproxy-bundle-podman-0_last_0" operation_key="haproxy-bundle-podman-0_start_0" operation="start" crm-debug-origin="do_update_resource" crm_feature_set="3.6.1" transition-key="199:1431:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;199:1431:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="controller-2" call-id="200" rc-code="0" op-status="0" interval="0" last-rc-change="1605590033" last-run="1605590033" exec-time="2466" queue-time="0" op-digest="177c4afedacb80bed704490c635b2c89"/>
+            <lrm_rsc_op id="haproxy-bundle-podman-0_monitor_60000" operation_key="haproxy-bundle-podman-0_monitor_60000" operation="monitor" crm-debug-origin="do_update_resource" crm_feature_set="3.6.1" transition-key="200:1431:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;200:1431:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="controller-2" call-id="201" rc-code="0" op-status="0" interval="60000" last-rc-change="1605590036" exec-time="631" queue-time="0" op-digest="dd89f7e6287cd864e46a8f38365e9e6f"/>
+          </lrm_resource>
+          <lrm_resource id="haproxy-bundle-podman-1" type="podman" class="ocf" provider="heartbeat">
+            <lrm_rsc_op id="haproxy-bundle-podman-1_last_0" operation_key="haproxy-bundle-podman-1_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="103:75:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:7;103:75:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="controller-2" call-id="56" rc-code="7" op-status="0" interval="0" last-rc-change="1605577891" last-run="1605577891" exec-time="203" queue-time="0" op-digest="177c4afedacb80bed704490c635b2c89"/>
+          </lrm_resource>
+          <lrm_resource id="haproxy-bundle-podman-2" type="podman" class="ocf" provider="heartbeat">
+            <lrm_rsc_op id="haproxy-bundle-podman-2_last_0" operation_key="haproxy-bundle-podman-2_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="104:75:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:7;104:75:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="controller-2" call-id="60" rc-code="7" op-status="0" interval="0" last-rc-change="1605577891" last-run="1605577891" exec-time="138" queue-time="0" op-digest="177c4afedacb80bed704490c635b2c89"/>
+          </lrm_resource>
+          <lrm_resource id="compute-0" type="remote" class="ocf" provider="pacemaker">
+            <lrm_rsc_op id="compute-0_last_0" operation_key="compute-0_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="82:75:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:7;82:75:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="controller-2" call-id="1" rc-code="7" op-status="0" interval="0" last-rc-change="1605577891" last-run="1605577891" exec-time="0" queue-time="0" op-digest="94f4ed47fadb94317ef0f8959942f09e" op-force-restart="  server  " op-restart-digest="94f4ed47fadb94317ef0f8959942f09e"/>
+          </lrm_resource>
+          <lrm_resource id="compute-1" type="remote" class="ocf" provider="pacemaker">
+            <lrm_rsc_op id="compute-1_last_0" operation_key="compute-1_stop_0" operation="stop" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="92:191:0:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:0;92:191:0:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="controller-2" call-id="30" rc-code="0" op-status="0" interval="0" last-rc-change="1605580667" last-run="1605580667" exec-time="0" queue-time="0" op-digest="4a9ef452428322fd1d0d0c44a6f176fd"/>
+          </lrm_resource>
+          <lrm_resource id="stonith-fence_compute-fence-nova" type="fence_compute" class="stonith">
+            <lrm_rsc_op id="stonith-fence_compute-fence-nova_last_0" operation_key="stonith-fence_compute-fence-nova_stop_0" operation="stop" crm-debug-origin="do_update_resource" crm_feature_set="3.4.1" transition-key="28:1430:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;28:1430:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="controller-2" call-id="195" rc-code="0" op-status="0" interval="0" last-rc-change="1605590030" last-run="1605590030" exec-time="0" queue-time="0" op-digest="04758bda751b3d5aa6c380933a6cf696" op-secure-params="  password passwd  " op-secure-digest="e0992836f72674b3c1b56e40d152bdf9"/>
+            <lrm_rsc_op id="stonith-fence_compute-fence-nova_last_failure_0" operation_key="stonith-fence_compute-fence-nova_start_0" operation="start" crm-debug-origin="do_update_resource" crm_feature_set="3.6.1" transition-key="246:1428:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:1;246:1428:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="controller-2" call-id="194" rc-code="1" op-status="0" interval="0" last-rc-change="1605590022" last-run="1605590022" exec-time="7165" queue-time="0" op-digest="04758bda751b3d5aa6c380933a6cf696"/>
+          </lrm_resource>
+          <lrm_resource id="stonith-fence_ipmilan-5254009cb549" type="fence_ipmilan" class="stonith">
+            <lrm_rsc_op id="stonith-fence_ipmilan-5254009cb549_last_0" operation_key="stonith-fence_ipmilan-5254009cb549_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="92:76:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:7;92:76:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="controller-2" call-id="130" rc-code="7" op-status="0" interval="0" last-rc-change="1605577899" last-run="1605577899" exec-time="0" queue-time="0" op-digest="da530999b2b0c233366dbd0dab07c65f" op-secure-params="  password passwd  " op-secure-digest="6153a0210bf9ca00a096fe7a933b3ca6"/>
+          </lrm_resource>
+          <lrm_resource id="ip-172.17.1.57" type="IPaddr2" class="ocf" provider="heartbeat">
+            <lrm_rsc_op id="ip-172.17.1.57_last_0" operation_key="ip-172.17.1.57_start_0" operation="start" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.1" transition-key="293:1367:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;293:1367:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="controller-2" call-id="184" rc-code="0" op-status="0" interval="0" last-rc-change="1605589346" last-run="1605589346" exec-time="117" queue-time="0" op-digest="f30f64b9840ab79f20b7417440873104"/>
+            <lrm_rsc_op id="ip-172.17.1.57_monitor_10000" operation_key="ip-172.17.1.57_monitor_10000" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.1" transition-key="294:1367:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;294:1367:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="controller-2" call-id="185" rc-code="0" op-status="0" interval="10000" last-rc-change="1605589346" exec-time="56" queue-time="0" op-digest="695674302e314c7dad1dc65ed10227f0"/>
+          </lrm_resource>
+          <lrm_resource id="ovn-dbs-bundle-1" type="remote" class="ocf" provider="pacemaker" container="ovn-dbs-bundle-podman-1">
+            <lrm_rsc_op id="ovn-dbs-bundle-1_last_0" operation_key="ovn-dbs-bundle-1_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="108:75:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:7;108:75:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="controller-2" call-id="11" rc-code="7" op-status="0" interval="0" last-rc-change="1605577891" last-run="1605577891" exec-time="0" queue-time="0" op-digest="d00e87492de6b83a85450cd667db2a88" op-force-restart="  server  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
+          </lrm_resource>
+          <lrm_resource id="stonith-fence_ipmilan-525400dc0f81" type="fence_ipmilan" class="stonith">
+            <lrm_rsc_op id="stonith-fence_ipmilan-525400dc0f81_last_0" operation_key="stonith-fence_ipmilan-525400dc0f81_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="94:76:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" transition-magic="0:7;94:76:7:7e027c85-51d6-4940-bdb3-ff61ef0e6b11" exit-reason="" on_node="controller-2" call-id="138" rc-code="7" op-status="0" interval="0" last-rc-change="1605577899" last-run="1605577899" exec-time="0" queue-time="0" op-digest="baa6fc182a42d0a5173739535c7c67fe" op-secure-params="  password passwd  " op-secure-digest="3f25f023614ece56826bc3313a929fd4"/>
+          </lrm_resource>
+        </lrm_resources>
+      </lrm>
+    </node_state>
+    <node_state id="8" uname="messaging-1" in_ccm="true" crmd="online" join="member" expected="member" crm-debug-origin="do_update_resource">
+      <transient_attributes id="8">
+        <instance_attributes id="status-8">
+          <nvpair id="status-8-.node-unfenced" name="#node-unfenced" value="1605584085"/>
+          <nvpair id="status-8-rmq-node-attr-rabbitmq" name="rmq-node-attr-rabbitmq" value="rabbit@messaging-1"/>
+          <nvpair id="status-8-fail-count-stonith-fence_compute-fence-nova.start_0" name="fail-count-stonith-fence_compute-fence-nova#start_0" value="INFINITY"/>
+          <nvpair id="status-8-last-failure-stonith-fence_compute-fence-nova.start_0" name="last-failure-stonith-fence_compute-fence-nova#start_0" value="1605589997"/>
+        </instance_attributes>
+      </transient_attributes>
+      <lrm id="8">
+        <lrm_resources>
+          <lrm_resource id="rabbitmq-bundle-1" type="remote" class="ocf" provider="pacemaker" container="rabbitmq-bundle-podman-1">
+            <lrm_rsc_op id="rabbitmq-bundle-1_last_0" operation_key="rabbitmq-bundle-1_start_0" operation="start" crm-debug-origin="do_update_resource" crm_feature_set="3.6.1" transition-key="107:1405:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;107:1405:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="messaging-1" call-id="21" rc-code="0" op-status="0" interval="0" last-rc-change="1605589822" last-run="1605589822" exec-time="0" queue-time="0" op-digest="e25f0ff041ed91bee8ee197d0ce2aebd" op-force-restart="  server  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
+            <lrm_rsc_op id="rabbitmq-bundle-1_monitor_30000" operation_key="rabbitmq-bundle-1_monitor_30000" operation="monitor" crm-debug-origin="do_update_resource" crm_feature_set="3.6.1" transition-key="111:1406:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;111:1406:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="messaging-1" call-id="22" rc-code="0" op-status="0" interval="30000" last-rc-change="1605589823" exec-time="0" queue-time="0" op-digest="c41d66ad65c8b35d2e9b3ba96602caa1"/>
+          </lrm_resource>
+          <lrm_resource id="rabbitmq-bundle-2" type="remote" class="ocf" provider="pacemaker" container="rabbitmq-bundle-podman-2">
+            <lrm_rsc_op id="rabbitmq-bundle-2_last_0" operation_key="rabbitmq-bundle-2_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.1" transition-key="97:2:7:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:7;97:2:7:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="messaging-1" call-id="7" rc-code="7" op-status="0" interval="0" last-rc-change="1605584081" last-run="1605584081" exec-time="0" queue-time="0" op-digest="593e15353c64e73e2efe61415c7dd44b" op-force-restart="  server  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
+          </lrm_resource>
+          <lrm_resource id="stonith-fence_ipmilan-525400642894" type="fence_ipmilan" class="stonith">
+            <lrm_rsc_op id="stonith-fence_ipmilan-525400642894_last_0" operation_key="stonith-fence_ipmilan-525400642894_stop_0" operation="stop" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.1" transition-key="317:1312:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;317:1312:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="messaging-1" call-id="111" rc-code="0" op-status="0" interval="0" last-rc-change="1605589292" last-run="1605589292" exec-time="1" queue-time="0" op-digest="1779ddd0abf841e7e9914f08b32da1a6"/>
+          </lrm_resource>
+          <lrm_resource id="stonith-fence_ipmilan-525400e10267" type="fence_ipmilan" class="stonith">
+            <lrm_rsc_op id="stonith-fence_ipmilan-525400e10267_last_0" operation_key="stonith-fence_ipmilan-525400e10267_start_0" operation="start" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.1" transition-key="320:1317:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;320:1317:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="messaging-1" call-id="114" rc-code="0" op-status="0" interval="0" last-rc-change="1605589307" last-run="1605589307" exec-time="419" queue-time="0" op-digest="ad5ccd62a43794b237bdd30ae0887630" op-secure-params="  password passwd  " op-secure-digest="9fbed2700250a8fd49b45f72c08d5d17"/>
+            <lrm_rsc_op id="stonith-fence_ipmilan-525400e10267_monitor_60000" operation_key="stonith-fence_ipmilan-525400e10267_monitor_60000" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.1" transition-key="326:1318:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;326:1318:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="messaging-1" call-id="115" rc-code="0" op-status="0" interval="60000" last-rc-change="1605589310" exec-time="456" queue-time="0" op-digest="3c057487f3d9abe506e2971673769b29" op-secure-params="  password passwd  " op-secure-digest="9fbed2700250a8fd49b45f72c08d5d17"/>
+          </lrm_resource>
+          <lrm_resource id="stonith-fence_ipmilan-525400d5382b" type="fence_ipmilan" class="stonith">
+            <lrm_rsc_op id="stonith-fence_ipmilan-525400d5382b_last_0" operation_key="stonith-fence_ipmilan-525400d5382b_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.1" transition-key="89:3:7:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:7;89:3:7:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="messaging-1" call-id="62" rc-code="7" op-status="0" interval="0" last-rc-change="1605584089" last-run="1605584089" exec-time="0" queue-time="0" op-digest="03339c868b4e990d1eee35ee0d8fd924" op-secure-params="  password passwd  " op-secure-digest="d80496ebdfcec16ae6f6a8217f6c5c21"/>
+          </lrm_resource>
+          <lrm_resource id="compute-0" type="remote" class="ocf" provider="pacemaker">
+            <lrm_rsc_op id="compute-0_last_0" operation_key="compute-0_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.1" transition-key="87:2:7:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:7;87:2:7:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="messaging-1" call-id="1" rc-code="7" op-status="0" interval="0" last-rc-change="1605584081" last-run="1605584081" exec-time="0" queue-time="0" op-digest="94f4ed47fadb94317ef0f8959942f09e" op-force-restart="  server  " op-restart-digest="94f4ed47fadb94317ef0f8959942f09e"/>
+          </lrm_resource>
+          <lrm_resource id="compute-1" type="remote" class="ocf" provider="pacemaker">
+            <lrm_rsc_op id="compute-1_last_0" operation_key="compute-1_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.1" transition-key="88:2:7:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:7;88:2:7:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="messaging-1" call-id="2" rc-code="7" op-status="0" interval="0" last-rc-change="1605584081" last-run="1605584081" exec-time="0" queue-time="0" op-digest="4a9ef452428322fd1d0d0c44a6f176fd" op-force-restart="  server  " op-restart-digest="4a9ef452428322fd1d0d0c44a6f176fd"/>
+          </lrm_resource>
+          <lrm_resource id="stonith-fence_ipmilan-5254007b7920" type="fence_ipmilan" class="stonith">
+            <lrm_rsc_op id="stonith-fence_ipmilan-5254007b7920_last_0" operation_key="stonith-fence_ipmilan-5254007b7920_start_0" operation="start" crm-debug-origin="do_update_resource" crm_feature_set="3.6.1" transition-key="271:1422:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;271:1422:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="messaging-1" call-id="134" rc-code="0" op-status="0" interval="0" last-rc-change="1605589997" last-run="1605589997" exec-time="426" queue-time="0" op-digest="292cf370c85404b918bcf8312056ca36" op-secure-params="  password passwd  " op-secure-digest="78d581355e684910edb664ba961cf50d"/>
+            <lrm_rsc_op id="stonith-fence_ipmilan-5254007b7920_monitor_60000" operation_key="stonith-fence_ipmilan-5254007b7920_monitor_60000" operation="monitor" crm-debug-origin="do_update_resource" crm_feature_set="3.6.1" transition-key="273:1422:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;273:1422:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="messaging-1" call-id="135" rc-code="0" op-status="0" interval="60000" last-rc-change="1605589997" exec-time="378" queue-time="0" op-digest="91bc9c45f4cca48c0c30614d0126a670" op-secure-params="  password passwd  " op-secure-digest="78d581355e684910edb664ba961cf50d"/>
+          </lrm_resource>
+          <lrm_resource id="stonith-fence_ipmilan-525400ffc780" type="fence_ipmilan" class="stonith">
+            <lrm_rsc_op id="stonith-fence_ipmilan-525400ffc780_last_0" operation_key="stonith-fence_ipmilan-525400ffc780_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.1" transition-key="91:3:7:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:7;91:3:7:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="messaging-1" call-id="70" rc-code="7" op-status="0" interval="0" last-rc-change="1605584089" last-run="1605584089" exec-time="0" queue-time="0" op-digest="d5b19f9189ef5c23bf62dd041a8a1cfd" op-secure-params="  password passwd  " op-secure-digest="4415a1b3c8ddcc34bc954c9b603fc36a"/>
+          </lrm_resource>
+          <lrm_resource id="stonith-fence_ipmilan-525400bb150b" type="fence_ipmilan" class="stonith">
+            <lrm_rsc_op id="stonith-fence_ipmilan-525400bb150b_last_0" operation_key="stonith-fence_ipmilan-525400bb150b_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.1" transition-key="90:3:7:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:7;90:3:7:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="messaging-1" call-id="66" rc-code="7" op-status="0" interval="0" last-rc-change="1605584089" last-run="1605584089" exec-time="0" queue-time="0" op-digest="7069d4bd259f26c8e756d0cfe8359ac1" op-secure-params="  password passwd  " op-secure-digest="d7b4bc578fd079201c7ec804f2b8862f"/>
+          </lrm_resource>
+          <lrm_resource id="stonith-fence_ipmilan-525400dc0f81" type="fence_ipmilan" class="stonith">
+            <lrm_rsc_op id="stonith-fence_ipmilan-525400dc0f81_last_0" operation_key="stonith-fence_ipmilan-525400dc0f81_stop_0" operation="stop" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.1" transition-key="329:1368:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;329:1368:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="messaging-1" call-id="117" rc-code="0" op-status="0" interval="0" last-rc-change="1605589347" last-run="1605589347" exec-time="10" queue-time="0" op-digest="baa6fc182a42d0a5173739535c7c67fe"/>
+          </lrm_resource>
+          <lrm_resource id="rabbitmq-bundle-podman-0" type="podman" class="ocf" provider="heartbeat">
+            <lrm_rsc_op id="rabbitmq-bundle-podman-0_last_0" operation_key="rabbitmq-bundle-podman-0_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.1" transition-key="92:2:7:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:7;92:2:7:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="messaging-1" call-id="10" rc-code="7" op-status="0" interval="0" last-rc-change="1605584081" last-run="1605584081" exec-time="310" queue-time="0" op-digest="c723fb08ebe660ea9eda34004e84b918"/>
+          </lrm_resource>
+          <lrm_resource id="rabbitmq-bundle-podman-1" type="podman" class="ocf" provider="heartbeat">
+            <lrm_rsc_op id="rabbitmq-bundle-podman-1_last_0" operation_key="rabbitmq-bundle-podman-1_start_0" operation="start" crm-debug-origin="do_update_resource" crm_feature_set="3.6.1" transition-key="99:1404:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;99:1404:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="messaging-1" call-id="128" rc-code="0" op-status="0" interval="0" last-rc-change="1605589818" last-run="1605589818" exec-time="2239" queue-time="0" op-digest="f40d9a7c95e0b92d94aeb7d9bcdab2b4"/>
+            <lrm_rsc_op id="rabbitmq-bundle-podman-1_monitor_60000" operation_key="rabbitmq-bundle-podman-1_monitor_60000" operation="monitor" crm-debug-origin="do_update_resource" crm_feature_set="3.6.1" transition-key="106:1405:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;106:1405:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="messaging-1" call-id="129" rc-code="0" op-status="0" interval="60000" last-rc-change="1605589822" exec-time="479" queue-time="0" op-digest="1f4eff71e530f3fdf8c06ff23bd4b291"/>
+          </lrm_resource>
+          <lrm_resource id="rabbitmq-bundle-podman-2" type="podman" class="ocf" provider="heartbeat">
+            <lrm_rsc_op id="rabbitmq-bundle-podman-2_last_0" operation_key="rabbitmq-bundle-podman-2_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.1" transition-key="96:2:7:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:7;96:2:7:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="messaging-1" call-id="19" rc-code="7" op-status="0" interval="0" last-rc-change="1605584081" last-run="1605584081" exec-time="374" queue-time="0" op-digest="a71af315a5809471ec6879cd2991dc19"/>
+          </lrm_resource>
+          <lrm_resource id="redis-bundle-0" type="remote" class="ocf" provider="pacemaker" container="redis-bundle-podman-0">
+            <lrm_rsc_op id="redis-bundle-0_last_0" operation_key="redis-bundle-0_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.1" transition-key="98:2:7:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:7;98:2:7:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="messaging-1" call-id="8" rc-code="7" op-status="0" interval="0" last-rc-change="1605584081" last-run="1605584081" exec-time="0" queue-time="0" op-digest="f325849fbffe2e62970eb201a50da9f3" op-force-restart="  server  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
+          </lrm_resource>
+          <lrm_resource id="galera-bundle-0" type="remote" class="ocf" provider="pacemaker" container="galera-bundle-podman-0">
+            <lrm_rsc_op id="galera-bundle-0_last_0" operation_key="galera-bundle-0_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.1" transition-key="89:2:7:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:7;89:2:7:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="messaging-1" call-id="3" rc-code="7" op-status="0" interval="0" last-rc-change="1605584081" last-run="1605584081" exec-time="0" queue-time="0" op-digest="dbc6b52d45a75a0b041af92265b22f9e" op-force-restart="  server  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
+          </lrm_resource>
+          <lrm_resource id="galera-bundle-2" type="remote" class="ocf" provider="pacemaker" container="galera-bundle-podman-2">
+            <lrm_rsc_op id="galera-bundle-2_last_0" operation_key="galera-bundle-2_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.1" transition-key="91:2:7:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:7;91:2:7:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="messaging-1" call-id="5" rc-code="7" op-status="0" interval="0" last-rc-change="1605584081" last-run="1605584081" exec-time="0" queue-time="0" op-digest="bf7cf9acd053cee24dc3401862009e40" op-force-restart="  server  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
+          </lrm_resource>
+          <lrm_resource id="redis-bundle-2" type="remote" class="ocf" provider="pacemaker" container="redis-bundle-podman-2">
+            <lrm_rsc_op id="redis-bundle-2_last_0" operation_key="redis-bundle-2_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.1" transition-key="100:2:7:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:7;100:2:7:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="messaging-1" call-id="10" rc-code="7" op-status="0" interval="0" last-rc-change="1605584081" last-run="1605584081" exec-time="0" queue-time="0" op-digest="cd98602d6f977947327050913302f861" op-force-restart="  server  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
+          </lrm_resource>
+          <lrm_resource id="galera-bundle-1" type="remote" class="ocf" provider="pacemaker" container="galera-bundle-podman-1">
+            <lrm_rsc_op id="galera-bundle-1_last_0" operation_key="galera-bundle-1_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.1" transition-key="90:2:7:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:7;90:2:7:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="messaging-1" call-id="4" rc-code="7" op-status="0" interval="0" last-rc-change="1605584081" last-run="1605584081" exec-time="0" queue-time="0" op-digest="f6e3b46e18b24f6e1cca9639ec9b7c41" op-force-restart="  server  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
+          </lrm_resource>
+          <lrm_resource id="ovn-dbs-bundle-0" type="remote" class="ocf" provider="pacemaker" container="ovn-dbs-bundle-podman-0">
+            <lrm_rsc_op id="ovn-dbs-bundle-0_last_0" operation_key="ovn-dbs-bundle-0_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.1" transition-key="101:2:7:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:7;101:2:7:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="messaging-1" call-id="11" rc-code="7" op-status="0" interval="0" last-rc-change="1605584081" last-run="1605584081" exec-time="0" queue-time="0" op-digest="bf04cc8b2becfb29770a97d109ad6c4f" op-force-restart="  server  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
+          </lrm_resource>
+          <lrm_resource id="ovn-dbs-bundle-1" type="remote" class="ocf" provider="pacemaker" container="ovn-dbs-bundle-podman-1">
+            <lrm_rsc_op id="ovn-dbs-bundle-1_last_0" operation_key="ovn-dbs-bundle-1_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.1" transition-key="102:2:7:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:7;102:2:7:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="messaging-1" call-id="12" rc-code="7" op-status="0" interval="0" last-rc-change="1605584081" last-run="1605584081" exec-time="0" queue-time="0" op-digest="d00e87492de6b83a85450cd667db2a88" op-force-restart="  server  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
+          </lrm_resource>
+          <lrm_resource id="redis-bundle-1" type="remote" class="ocf" provider="pacemaker" container="redis-bundle-podman-1">
+            <lrm_rsc_op id="redis-bundle-1_last_0" operation_key="redis-bundle-1_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.1" transition-key="99:2:7:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:7;99:2:7:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="messaging-1" call-id="9" rc-code="7" op-status="0" interval="0" last-rc-change="1605584081" last-run="1605584081" exec-time="0" queue-time="0" op-digest="dd323696d6c8ed14cb71914c411664c9" op-force-restart="  server  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
+          </lrm_resource>
+          <lrm_resource id="stonith-fence_ipmilan-5254009cb549" type="fence_ipmilan" class="stonith">
+            <lrm_rsc_op id="stonith-fence_ipmilan-5254009cb549_last_0" operation_key="stonith-fence_ipmilan-5254009cb549_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.1" transition-key="92:3:7:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:7;92:3:7:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="messaging-1" call-id="74" rc-code="7" op-status="0" interval="0" last-rc-change="1605584089" last-run="1605584089" exec-time="0" queue-time="0" op-digest="da530999b2b0c233366dbd0dab07c65f" op-secure-params="  password passwd  " op-secure-digest="6153a0210bf9ca00a096fe7a933b3ca6"/>
+          </lrm_resource>
+          <lrm_resource id="ovn-dbs-bundle-2" type="remote" class="ocf" provider="pacemaker" container="ovn-dbs-bundle-podman-2">
+            <lrm_rsc_op id="ovn-dbs-bundle-2_last_0" operation_key="ovn-dbs-bundle-2_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.1" transition-key="103:2:7:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:7;103:2:7:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="messaging-1" call-id="13" rc-code="7" op-status="0" interval="0" last-rc-change="1605584081" last-run="1605584081" exec-time="0" queue-time="0" op-digest="015c999adc4143966a5e0ba98e5d74af" op-force-restart="  server  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
+          </lrm_resource>
+          <lrm_resource id="stonith-fence_compute-fence-nova" type="fence_compute" class="stonith">
+            <lrm_rsc_op id="stonith-fence_compute-fence-nova_last_0" operation_key="stonith-fence_compute-fence-nova_stop_0" operation="stop" crm-debug-origin="do_update_resource" crm_feature_set="3.6.1" transition-key="33:1422:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;33:1422:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="messaging-1" call-id="133" rc-code="0" op-status="0" interval="0" last-rc-change="1605589997" last-run="1605589997" exec-time="0" queue-time="0" op-digest="04758bda751b3d5aa6c380933a6cf696" op-secure-params="  password passwd  " op-secure-digest="e0992836f72674b3c1b56e40d152bdf9"/>
+            <lrm_rsc_op id="stonith-fence_compute-fence-nova_last_failure_0" operation_key="stonith-fence_compute-fence-nova_start_0" operation="start" crm-debug-origin="do_update_resource" crm_feature_set="3.6.1" transition-key="246:1420:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:1;246:1420:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="messaging-1" call-id="132" rc-code="1" op-status="0" interval="0" last-rc-change="1605589987" last-run="1605589987" exec-time="9101" queue-time="0" op-digest="04758bda751b3d5aa6c380933a6cf696"/>
+          </lrm_resource>
+          <lrm_resource id="stonith-fence_ipmilan-5254003f88b4" type="fence_ipmilan" class="stonith">
+            <lrm_rsc_op id="stonith-fence_ipmilan-5254003f88b4_last_0" operation_key="stonith-fence_ipmilan-5254003f88b4_stop_0" operation="stop" crm-debug-origin="do_update_resource" crm_feature_set="3.6.1" transition-key="278:1404:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;278:1404:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="messaging-1" call-id="127" rc-code="0" op-status="0" interval="0" last-rc-change="1605589818" last-run="1605589818" exec-time="0" queue-time="0" op-digest="e4ae59cf662c224d9817c0d0331d50ba" op-secure-params="  password passwd  " op-secure-digest="9b06848b37b8bbd582e7cd4733987493"/>
+            <lrm_rsc_op id="stonith-fence_ipmilan-5254003f88b4_monitor_60000" operation_key="stonith-fence_ipmilan-5254003f88b4_monitor_60000" operation="monitor" crm-debug-origin="do_update_resource" crm_feature_set="3.6.1" transition-key="273:1397:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;273:1397:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="messaging-1" call-id="121" rc-code="0" op-status="0" interval="60000" last-rc-change="1605589786" exec-time="448" queue-time="0" op-digest="149734c12b950bda320c528292903d4e" op-secure-params="  password passwd  " op-secure-digest="9b06848b37b8bbd582e7cd4733987493"/>
+          </lrm_resource>
+          <lrm_resource id="stonith-fence_ipmilan-52540033df9c" type="fence_ipmilan" class="stonith">
+            <lrm_rsc_op id="stonith-fence_ipmilan-52540033df9c_last_0" operation_key="stonith-fence_ipmilan-52540033df9c_stop_0" operation="stop" crm-debug-origin="do_update_resource" crm_feature_set="3.6.1" transition-key="275:1396:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;275:1396:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="messaging-1" call-id="119" rc-code="0" op-status="0" interval="0" last-rc-change="1605589779" last-run="1605589779" exec-time="0" queue-time="0" op-digest="b0341087994098c62f29bd703448ffed" op-secure-params="  password passwd  " op-secure-digest="4df029b6ad27db68abf3c71606f906ea"/>
+            <lrm_rsc_op id="stonith-fence_ipmilan-52540033df9c_monitor_60000" operation_key="stonith-fence_ipmilan-52540033df9c_monitor_60000" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.1" transition-key="287:438:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;287:438:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="messaging-1" call-id="109" rc-code="0" op-status="0" interval="60000" last-rc-change="1605586058" exec-time="377" queue-time="0" op-digest="d2962d8811a6e1b86f138b75b779d8c6" op-secure-params="  password passwd  " op-secure-digest="4df029b6ad27db68abf3c71606f906ea"/>
+          </lrm_resource>
+          <lrm_resource id="nova-evacuate" type="NovaEvacuate" class="ocf" provider="openstack">
+            <lrm_rsc_op id="nova-evacuate_last_0" operation_key="nova-evacuate_stop_0" operation="stop" crm-debug-origin="do_update_resource" crm_feature_set="3.6.1" transition-key="257:1420:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;257:1420:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="messaging-1" call-id="131" rc-code="0" op-status="0" interval="0" last-rc-change="1605589987" last-run="1605589987" exec-time="19" queue-time="0" op-digest="8c367ebe0409afc3686f512ae68b1ee4" op-secure-params="  password  " op-secure-digest="f89eeb9446a58fb145857e36589bd2ee"/>
+            <lrm_rsc_op id="nova-evacuate_monitor_10000" operation_key="nova-evacuate_monitor_10000" operation="monitor" crm-debug-origin="do_update_resource" crm_feature_set="3.6.1" transition-key="248:1403:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;248:1403:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="messaging-1" call-id="125" rc-code="0" op-status="0" interval="10000" last-rc-change="1605589816" exec-time="43" queue-time="0" op-digest="5196df8d7b65e77d18a4866499aad276" op-secure-params="  password  " op-secure-digest="f89eeb9446a58fb145857e36589bd2ee"/>
+          </lrm_resource>
+          <lrm_resource id="rabbitmq-bundle-0" type="remote" class="ocf" provider="pacemaker" container="rabbitmq-bundle-podman-0">
+            <lrm_rsc_op id="rabbitmq-bundle-0_last_0" operation_key="rabbitmq-bundle-0_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.1" transition-key="93:2:7:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:7;93:2:7:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="messaging-1" call-id="6" rc-code="7" op-status="0" interval="0" last-rc-change="1605584081" last-run="1605584081" exec-time="0" queue-time="0" op-digest="a41ad5f9625676395b163a06987de2d6" op-force-restart="  server  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
+          </lrm_resource>
+          <lrm_resource id="stonith-fence_ipmilan-5254001f5f3c" type="fence_ipmilan" class="stonith">
+            <lrm_rsc_op id="stonith-fence_ipmilan-5254001f5f3c_last_0" operation_key="stonith-fence_ipmilan-5254001f5f3c_stop_0" operation="stop" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.1" transition-key="292:436:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;292:436:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="messaging-1" call-id="107" rc-code="0" op-status="0" interval="0" last-rc-change="1605586056" last-run="1605586056" exec-time="0" queue-time="0" op-digest="859262e1216f50b739b9ff444e605375"/>
+          </lrm_resource>
+        </lrm_resources>
+      </lrm>
+    </node_state>
+    <node_state id="compute-0" remote_node="true" uname="compute-0" in_ccm="true" crm-debug-origin="do_state_transition">
+      <transient_attributes id="compute-0">
+        <instance_attributes id="status-compute-0">
+          <nvpair id="status-compute-0-.digests-all" name="#digests-all" value="stonith-fence_compute-fence-nova:fence_compute:04758bda751b3d5aa6c380933a6cf696,"/>
+          <nvpair id="status-compute-0-.digests-secure" name="#digests-secure" value="stonith-fence_compute-fence-nova:fence_compute:e0992836f72674b3c1b56e40d152bdf9,"/>
+          <nvpair id="status-compute-0-.node-unfenced" name="#node-unfenced" value="1605581077"/>
+          <nvpair id="status-compute-0-shutdown" name="shutdown" value="1605596595"/>
+        </instance_attributes>
+      </transient_attributes>
+      <lrm id="compute-0">
+        <lrm_resources>
+          <lrm_resource id="compute-unfence-trigger" type="Dummy" class="ocf" provider="pacemaker">
+            <lrm_rsc_op id="compute-unfence-trigger_last_0" operation_key="compute-unfence-trigger_monitor_0" operation="monitor" crm-debug-origin="do_update_resource" crm_feature_set="3.4.1" transition-key="69:54:7:40f880e4-b328-4380-9703-47856390a1e0" transition-magic="0:0;69:54:7:40f880e4-b328-4380-9703-47856390a1e0" exit-reason="" on_node="controller-0" call-id="219" rc-code="0" op-status="0" interval="0" last-rc-change="1605583428" last-run="1605583428" exec-time="17" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-force-restart="  envfile op_sleep passwd state  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
+            <lrm_rsc_op id="compute-unfence-trigger_last_failure_0" operation_key="compute-unfence-trigger_monitor_0" operation="monitor" crm-debug-origin="do_update_resource" crm_feature_set="3.4.1" transition-key="69:54:7:40f880e4-b328-4380-9703-47856390a1e0" transition-magic="0:0;69:54:7:40f880e4-b328-4380-9703-47856390a1e0" exit-reason="" on_node="controller-0" call-id="219" rc-code="0" op-status="0" interval="0" last-rc-change="1605583428" last-run="1605583428" exec-time="17" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
+            <lrm_rsc_op id="compute-unfence-trigger_monitor_10000" operation_key="compute-unfence-trigger_monitor_10000" operation="monitor" crm-debug-origin="do_update_resource" crm_feature_set="3.4.1" transition-key="305:55:0:40f880e4-b328-4380-9703-47856390a1e0" transition-magic="0:0;305:55:0:40f880e4-b328-4380-9703-47856390a1e0" exit-reason="" on_node="controller-0" call-id="221" rc-code="0" op-status="0" interval="10000" last-rc-change="1605583433" exec-time="24" queue-time="0" op-digest="4811cef7f7f94e3a35a70be7916cb2fd" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
+          </lrm_resource>
+        </lrm_resources>
+      </lrm>
+    </node_state>
+    <node_state id="compute-1" remote_node="true" uname="compute-1" in_ccm="false" crm-debug-origin="do_state_transition">
+      <transient_attributes id="compute-1">
+        <instance_attributes id="status-compute-1">
+          <nvpair id="status-compute-1-.digests-all" name="#digests-all" value="stonith-fence_compute-fence-nova:fence_compute:04758bda751b3d5aa6c380933a6cf696,"/>
+          <nvpair id="status-compute-1-.digests-secure" name="#digests-secure" value="stonith-fence_compute-fence-nova:fence_compute:e0992836f72674b3c1b56e40d152bdf9,"/>
+          <nvpair id="status-compute-1-.node-unfenced" name="#node-unfenced" value="1605580734"/>
+        </instance_attributes>
+      </transient_attributes>
+      <lrm id="compute-1">
+        <lrm_resources>
+          <lrm_resource id="compute-unfence-trigger" type="Dummy" class="ocf" provider="pacemaker">
+            <lrm_rsc_op id="compute-unfence-trigger_last_0" operation_key="compute-unfence-trigger_monitor_0" operation="monitor" crm-debug-origin="do_update_resource" crm_feature_set="3.4.1" transition-key="70:54:7:40f880e4-b328-4380-9703-47856390a1e0" transition-magic="0:0;70:54:7:40f880e4-b328-4380-9703-47856390a1e0" exit-reason="" on_node="controller-1" call-id="236" rc-code="0" op-status="0" interval="0" last-rc-change="1605583428" last-run="1605583428" exec-time="18" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-force-restart="  envfile op_sleep passwd state  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
+            <lrm_rsc_op id="compute-unfence-trigger_last_failure_0" operation_key="compute-unfence-trigger_monitor_0" operation="monitor" crm-debug-origin="do_update_resource" crm_feature_set="3.4.1" transition-key="70:54:7:40f880e4-b328-4380-9703-47856390a1e0" transition-magic="0:0;70:54:7:40f880e4-b328-4380-9703-47856390a1e0" exit-reason="" on_node="controller-1" call-id="236" rc-code="0" op-status="0" interval="0" last-rc-change="1605583428" last-run="1605583428" exec-time="18" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
+            <lrm_rsc_op id="compute-unfence-trigger_monitor_10000" operation_key="compute-unfence-trigger_monitor_10000" operation="monitor" crm-debug-origin="do_update_resource" crm_feature_set="3.4.1" transition-key="308:55:0:40f880e4-b328-4380-9703-47856390a1e0" transition-magic="0:0;308:55:0:40f880e4-b328-4380-9703-47856390a1e0" exit-reason="" on_node="controller-1" call-id="238" rc-code="0" op-status="0" interval="10000" last-rc-change="1605583433" exec-time="17" queue-time="0" op-digest="4811cef7f7f94e3a35a70be7916cb2fd" op-secure-params="  passwd  " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
+          </lrm_resource>
+        </lrm_resources>
+      </lrm>
+    </node_state>
+    <node_state id="7" uname="messaging-0" in_ccm="true" crmd="online" join="member" expected="member" crm-debug-origin="do_update_resource">
+      <transient_attributes id="7">
+        <instance_attributes id="status-7">
+          <nvpair id="status-7-.node-unfenced" name="#node-unfenced" value="1605582292"/>
+          <nvpair id="status-7-rmq-node-attr-rabbitmq" name="rmq-node-attr-rabbitmq" value="rabbit@messaging-0"/>
+          <nvpair id="status-7-fail-count-stonith-fence_compute-fence-nova.monitor_60000" name="fail-count-stonith-fence_compute-fence-nova#monitor_60000" value="1"/>
+          <nvpair id="status-7-last-failure-stonith-fence_compute-fence-nova.monitor_60000" name="last-failure-stonith-fence_compute-fence-nova#monitor_60000" value="1605589945"/>
+          <nvpair id="status-7-fail-count-stonith-fence_compute-fence-nova.start_0" name="fail-count-stonith-fence_compute-fence-nova#start_0" value="INFINITY"/>
+          <nvpair id="status-7-last-failure-stonith-fence_compute-fence-nova.start_0" name="last-failure-stonith-fence_compute-fence-nova#start_0" value="1605589962"/>
+        </instance_attributes>
+      </transient_attributes>
+      <lrm id="7">
+        <lrm_resources>
+          <lrm_resource id="rabbitmq-bundle-1" type="remote" class="ocf" provider="pacemaker" container="rabbitmq-bundle-podman-1">
+            <lrm_rsc_op id="rabbitmq-bundle-1_last_0" operation_key="rabbitmq-bundle-1_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="77:4:7:40f880e4-b328-4380-9703-47856390a1e0" transition-magic="0:7;77:4:7:40f880e4-b328-4380-9703-47856390a1e0" exit-reason="" on_node="messaging-0" call-id="6" rc-code="7" op-status="0" interval="0" last-rc-change="1605582293" last-run="1605582293" exec-time="0" queue-time="0" op-digest="e25f0ff041ed91bee8ee197d0ce2aebd" op-force-restart="  server  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
+          </lrm_resource>
+          <lrm_resource id="rabbitmq-bundle-2" type="remote" class="ocf" provider="pacemaker" container="rabbitmq-bundle-podman-2">
+            <lrm_rsc_op id="rabbitmq-bundle-2_last_0" operation_key="rabbitmq-bundle-2_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="79:4:7:40f880e4-b328-4380-9703-47856390a1e0" transition-magic="0:7;79:4:7:40f880e4-b328-4380-9703-47856390a1e0" exit-reason="" on_node="messaging-0" call-id="7" rc-code="7" op-status="0" interval="0" last-rc-change="1605582293" last-run="1605582293" exec-time="0" queue-time="0" op-digest="593e15353c64e73e2efe61415c7dd44b" op-force-restart="  server  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
+          </lrm_resource>
+          <lrm_resource id="stonith-fence_ipmilan-525400642894" type="fence_ipmilan" class="stonith">
+            <lrm_rsc_op id="stonith-fence_ipmilan-525400642894_last_0" operation_key="stonith-fence_ipmilan-525400642894_stop_0" operation="stop" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="315:35:0:40f880e4-b328-4380-9703-47856390a1e0" transition-magic="0:0;315:35:0:40f880e4-b328-4380-9703-47856390a1e0" exit-reason="" on_node="messaging-0" call-id="107" rc-code="0" op-status="0" interval="0" last-rc-change="1605582912" last-run="1605582912" exec-time="1" queue-time="0" op-digest="1779ddd0abf841e7e9914f08b32da1a6"/>
+          </lrm_resource>
+          <lrm_resource id="stonith-fence_ipmilan-525400e10267" type="fence_ipmilan" class="stonith">
+            <lrm_rsc_op id="stonith-fence_ipmilan-525400e10267_last_0" operation_key="stonith-fence_ipmilan-525400e10267_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="87:5:7:40f880e4-b328-4380-9703-47856390a1e0" transition-magic="0:7;87:5:7:40f880e4-b328-4380-9703-47856390a1e0" exit-reason="" on_node="messaging-0" call-id="77" rc-code="7" op-status="0" interval="0" last-rc-change="1605582299" last-run="1605582299" exec-time="0" queue-time="0" op-digest="ad5ccd62a43794b237bdd30ae0887630" op-secure-params="  password passwd  " op-secure-digest="9fbed2700250a8fd49b45f72c08d5d17"/>
+          </lrm_resource>
+          <lrm_resource id="stonith-fence_ipmilan-525400bb150b" type="fence_ipmilan" class="stonith">
+            <lrm_rsc_op id="stonith-fence_ipmilan-525400bb150b_last_0" operation_key="stonith-fence_ipmilan-525400bb150b_start_0" operation="start" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="324:70:0:40f880e4-b328-4380-9703-47856390a1e0" transition-magic="0:0;324:70:0:40f880e4-b328-4380-9703-47856390a1e0" exit-reason="" on_node="messaging-0" call-id="118" rc-code="0" op-status="0" interval="0" last-rc-change="1605584024" last-run="1605584024" exec-time="405" queue-time="0" op-digest="7069d4bd259f26c8e756d0cfe8359ac1" op-secure-params="  password passwd  " op-secure-digest="d7b4bc578fd079201c7ec804f2b8862f"/>
+            <lrm_rsc_op id="stonith-fence_ipmilan-525400bb150b_monitor_60000" operation_key="stonith-fence_ipmilan-525400bb150b_monitor_60000" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="325:70:0:40f880e4-b328-4380-9703-47856390a1e0" transition-magic="0:0;325:70:0:40f880e4-b328-4380-9703-47856390a1e0" exit-reason="" on_node="messaging-0" call-id="119" rc-code="0" op-status="0" interval="60000" last-rc-change="1605584025" exec-time="384" queue-time="0" op-digest="acc19b6b797534ce4bf11c9c991729da" op-secure-params="  password passwd  " op-secure-digest="d7b4bc578fd079201c7ec804f2b8862f"/>
+          </lrm_resource>
+          <lrm_resource id="compute-0" type="remote" class="ocf" provider="pacemaker">
+            <lrm_rsc_op id="compute-0_last_0" operation_key="compute-0_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="87:2:7:40f880e4-b328-4380-9703-47856390a1e0" transition-magic="0:7;87:2:7:40f880e4-b328-4380-9703-47856390a1e0" exit-reason="" on_node="messaging-0" call-id="1" rc-code="7" op-status="0" interval="0" last-rc-change="1605582289" last-run="1605582289" exec-time="0" queue-time="0" op-digest="94f4ed47fadb94317ef0f8959942f09e" op-force-restart="  server  " op-restart-digest="94f4ed47fadb94317ef0f8959942f09e"/>
+          </lrm_resource>
+          <lrm_resource id="compute-1" type="remote" class="ocf" provider="pacemaker">
+            <lrm_rsc_op id="compute-1_last_0" operation_key="compute-1_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="88:2:7:40f880e4-b328-4380-9703-47856390a1e0" transition-magic="0:7;88:2:7:40f880e4-b328-4380-9703-47856390a1e0" exit-reason="" on_node="messaging-0" call-id="2" rc-code="7" op-status="0" interval="0" last-rc-change="1605582289" last-run="1605582289" exec-time="0" queue-time="0" op-digest="4a9ef452428322fd1d0d0c44a6f176fd" op-force-restart="  server  " op-restart-digest="4a9ef452428322fd1d0d0c44a6f176fd"/>
+          </lrm_resource>
+          <lrm_resource id="stonith-fence_ipmilan-5254007b7920" type="fence_ipmilan" class="stonith">
+            <lrm_rsc_op id="stonith-fence_ipmilan-5254007b7920_last_0" operation_key="stonith-fence_ipmilan-5254007b7920_stop_0" operation="stop" crm-debug-origin="do_update_resource" crm_feature_set="3.6.1" transition-key="270:1422:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;270:1422:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="messaging-0" call-id="157" rc-code="0" op-status="0" interval="0" last-rc-change="1605589997" last-run="1605589997" exec-time="0" queue-time="0" op-digest="292cf370c85404b918bcf8312056ca36" op-secure-params="  password passwd  " op-secure-digest="78d581355e684910edb664ba961cf50d"/>
+            <lrm_rsc_op id="stonith-fence_ipmilan-5254007b7920_monitor_60000" operation_key="stonith-fence_ipmilan-5254007b7920_monitor_60000" operation="monitor" crm-debug-origin="do_update_resource" crm_feature_set="3.6.1" transition-key="273:1414:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;273:1414:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="messaging-0" call-id="155" rc-code="0" op-status="0" interval="60000" last-rc-change="1605589963" exec-time="397" queue-time="0" op-digest="91bc9c45f4cca48c0c30614d0126a670" op-secure-params="  password passwd  " op-secure-digest="78d581355e684910edb664ba961cf50d"/>
+          </lrm_resource>
+          <lrm_resource id="stonith-fence_ipmilan-525400ffc780" type="fence_ipmilan" class="stonith">
+            <lrm_rsc_op id="stonith-fence_ipmilan-525400ffc780_last_0" operation_key="stonith-fence_ipmilan-525400ffc780_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="85:5:7:40f880e4-b328-4380-9703-47856390a1e0" transition-magic="0:7;85:5:7:40f880e4-b328-4380-9703-47856390a1e0" exit-reason="" on_node="messaging-0" call-id="69" rc-code="7" op-status="0" interval="0" last-rc-change="1605582299" last-run="1605582299" exec-time="0" queue-time="0" op-digest="d5b19f9189ef5c23bf62dd041a8a1cfd" op-secure-params="  password passwd  " op-secure-digest="4415a1b3c8ddcc34bc954c9b603fc36a"/>
+          </lrm_resource>
+          <lrm_resource id="stonith-fence_ipmilan-525400dc0f81" type="fence_ipmilan" class="stonith">
+            <lrm_rsc_op id="stonith-fence_ipmilan-525400dc0f81_last_0" operation_key="stonith-fence_ipmilan-525400dc0f81_stop_0" operation="stop" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="328:58:0:40f880e4-b328-4380-9703-47856390a1e0" transition-magic="0:0;328:58:0:40f880e4-b328-4380-9703-47856390a1e0" exit-reason="" on_node="messaging-0" call-id="117" rc-code="0" op-status="0" interval="0" last-rc-change="1605583562" last-run="1605583562" exec-time="4" queue-time="0" op-digest="baa6fc182a42d0a5173739535c7c67fe"/>
+          </lrm_resource>
+          <lrm_resource id="rabbitmq-bundle-podman-0" type="podman" class="ocf" provider="heartbeat">
+            <lrm_rsc_op id="rabbitmq-bundle-podman-0_last_0" operation_key="rabbitmq-bundle-podman-0_start_0" operation="start" crm-debug-origin="do_update_resource" crm_feature_set="3.6.1" transition-key="95:1404:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;95:1404:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="messaging-0" call-id="148" rc-code="0" op-status="0" interval="0" last-rc-change="1605589818" last-run="1605589818" exec-time="2919" queue-time="0" op-digest="c723fb08ebe660ea9eda34004e84b918"/>
+            <lrm_rsc_op id="rabbitmq-bundle-podman-0_monitor_60000" operation_key="rabbitmq-bundle-podman-0_monitor_60000" operation="monitor" crm-debug-origin="do_update_resource" crm_feature_set="3.6.1" transition-key="101:1405:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;101:1405:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="messaging-0" call-id="149" rc-code="0" op-status="0" interval="60000" last-rc-change="1605589822" exec-time="534" queue-time="0" op-digest="f797ffa3c3e125105f2faa5818cc97b9"/>
+          </lrm_resource>
+          <lrm_resource id="rabbitmq-bundle-podman-1" type="podman" class="ocf" provider="heartbeat">
+            <lrm_rsc_op id="rabbitmq-bundle-podman-1_last_0" operation_key="rabbitmq-bundle-podman-1_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="76:4:7:40f880e4-b328-4380-9703-47856390a1e0" transition-magic="0:7;76:4:7:40f880e4-b328-4380-9703-47856390a1e0" exit-reason="" on_node="messaging-0" call-id="14" rc-code="7" op-status="0" interval="0" last-rc-change="1605582293" last-run="1605582293" exec-time="107" queue-time="0" op-digest="f40d9a7c95e0b92d94aeb7d9bcdab2b4"/>
+          </lrm_resource>
+          <lrm_resource id="rabbitmq-bundle-podman-2" type="podman" class="ocf" provider="heartbeat">
+            <lrm_rsc_op id="rabbitmq-bundle-podman-2_last_0" operation_key="rabbitmq-bundle-podman-2_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="78:4:7:40f880e4-b328-4380-9703-47856390a1e0" transition-magic="0:7;78:4:7:40f880e4-b328-4380-9703-47856390a1e0" exit-reason="" on_node="messaging-0" call-id="19" rc-code="7" op-status="0" interval="0" last-rc-change="1605582293" last-run="1605582293" exec-time="148" queue-time="0" op-digest="a71af315a5809471ec6879cd2991dc19"/>
+          </lrm_resource>
+          <lrm_resource id="galera-bundle-0" type="remote" class="ocf" provider="pacemaker" container="galera-bundle-podman-0">
+            <lrm_rsc_op id="galera-bundle-0_last_0" operation_key="galera-bundle-0_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="89:2:7:40f880e4-b328-4380-9703-47856390a1e0" transition-magic="0:7;89:2:7:40f880e4-b328-4380-9703-47856390a1e0" exit-reason="" on_node="messaging-0" call-id="3" rc-code="7" op-status="0" interval="0" last-rc-change="1605582289" last-run="1605582289" exec-time="0" queue-time="0" op-digest="dbc6b52d45a75a0b041af92265b22f9e" op-force-restart="  server  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
+          </lrm_resource>
+          <lrm_resource id="galera-bundle-1" type="remote" class="ocf" provider="pacemaker" container="galera-bundle-podman-1">
+            <lrm_rsc_op id="galera-bundle-1_last_0" operation_key="galera-bundle-1_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="90:2:7:40f880e4-b328-4380-9703-47856390a1e0" transition-magic="0:7;90:2:7:40f880e4-b328-4380-9703-47856390a1e0" exit-reason="" on_node="messaging-0" call-id="4" rc-code="7" op-status="0" interval="0" last-rc-change="1605582289" last-run="1605582289" exec-time="0" queue-time="0" op-digest="f6e3b46e18b24f6e1cca9639ec9b7c41" op-force-restart="  server  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
+          </lrm_resource>
+          <lrm_resource id="galera-bundle-2" type="remote" class="ocf" provider="pacemaker" container="galera-bundle-podman-2">
+            <lrm_rsc_op id="galera-bundle-2_last_0" operation_key="galera-bundle-2_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="91:2:7:40f880e4-b328-4380-9703-47856390a1e0" transition-magic="0:7;91:2:7:40f880e4-b328-4380-9703-47856390a1e0" exit-reason="" on_node="messaging-0" call-id="5" rc-code="7" op-status="0" interval="0" last-rc-change="1605582289" last-run="1605582289" exec-time="0" queue-time="0" op-digest="bf7cf9acd053cee24dc3401862009e40" op-force-restart="  server  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
+          </lrm_resource>
+          <lrm_resource id="redis-bundle-0" type="remote" class="ocf" provider="pacemaker" container="redis-bundle-podman-0">
+            <lrm_rsc_op id="redis-bundle-0_last_0" operation_key="redis-bundle-0_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="80:4:7:40f880e4-b328-4380-9703-47856390a1e0" transition-magic="0:7;80:4:7:40f880e4-b328-4380-9703-47856390a1e0" exit-reason="" on_node="messaging-0" call-id="8" rc-code="7" op-status="0" interval="0" last-rc-change="1605582293" last-run="1605582293" exec-time="0" queue-time="0" op-digest="f325849fbffe2e62970eb201a50da9f3" op-force-restart="  server  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
+          </lrm_resource>
+          <lrm_resource id="redis-bundle-1" type="remote" class="ocf" provider="pacemaker" container="redis-bundle-podman-1">
+            <lrm_rsc_op id="redis-bundle-1_last_0" operation_key="redis-bundle-1_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="71:5:7:40f880e4-b328-4380-9703-47856390a1e0" transition-magic="0:7;71:5:7:40f880e4-b328-4380-9703-47856390a1e0" exit-reason="" on_node="messaging-0" call-id="9" rc-code="7" op-status="0" interval="0" last-rc-change="1605582297" last-run="1605582297" exec-time="0" queue-time="0" op-digest="dd323696d6c8ed14cb71914c411664c9" op-force-restart="  server  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
+          </lrm_resource>
+          <lrm_resource id="redis-bundle-2" type="remote" class="ocf" provider="pacemaker" container="redis-bundle-podman-2">
+            <lrm_rsc_op id="redis-bundle-2_last_0" operation_key="redis-bundle-2_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="72:5:7:40f880e4-b328-4380-9703-47856390a1e0" transition-magic="0:7;72:5:7:40f880e4-b328-4380-9703-47856390a1e0" exit-reason="" on_node="messaging-0" call-id="10" rc-code="7" op-status="0" interval="0" last-rc-change="1605582297" last-run="1605582297" exec-time="0" queue-time="0" op-digest="cd98602d6f977947327050913302f861" op-force-restart="  server  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
+          </lrm_resource>
+          <lrm_resource id="ovn-dbs-bundle-1" type="remote" class="ocf" provider="pacemaker" container="ovn-dbs-bundle-podman-1">
+            <lrm_rsc_op id="ovn-dbs-bundle-1_last_0" operation_key="ovn-dbs-bundle-1_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="74:5:7:40f880e4-b328-4380-9703-47856390a1e0" transition-magic="0:7;74:5:7:40f880e4-b328-4380-9703-47856390a1e0" exit-reason="" on_node="messaging-0" call-id="12" rc-code="7" op-status="0" interval="0" last-rc-change="1605582297" last-run="1605582297" exec-time="0" queue-time="0" op-digest="d00e87492de6b83a85450cd667db2a88" op-force-restart="  server  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
+          </lrm_resource>
+          <lrm_resource id="ovn-dbs-bundle-0" type="remote" class="ocf" provider="pacemaker" container="ovn-dbs-bundle-podman-0">
+            <lrm_rsc_op id="ovn-dbs-bundle-0_last_0" operation_key="ovn-dbs-bundle-0_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="73:5:7:40f880e4-b328-4380-9703-47856390a1e0" transition-magic="0:7;73:5:7:40f880e4-b328-4380-9703-47856390a1e0" exit-reason="" on_node="messaging-0" call-id="11" rc-code="7" op-status="0" interval="0" last-rc-change="1605582297" last-run="1605582297" exec-time="0" queue-time="0" op-digest="bf04cc8b2becfb29770a97d109ad6c4f" op-force-restart="  server  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
+          </lrm_resource>
+          <lrm_resource id="stonith-fence_ipmilan-5254009cb549" type="fence_ipmilan" class="stonith">
+            <lrm_rsc_op id="stonith-fence_ipmilan-5254009cb549_last_0" operation_key="stonith-fence_ipmilan-5254009cb549_stop_0" operation="stop" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="352:2:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;352:2:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="messaging-0" call-id="121" rc-code="0" op-status="0" interval="0" last-rc-change="1605584081" last-run="1605584081" exec-time="0" queue-time="0" op-digest="da530999b2b0c233366dbd0dab07c65f"/>
+          </lrm_resource>
+          <lrm_resource id="ovn-dbs-bundle-2" type="remote" class="ocf" provider="pacemaker" container="ovn-dbs-bundle-podman-2">
+            <lrm_rsc_op id="ovn-dbs-bundle-2_last_0" operation_key="ovn-dbs-bundle-2_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="75:5:7:40f880e4-b328-4380-9703-47856390a1e0" transition-magic="0:7;75:5:7:40f880e4-b328-4380-9703-47856390a1e0" exit-reason="" on_node="messaging-0" call-id="13" rc-code="7" op-status="0" interval="0" last-rc-change="1605582297" last-run="1605582297" exec-time="0" queue-time="0" op-digest="015c999adc4143966a5e0ba98e5d74af" op-force-restart="  server  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
+          </lrm_resource>
+          <lrm_resource id="stonith-fence_compute-fence-nova" type="fence_compute" class="stonith">
+            <lrm_rsc_op id="stonith-fence_compute-fence-nova_last_0" operation_key="stonith-fence_compute-fence-nova_stop_0" operation="stop" crm-debug-origin="do_update_resource" crm_feature_set="3.6.1" transition-key="38:1414:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;38:1414:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="messaging-0" call-id="153" rc-code="0" op-status="0" interval="0" last-rc-change="1605589962" last-run="1605589962" exec-time="0" queue-time="0" op-digest="04758bda751b3d5aa6c380933a6cf696" op-secure-params="  password passwd  " op-secure-digest="e0992836f72674b3c1b56e40d152bdf9"/>
+            <lrm_rsc_op id="stonith-fence_compute-fence-nova_monitor_60000" operation_key="stonith-fence_compute-fence-nova_monitor_60000" operation="monitor" crm-debug-origin="do_update_resource" crm_feature_set="3.6.1" transition-key="260:1404:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;260:1404:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="messaging-0" call-id="145" rc-code="0" op-status="0" interval="60000" last-rc-change="1605589818" exec-time="2195" queue-time="0" op-digest="b7fc84e1b7330a405db134e78082260d" op-secure-params="  password passwd  " op-secure-digest="e0992836f72674b3c1b56e40d152bdf9"/>
+            <lrm_rsc_op id="stonith-fence_compute-fence-nova_last_failure_0" operation_key="stonith-fence_compute-fence-nova_start_0" operation="start" crm-debug-origin="do_update_resource" crm_feature_set="3.6.1" transition-key="247:1412:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:1;247:1412:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="messaging-0" call-id="152" rc-code="1" op-status="0" interval="0" last-rc-change="1605589955" exec-time="7221" queue-time="0" op-digest="04758bda751b3d5aa6c380933a6cf696" op-secure-params="  password passwd  " op-secure-digest="e0992836f72674b3c1b56e40d152bdf9" last-run="1605589955"/>
+          </lrm_resource>
+          <lrm_resource id="rabbitmq-bundle-0" type="remote" class="ocf" provider="pacemaker" container="rabbitmq-bundle-podman-0">
+            <lrm_rsc_op id="rabbitmq-bundle-0_last_0" operation_key="rabbitmq-bundle-0_start_0" operation="start" crm-debug-origin="do_update_resource" crm_feature_set="3.6.1" transition-key="102:1405:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;102:1405:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="messaging-0" call-id="21" rc-code="0" op-status="0" interval="0" last-rc-change="1605589822" last-run="1605589822" exec-time="0" queue-time="0" op-digest="a41ad5f9625676395b163a06987de2d6" op-force-restart="  server  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
+            <lrm_rsc_op id="rabbitmq-bundle-0_monitor_30000" operation_key="rabbitmq-bundle-0_monitor_30000" operation="monitor" crm-debug-origin="do_update_resource" crm_feature_set="3.6.1" transition-key="106:1406:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;106:1406:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="messaging-0" call-id="22" rc-code="0" op-status="0" interval="30000" last-rc-change="1605589823" exec-time="0" queue-time="0" op-digest="877c594d34ab5117583496110eeb14af"/>
+          </lrm_resource>
+          <lrm_resource id="stonith-fence_ipmilan-5254003f88b4" type="fence_ipmilan" class="stonith">
+            <lrm_rsc_op id="stonith-fence_ipmilan-5254003f88b4_last_0" operation_key="stonith-fence_ipmilan-5254003f88b4_start_0" operation="start" crm-debug-origin="do_update_resource" crm_feature_set="3.6.1" transition-key="267:1422:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;267:1422:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="messaging-0" call-id="158" rc-code="0" op-status="0" interval="0" last-rc-change="1605589997" last-run="1605589997" exec-time="319" queue-time="0" op-digest="e4ae59cf662c224d9817c0d0331d50ba" op-secure-params="  password passwd  " op-secure-digest="9b06848b37b8bbd582e7cd4733987493"/>
+            <lrm_rsc_op id="stonith-fence_ipmilan-5254003f88b4_monitor_60000" operation_key="stonith-fence_ipmilan-5254003f88b4_monitor_60000" operation="monitor" crm-debug-origin="do_update_resource" crm_feature_set="3.6.1" transition-key="269:1422:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;269:1422:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="messaging-0" call-id="159" rc-code="0" op-status="0" interval="60000" last-rc-change="1605589997" exec-time="419" queue-time="0" op-digest="149734c12b950bda320c528292903d4e" op-secure-params="  password passwd  " op-secure-digest="9b06848b37b8bbd582e7cd4733987493"/>
+          </lrm_resource>
+          <lrm_resource id="stonith-fence_ipmilan-52540033df9c" type="fence_ipmilan" class="stonith">
+            <lrm_rsc_op id="stonith-fence_ipmilan-52540033df9c_last_0" operation_key="stonith-fence_ipmilan-52540033df9c_stop_0" operation="stop" crm-debug-origin="do_update_resource" crm_feature_set="3.6.1" transition-key="271:1404:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;271:1404:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="messaging-0" call-id="147" rc-code="0" op-status="0" interval="0" last-rc-change="1605589818" last-run="1605589818" exec-time="5" queue-time="0" op-digest="b0341087994098c62f29bd703448ffed" op-secure-params="  password passwd  " op-secure-digest="4df029b6ad27db68abf3c71606f906ea"/>
+            <lrm_rsc_op id="stonith-fence_ipmilan-52540033df9c_monitor_60000" operation_key="stonith-fence_ipmilan-52540033df9c_monitor_60000" operation="monitor" crm-debug-origin="do_update_resource" crm_feature_set="3.6.1" transition-key="251:1403:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;251:1403:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="messaging-0" call-id="144" rc-code="0" op-status="0" interval="60000" last-rc-change="1605589817" exec-time="766" queue-time="0" op-digest="d2962d8811a6e1b86f138b75b779d8c6" op-secure-params="  password passwd  " op-secure-digest="4df029b6ad27db68abf3c71606f906ea"/>
+          </lrm_resource>
+          <lrm_resource id="nova-evacuate" type="NovaEvacuate" class="ocf" provider="openstack">
+            <lrm_rsc_op id="nova-evacuate_last_0" operation_key="nova-evacuate_stop_0" operation="stop" crm-debug-origin="do_update_resource" crm_feature_set="3.6.1" transition-key="272:1396:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;272:1396:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="messaging-0" call-id="135" rc-code="0" op-status="0" interval="0" last-rc-change="1605589779" last-run="1605589779" exec-time="36" queue-time="0" op-digest="8c367ebe0409afc3686f512ae68b1ee4" op-secure-params="  password  " op-secure-digest="f89eeb9446a58fb145857e36589bd2ee"/>
+            <lrm_rsc_op id="nova-evacuate_monitor_10000" operation_key="nova-evacuate_monitor_10000" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.1" transition-key="283:438:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;283:438:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="messaging-0" call-id="133" rc-code="0" op-status="0" interval="10000" last-rc-change="1605586058" exec-time="44" queue-time="0" op-digest="5196df8d7b65e77d18a4866499aad276" op-secure-params="  password  " op-secure-digest="f89eeb9446a58fb145857e36589bd2ee"/>
+          </lrm_resource>
+          <lrm_resource id="stonith-fence_ipmilan-525400d5382b" type="fence_ipmilan" class="stonith">
+            <lrm_rsc_op id="stonith-fence_ipmilan-525400d5382b_last_0" operation_key="stonith-fence_ipmilan-525400d5382b_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="83:5:7:40f880e4-b328-4380-9703-47856390a1e0" transition-magic="0:7;83:5:7:40f880e4-b328-4380-9703-47856390a1e0" exit-reason="" on_node="messaging-0" call-id="61" rc-code="7" op-status="0" interval="0" last-rc-change="1605582299" last-run="1605582299" exec-time="0" queue-time="0" op-digest="03339c868b4e990d1eee35ee0d8fd924" op-secure-params="  password passwd  " op-secure-digest="d80496ebdfcec16ae6f6a8217f6c5c21"/>
+          </lrm_resource>
+          <lrm_resource id="stonith-fence_ipmilan-5254001f5f3c" type="fence_ipmilan" class="stonith">
+            <lrm_rsc_op id="stonith-fence_ipmilan-5254001f5f3c_last_0" operation_key="stonith-fence_ipmilan-5254001f5f3c_stop_0" operation="stop" crm-debug-origin="do_update_resource" crm_feature_set="3.6.1" transition-key="252:1403:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;252:1403:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="messaging-0" call-id="141" rc-code="0" op-status="0" interval="0" last-rc-change="1605589816" last-run="1605589816" exec-time="0" queue-time="0" op-digest="859262e1216f50b739b9ff444e605375" op-secure-params="  password passwd  " op-secure-digest="95ad05342de9eab61bee697cec0a352e"/>
+            <lrm_rsc_op id="stonith-fence_ipmilan-5254001f5f3c_monitor_60000" operation_key="stonith-fence_ipmilan-5254001f5f3c_monitor_60000" operation="monitor" crm-debug-origin="do_update_resource" crm_feature_set="3.6.1" transition-key="269:1397:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;269:1397:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="messaging-0" call-id="137" rc-code="0" op-status="0" interval="60000" last-rc-change="1605589786" exec-time="407" queue-time="0" op-digest="8fc39fa18da80977eeaa9f36e53a59ef" op-secure-params="  password passwd  " op-secure-digest="95ad05342de9eab61bee697cec0a352e"/>
+          </lrm_resource>
+        </lrm_resources>
+      </lrm>
+    </node_state>
+    <node_state id="rabbitmq-bundle-1" remote_node="true" uname="rabbitmq-bundle-1" in_ccm="true" crm-debug-origin="do_update_resource" node_fenced="0">
+      <lrm id="rabbitmq-bundle-1">
+        <lrm_resources>
+          <lrm_resource id="rabbitmq" type="rabbitmq-cluster" class="ocf" provider="heartbeat">
+            <lrm_rsc_op id="rabbitmq_last_0" operation_key="rabbitmq_start_0" operation="start" crm-debug-origin="do_update_resource" crm_feature_set="3.6.1" transition-key="123:1408:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;123:1408:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="messaging-1" call-id="14" rc-code="0" op-status="0" interval="0" last-rc-change="1605589855" last-run="1605589855" exec-time="34696" queue-time="0" op-digest="e3a5f71f4c37be2ed068e4f0dcc847a9"/>
+            <lrm_rsc_op id="rabbitmq_monitor_10000" operation_key="rabbitmq_monitor_10000" operation="monitor" crm-debug-origin="do_update_resource" crm_feature_set="3.6.1" transition-key="122:1410:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;122:1410:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="messaging-1" call-id="36" rc-code="0" op-status="0" interval="10000" last-rc-change="1605589926" exec-time="3605" queue-time="0" op-digest="04bcb19b3c7c43f101badbd8f1e2eed2"/>
+          </lrm_resource>
+        </lrm_resources>
+      </lrm>
+    </node_state>
+    <node_state id="redis-bundle-0" remote_node="true" uname="redis-bundle-0" in_ccm="true" crm-debug-origin="do_state_transition">
+      <transient_attributes id="redis-bundle-0">
+        <instance_attributes id="status-redis-bundle-0"/>
+      </transient_attributes>
+      <lrm id="redis-bundle-0">
+        <lrm_resources>
+          <lrm_resource id="redis" type="redis" class="ocf" provider="heartbeat">
+            <lrm_rsc_op id="redis_last_0" operation_key="redis_monitor_0" operation="monitor" crm-debug-origin="do_update_resource" crm_feature_set="3.4.1" transition-key="93:54:7:40f880e4-b328-4380-9703-47856390a1e0" transition-magic="0:8;93:54:7:40f880e4-b328-4380-9703-47856390a1e0" exit-reason="" on_node="controller-2" call-id="1377" rc-code="8" op-status="0" interval="0" last-rc-change="1605583428" last-run="1605583428" exec-time="662" queue-time="0" op-digest="b957ae893253e7d44077bc281c5b7142" op-secure-params="  user  " op-secure-digest="b957ae893253e7d44077bc281c5b7142"/>
+            <lrm_rsc_op id="redis_last_failure_0" operation_key="redis_monitor_0" operation="monitor" crm-debug-origin="do_update_resource" crm_feature_set="3.4.1" transition-key="93:54:7:40f880e4-b328-4380-9703-47856390a1e0" transition-magic="0:8;93:54:7:40f880e4-b328-4380-9703-47856390a1e0" exit-reason="" on_node="controller-2" call-id="1377" rc-code="8" op-status="0" interval="0" last-rc-change="1605583428" last-run="1605583428" exec-time="662" queue-time="0" op-digest="b957ae893253e7d44077bc281c5b7142"/>
+            <lrm_rsc_op id="redis_monitor_20000" operation_key="redis_monitor_20000" operation="monitor" crm-debug-origin="do_update_resource" crm_feature_set="3.4.1" transition-key="185:55:8:40f880e4-b328-4380-9703-47856390a1e0" transition-magic="0:8;185:55:8:40f880e4-b328-4380-9703-47856390a1e0" exit-reason="" on_node="controller-2" call-id="1391" rc-code="8" op-status="0" interval="20000" last-rc-change="1605583433" exec-time="367" queue-time="0" op-digest="0a6712ea09e8b855c1631e05e037ecaa" op-secure-params="  user  " op-secure-digest="b957ae893253e7d44077bc281c5b7142"/>
+          </lrm_resource>
+        </lrm_resources>
+      </lrm>
+    </node_state>
+    <node_state id="redis-bundle-1" remote_node="true" uname="redis-bundle-1" in_ccm="true" crm-debug-origin="do_state_transition">
+      <transient_attributes id="redis-bundle-1">
+        <instance_attributes id="status-redis-bundle-1"/>
+      </transient_attributes>
+      <lrm id="redis-bundle-1">
+        <lrm_resources>
+          <lrm_resource id="redis" type="redis" class="ocf" provider="heartbeat">
+            <lrm_rsc_op id="redis_last_0" operation_key="redis_monitor_0" operation="monitor" crm-debug-origin="do_update_resource" crm_feature_set="3.4.1" transition-key="94:54:7:40f880e4-b328-4380-9703-47856390a1e0" transition-magic="0:0;94:54:7:40f880e4-b328-4380-9703-47856390a1e0" exit-reason="" on_node="controller-0" call-id="952" rc-code="0" op-status="0" interval="0" last-rc-change="1605583428" last-run="1605583428" exec-time="408" queue-time="0" op-digest="b957ae893253e7d44077bc281c5b7142" op-secure-params="  user  " op-secure-digest="b957ae893253e7d44077bc281c5b7142"/>
+            <lrm_rsc_op id="redis_last_failure_0" operation_key="redis_monitor_0" operation="monitor" crm-debug-origin="do_update_resource" crm_feature_set="3.4.1" transition-key="94:54:7:40f880e4-b328-4380-9703-47856390a1e0" transition-magic="0:0;94:54:7:40f880e4-b328-4380-9703-47856390a1e0" exit-reason="" on_node="controller-0" call-id="952" rc-code="0" op-status="0" interval="0" last-rc-change="1605583428" last-run="1605583428" exec-time="408" queue-time="0" op-digest="b957ae893253e7d44077bc281c5b7142"/>
+            <lrm_rsc_op id="redis_monitor_60000" operation_key="redis_monitor_60000" operation="monitor" crm-debug-origin="do_update_resource" crm_feature_set="3.4.1" transition-key="189:55:0:40f880e4-b328-4380-9703-47856390a1e0" transition-magic="0:0;189:55:0:40f880e4-b328-4380-9703-47856390a1e0" exit-reason="" on_node="controller-0" call-id="958" rc-code="0" op-status="0" interval="60000" last-rc-change="1605583432" exec-time="736" queue-time="0" op-digest="0a6712ea09e8b855c1631e05e037ecaa" op-secure-params="  user  " op-secure-digest="b957ae893253e7d44077bc281c5b7142"/>
+            <lrm_rsc_op id="redis_monitor_45000" operation_key="redis_monitor_45000" operation="monitor" crm-debug-origin="do_update_resource" crm_feature_set="3.4.1" transition-key="188:55:0:40f880e4-b328-4380-9703-47856390a1e0" transition-magic="0:0;188:55:0:40f880e4-b328-4380-9703-47856390a1e0" exit-reason="" on_node="controller-0" call-id="960" rc-code="0" op-status="0" interval="45000" last-rc-change="1605583433" exec-time="307" queue-time="564" op-digest="0a6712ea09e8b855c1631e05e037ecaa" op-secure-params="  user  " op-secure-digest="b957ae893253e7d44077bc281c5b7142"/>
+          </lrm_resource>
+        </lrm_resources>
+      </lrm>
+    </node_state>
+    <node_state id="galera-bundle-2" remote_node="true" uname="galera-bundle-2" in_ccm="true" crm-debug-origin="do_update_resource" node_fenced="0">
+      <lrm id="galera-bundle-2">
+        <lrm_resources>
+          <lrm_resource id="galera" type="galera" class="ocf" provider="heartbeat">
+            <lrm_rsc_op id="galera_last_0" operation_key="galera_promote_0" operation="promote" crm-debug-origin="do_update_resource" crm_feature_set="3.6.1" transition-key="87:1411:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;87:1411:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="database-2" call-id="208" rc-code="0" op-status="0" interval="0" last-rc-change="1605589941" last-run="1605589941" exec-time="13215" queue-time="0" op-digest="6a2b649d2bb672e8f75b11aa5a5500e9" op-secure-params="  user  " op-secure-digest="6a2b649d2bb672e8f75b11aa5a5500e9"/>
+            <lrm_rsc_op id="galera_monitor_10000" operation_key="galera_monitor_10000" operation="monitor" crm-debug-origin="do_update_resource" crm_feature_set="3.6.1" transition-key="90:1412:8:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:8;90:1412:8:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="database-2" call-id="256" rc-code="8" op-status="0" interval="10000" last-rc-change="1605589955" exec-time="85" queue-time="0" op-digest="4814a00abe6760a418e216388efe6271" op-secure-params="  user  " op-secure-digest="6a2b649d2bb672e8f75b11aa5a5500e9"/>
+          </lrm_resource>
+        </lrm_resources>
+      </lrm>
+    </node_state>
+    <node_state id="galera-bundle-0" remote_node="true" uname="galera-bundle-0" in_ccm="true" crm-debug-origin="do_update_resource" node_fenced="0">
+      <lrm id="galera-bundle-0">
+        <lrm_resources>
+          <lrm_resource id="galera" type="galera" class="ocf" provider="heartbeat">
+            <lrm_rsc_op id="galera_last_0" operation_key="galera_promote_0" operation="promote" crm-debug-origin="do_update_resource" crm_feature_set="3.6.1" transition-key="85:1409:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;85:1409:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="database-0" call-id="71" rc-code="0" op-status="0" interval="0" last-rc-change="1605589890" last-run="1605589890" exec-time="12202" queue-time="0" op-digest="6a2b649d2bb672e8f75b11aa5a5500e9" op-secure-params="  user  " op-secure-digest="6a2b649d2bb672e8f75b11aa5a5500e9"/>
+            <lrm_rsc_op id="galera_monitor_10000" operation_key="galera_monitor_10000" operation="monitor" crm-debug-origin="do_update_resource" crm_feature_set="3.6.1" transition-key="80:1410:8:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:8;80:1410:8:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="database-0" call-id="168" rc-code="8" op-status="0" interval="10000" last-rc-change="1605589926" exec-time="120" queue-time="0" op-digest="4814a00abe6760a418e216388efe6271" op-secure-params="  user  " op-secure-digest="6a2b649d2bb672e8f75b11aa5a5500e9"/>
+          </lrm_resource>
+        </lrm_resources>
+      </lrm>
+    </node_state>
+    <node_state id="galera-bundle-1" remote_node="true" uname="galera-bundle-1" in_ccm="true" crm-debug-origin="do_update_resource" node_fenced="0">
+      <lrm id="galera-bundle-1">
+        <lrm_resources>
+          <lrm_resource id="galera" type="galera" class="ocf" provider="heartbeat">
+            <lrm_rsc_op id="galera_last_0" operation_key="galera_promote_0" operation="promote" crm-debug-origin="do_update_resource" crm_feature_set="3.6.1" transition-key="83:1410:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;83:1410:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="database-1" call-id="300" rc-code="0" op-status="0" interval="0" last-rc-change="1605589926" last-run="1605589926" exec-time="15113" queue-time="0" op-digest="6a2b649d2bb672e8f75b11aa5a5500e9" op-secure-params="  user  " op-secure-digest="6a2b649d2bb672e8f75b11aa5a5500e9"/>
+            <lrm_rsc_op id="galera_monitor_10000" operation_key="galera_monitor_10000" operation="monitor" crm-debug-origin="do_update_resource" crm_feature_set="3.6.1" transition-key="84:1411:8:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:8;84:1411:8:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="database-1" call-id="347" rc-code="8" op-status="0" interval="10000" last-rc-change="1605589941" exec-time="85" queue-time="0" op-digest="4814a00abe6760a418e216388efe6271" op-secure-params="  user  " op-secure-digest="6a2b649d2bb672e8f75b11aa5a5500e9"/>
+          </lrm_resource>
+        </lrm_resources>
+      </lrm>
+    </node_state>
+    <node_state id="redis-bundle-2" remote_node="true" uname="redis-bundle-2" in_ccm="true" crm-debug-origin="do_state_transition">
+      <transient_attributes id="redis-bundle-2">
+        <instance_attributes id="status-redis-bundle-2"/>
+      </transient_attributes>
+      <lrm id="redis-bundle-2">
+        <lrm_resources>
+          <lrm_resource id="redis" type="redis" class="ocf" provider="heartbeat">
+            <lrm_rsc_op id="redis_last_0" operation_key="redis_monitor_0" operation="monitor" crm-debug-origin="do_update_resource" crm_feature_set="3.4.1" transition-key="95:54:7:40f880e4-b328-4380-9703-47856390a1e0" transition-magic="0:0;95:54:7:40f880e4-b328-4380-9703-47856390a1e0" exit-reason="" on_node="controller-1" call-id="745" rc-code="0" op-status="0" interval="0" last-rc-change="1605583428" last-run="1605583428" exec-time="409" queue-time="0" op-digest="b957ae893253e7d44077bc281c5b7142" op-secure-params="  user  " op-secure-digest="b957ae893253e7d44077bc281c5b7142"/>
+            <lrm_rsc_op id="redis_last_failure_0" operation_key="redis_monitor_0" operation="monitor" crm-debug-origin="do_update_resource" crm_feature_set="3.4.1" transition-key="95:54:7:40f880e4-b328-4380-9703-47856390a1e0" transition-magic="0:0;95:54:7:40f880e4-b328-4380-9703-47856390a1e0" exit-reason="" on_node="controller-1" call-id="745" rc-code="0" op-status="0" interval="0" last-rc-change="1605583428" last-run="1605583428" exec-time="409" queue-time="0" op-digest="b957ae893253e7d44077bc281c5b7142"/>
+            <lrm_rsc_op id="redis_monitor_60000" operation_key="redis_monitor_60000" operation="monitor" crm-debug-origin="do_update_resource" crm_feature_set="3.4.1" transition-key="193:55:0:40f880e4-b328-4380-9703-47856390a1e0" transition-magic="0:0;193:55:0:40f880e4-b328-4380-9703-47856390a1e0" exit-reason="" on_node="controller-1" call-id="751" rc-code="0" op-status="0" interval="60000" last-rc-change="1605583432" exec-time="656" queue-time="0" op-digest="0a6712ea09e8b855c1631e05e037ecaa" op-secure-params="  user  " op-secure-digest="b957ae893253e7d44077bc281c5b7142"/>
+            <lrm_rsc_op id="redis_monitor_45000" operation_key="redis_monitor_45000" operation="monitor" crm-debug-origin="do_update_resource" crm_feature_set="3.4.1" transition-key="192:55:0:40f880e4-b328-4380-9703-47856390a1e0" transition-magic="0:0;192:55:0:40f880e4-b328-4380-9703-47856390a1e0" exit-reason="" on_node="controller-1" call-id="753" rc-code="0" op-status="0" interval="45000" last-rc-change="1605583433" exec-time="333" queue-time="483" op-digest="0a6712ea09e8b855c1631e05e037ecaa" op-secure-params="  user  " op-secure-digest="b957ae893253e7d44077bc281c5b7142"/>
+          </lrm_resource>
+        </lrm_resources>
+      </lrm>
+    </node_state>
+    <node_state id="ovn-dbs-bundle-2" remote_node="true" uname="ovn-dbs-bundle-2" in_ccm="true" crm-debug-origin="do_state_transition" node_fenced="0">
+      <lrm id="ovn-dbs-bundle-2">
+        <lrm_resources>
+          <lrm_resource id="ovndb_servers" type="ovndb-servers" class="ocf" provider="ovn">
+            <lrm_rsc_op id="ovndb_servers_last_0" operation_key="ovndb_servers_start_0" operation="start" crm-debug-origin="do_update_resource" crm_feature_set="3.6.1" transition-key="262:1387:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;262:1387:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="controller-1" call-id="8" rc-code="0" op-status="0" interval="0" last-rc-change="1605589420" last-run="1605589420" exec-time="727" queue-time="0" op-digest="7862f7b1e7529bc75619b6a7a0139f33"/>
+            <lrm_rsc_op id="ovndb_servers_monitor_30000" operation_key="ovndb_servers_monitor_30000" operation="monitor" crm-debug-origin="do_update_resource" crm_feature_set="3.6.1" transition-key="264:1388:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;264:1388:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="controller-1" call-id="15" rc-code="0" op-status="0" interval="30000" last-rc-change="1605589422" exec-time="293" queue-time="0" op-digest="f3df1b864c6f011cbef4aebcde70f149"/>
+          </lrm_resource>
+        </lrm_resources>
+      </lrm>
+      <transient_attributes id="ovn-dbs-bundle-2">
+        <instance_attributes id="status-ovn-dbs-bundle-2"/>
+      </transient_attributes>
+    </node_state>
+    <node_state id="ovn-dbs-bundle-0" remote_node="true" uname="ovn-dbs-bundle-0" in_ccm="true" crm-debug-origin="do_state_transition">
+      <transient_attributes id="ovn-dbs-bundle-0">
+        <instance_attributes id="status-ovn-dbs-bundle-0"/>
+      </transient_attributes>
+      <lrm id="ovn-dbs-bundle-0">
+        <lrm_resources>
+          <lrm_resource id="ovndb_servers" type="ovndb-servers" class="ocf" provider="ovn">
+            <lrm_rsc_op id="ovndb_servers_last_0" operation_key="ovndb_servers_monitor_0" operation="monitor" crm-debug-origin="do_update_resource" crm_feature_set="3.4.1" transition-key="87:54:7:40f880e4-b328-4380-9703-47856390a1e0" transition-magic="0:8;87:54:7:40f880e4-b328-4380-9703-47856390a1e0" exit-reason="" on_node="controller-2" call-id="2694" rc-code="8" op-status="0" interval="0" last-rc-change="1605583428" last-run="1605583428" exec-time="418" queue-time="0" op-digest="7862f7b1e7529bc75619b6a7a0139f33"/>
+            <lrm_rsc_op id="ovndb_servers_last_failure_0" operation_key="ovndb_servers_monitor_0" operation="monitor" crm-debug-origin="do_update_resource" crm_feature_set="3.4.1" transition-key="87:54:7:40f880e4-b328-4380-9703-47856390a1e0" transition-magic="0:8;87:54:7:40f880e4-b328-4380-9703-47856390a1e0" exit-reason="" on_node="controller-2" call-id="2694" rc-code="8" op-status="0" interval="0" last-rc-change="1605583428" last-run="1605583428" exec-time="418" queue-time="0" op-digest="7862f7b1e7529bc75619b6a7a0139f33"/>
+            <lrm_rsc_op id="ovndb_servers_monitor_10000" operation_key="ovndb_servers_monitor_10000" operation="monitor" crm-debug-origin="do_update_resource" crm_feature_set="3.4.1" transition-key="264:55:8:40f880e4-b328-4380-9703-47856390a1e0" transition-magic="0:8;264:55:8:40f880e4-b328-4380-9703-47856390a1e0" exit-reason="" on_node="controller-2" call-id="2706" rc-code="8" op-status="0" interval="10000" last-rc-change="1605583433" exec-time="404" queue-time="0" op-digest="f3df1b864c6f011cbef4aebcde70f149"/>
+          </lrm_resource>
+        </lrm_resources>
+      </lrm>
+    </node_state>
+    <node_state id="ovn-dbs-bundle-1" remote_node="true" uname="ovn-dbs-bundle-1" in_ccm="true" crm-debug-origin="do_state_transition" node_fenced="0">
+      <lrm id="ovn-dbs-bundle-1">
+        <lrm_resources>
+          <lrm_resource id="ovndb_servers" type="ovndb-servers" class="ocf" provider="ovn">
+            <lrm_rsc_op id="ovndb_servers_last_0" operation_key="ovndb_servers_monitor_0" operation="monitor" crm-debug-origin="do_update_resource" crm_feature_set="3.6.1" transition-key="88:1376:7:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:7;88:1376:7:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="controller-0" call-id="6" rc-code="7" op-status="0" interval="0" last-rc-change="1605589384" last-run="1605589384" exec-time="199" queue-time="0" op-digest="7862f7b1e7529bc75619b6a7a0139f33"/>
+            <lrm_rsc_op id="ovndb_servers_monitor_30000" operation_key="ovndb_servers_monitor_30000" operation="monitor" crm-debug-origin="do_update_resource" crm_feature_set="3.6.1" transition-key="262:1367:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;262:1367:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="controller-0" call-id="1858" rc-code="0" op-status="0" interval="30000" last-rc-change="1605589346" exec-time="353" queue-time="0" op-digest="f3df1b864c6f011cbef4aebcde70f149"/>
+          </lrm_resource>
+        </lrm_resources>
+      </lrm>
+      <transient_attributes id="ovn-dbs-bundle-1">
+        <instance_attributes id="status-ovn-dbs-bundle-1"/>
+      </transient_attributes>
+    </node_state>
+    <node_state id="rabbitmq-bundle-0" remote_node="true" uname="rabbitmq-bundle-0" in_ccm="true" crm-debug-origin="do_update_resource" node_fenced="0">
+      <lrm id="rabbitmq-bundle-0">
+        <lrm_resources>
+          <lrm_resource id="rabbitmq" type="rabbitmq-cluster" class="ocf" provider="heartbeat">
+            <lrm_rsc_op id="rabbitmq_last_0" operation_key="rabbitmq_start_0" operation="start" crm-debug-origin="do_update_resource" crm_feature_set="3.6.1" transition-key="119:1407:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;119:1407:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="messaging-0" call-id="13" rc-code="0" op-status="0" interval="0" last-rc-change="1605589827" last-run="1605589827" exec-time="27288" queue-time="0" op-digest="e3a5f71f4c37be2ed068e4f0dcc847a9"/>
+            <lrm_rsc_op id="rabbitmq_monitor_10000" operation_key="rabbitmq_monitor_10000" operation="monitor" crm-debug-origin="do_update_resource" crm_feature_set="3.6.1" transition-key="119:1410:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;119:1410:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="messaging-0" call-id="52" rc-code="0" op-status="0" interval="10000" last-rc-change="1605589926" exec-time="3721" queue-time="0" op-digest="04bcb19b3c7c43f101badbd8f1e2eed2"/>
+          </lrm_resource>
+        </lrm_resources>
+      </lrm>
+    </node_state>
+    <node_state id="9" uname="messaging-2" in_ccm="true" crmd="online" join="member" expected="member" crm-debug-origin="do_update_resource">
+      <transient_attributes id="9">
+        <instance_attributes id="status-9">
+          <nvpair id="status-9-.node-unfenced" name="#node-unfenced" value="1605583427"/>
+          <nvpair id="status-9-rmq-node-attr-rabbitmq" name="rmq-node-attr-rabbitmq" value="rabbit@messaging-2"/>
+          <nvpair id="status-9-fail-count-stonith-fence_compute-fence-nova.start_0" name="fail-count-stonith-fence_compute-fence-nova#start_0" value="INFINITY"/>
+          <nvpair id="status-9-last-failure-stonith-fence_compute-fence-nova.start_0" name="last-failure-stonith-fence_compute-fence-nova#start_0" value="1605590006"/>
+        </instance_attributes>
+      </transient_attributes>
+      <lrm id="9">
+        <lrm_resources>
+          <lrm_resource id="rabbitmq-bundle-1" type="remote" class="ocf" provider="pacemaker" container="rabbitmq-bundle-podman-1">
+            <lrm_rsc_op id="rabbitmq-bundle-1_last_0" operation_key="rabbitmq-bundle-1_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="95:52:7:40f880e4-b328-4380-9703-47856390a1e0" transition-magic="0:7;95:52:7:40f880e4-b328-4380-9703-47856390a1e0" exit-reason="" on_node="messaging-2" call-id="7" rc-code="7" op-status="0" interval="0" last-rc-change="1605583423" last-run="1605583423" exec-time="0" queue-time="0" op-digest="e25f0ff041ed91bee8ee197d0ce2aebd" op-force-restart="  server  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
+          </lrm_resource>
+          <lrm_resource id="rabbitmq-bundle-2" type="remote" class="ocf" provider="pacemaker" container="rabbitmq-bundle-podman-2">
+            <lrm_rsc_op id="rabbitmq-bundle-2_last_0" operation_key="rabbitmq-bundle-2_start_0" operation="start" crm-debug-origin="do_update_resource" crm_feature_set="3.6.1" transition-key="112:1405:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;112:1405:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="messaging-2" call-id="21" rc-code="0" op-status="0" interval="0" last-rc-change="1605589822" last-run="1605589822" exec-time="0" queue-time="0" op-digest="593e15353c64e73e2efe61415c7dd44b" op-force-restart="  server  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
+            <lrm_rsc_op id="rabbitmq-bundle-2_monitor_30000" operation_key="rabbitmq-bundle-2_monitor_30000" operation="monitor" crm-debug-origin="do_update_resource" crm_feature_set="3.6.1" transition-key="116:1406:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;116:1406:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="messaging-2" call-id="22" rc-code="0" op-status="0" interval="30000" last-rc-change="1605589823" exec-time="0" queue-time="0" op-digest="10b0457d4221d44e95782a583ab2b288"/>
+          </lrm_resource>
+          <lrm_resource id="stonith-fence_ipmilan-525400642894" type="fence_ipmilan" class="stonith">
+            <lrm_rsc_op id="stonith-fence_ipmilan-525400642894_last_0" operation_key="stonith-fence_ipmilan-525400642894_start_0" operation="start" crm-debug-origin="do_update_resource" crm_feature_set="3.6.1" transition-key="272:1424:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;272:1424:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="messaging-2" call-id="142" rc-code="0" op-status="0" interval="0" last-rc-change="1605590006" last-run="1605590006" exec-time="415" queue-time="0" op-digest="1779ddd0abf841e7e9914f08b32da1a6" op-secure-params="  password passwd  " op-secure-digest="920d017ea35856c843a6bbf9d9832105"/>
+            <lrm_rsc_op id="stonith-fence_ipmilan-525400642894_monitor_60000" operation_key="stonith-fence_ipmilan-525400642894_monitor_60000" operation="monitor" crm-debug-origin="do_update_resource" crm_feature_set="3.6.1" transition-key="274:1424:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;274:1424:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="messaging-2" call-id="143" rc-code="0" op-status="0" interval="60000" last-rc-change="1605590007" exec-time="391" queue-time="0" op-digest="4ffb430f9403c55910379b4bb7e5de3d" op-secure-params="  password passwd  " op-secure-digest="920d017ea35856c843a6bbf9d9832105"/>
+          </lrm_resource>
+          <lrm_resource id="stonith-fence_ipmilan-525400e10267" type="fence_ipmilan" class="stonith">
+            <lrm_rsc_op id="stonith-fence_ipmilan-525400e10267_last_0" operation_key="stonith-fence_ipmilan-525400e10267_stop_0" operation="stop" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.1" transition-key="326:67:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;326:67:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="messaging-2" call-id="121" rc-code="0" op-status="0" interval="0" last-rc-change="1605585924" last-run="1605585924" exec-time="0" queue-time="0" op-digest="ad5ccd62a43794b237bdd30ae0887630"/>
+          </lrm_resource>
+          <lrm_resource id="stonith-fence_ipmilan-525400d5382b" type="fence_ipmilan" class="stonith">
+            <lrm_rsc_op id="stonith-fence_ipmilan-525400d5382b_last_0" operation_key="stonith-fence_ipmilan-525400d5382b_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="74:55:7:40f880e4-b328-4380-9703-47856390a1e0" transition-magic="0:7;74:55:7:40f880e4-b328-4380-9703-47856390a1e0" exit-reason="" on_node="messaging-2" call-id="62" rc-code="7" op-status="0" interval="0" last-rc-change="1605583433" last-run="1605583433" exec-time="0" queue-time="0" op-digest="03339c868b4e990d1eee35ee0d8fd924" op-secure-params="  password passwd  " op-secure-digest="d80496ebdfcec16ae6f6a8217f6c5c21"/>
+          </lrm_resource>
+          <lrm_resource id="compute-0" type="remote" class="ocf" provider="pacemaker">
+            <lrm_rsc_op id="compute-0_last_0" operation_key="compute-0_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="87:52:7:40f880e4-b328-4380-9703-47856390a1e0" transition-magic="0:7;87:52:7:40f880e4-b328-4380-9703-47856390a1e0" exit-reason="" on_node="messaging-2" call-id="1" rc-code="7" op-status="0" interval="0" last-rc-change="1605583423" last-run="1605583423" exec-time="0" queue-time="0" op-digest="94f4ed47fadb94317ef0f8959942f09e" op-force-restart="  server  " op-restart-digest="94f4ed47fadb94317ef0f8959942f09e"/>
+          </lrm_resource>
+          <lrm_resource id="compute-1" type="remote" class="ocf" provider="pacemaker">
+            <lrm_rsc_op id="compute-1_last_0" operation_key="compute-1_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="88:52:7:40f880e4-b328-4380-9703-47856390a1e0" transition-magic="0:7;88:52:7:40f880e4-b328-4380-9703-47856390a1e0" exit-reason="" on_node="messaging-2" call-id="2" rc-code="7" op-status="0" interval="0" last-rc-change="1605583423" last-run="1605583423" exec-time="0" queue-time="0" op-digest="4a9ef452428322fd1d0d0c44a6f176fd" op-force-restart="  server  " op-restart-digest="4a9ef452428322fd1d0d0c44a6f176fd"/>
+          </lrm_resource>
+          <lrm_resource id="stonith-fence_ipmilan-5254007b7920" type="fence_ipmilan" class="stonith">
+            <lrm_rsc_op id="stonith-fence_ipmilan-5254007b7920_last_0" operation_key="stonith-fence_ipmilan-5254007b7920_stop_0" operation="stop" crm-debug-origin="do_update_resource" crm_feature_set="3.6.1" transition-key="282:1404:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;282:1404:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="messaging-2" call-id="135" rc-code="0" op-status="0" interval="0" last-rc-change="1605589818" last-run="1605589818" exec-time="0" queue-time="0" op-digest="292cf370c85404b918bcf8312056ca36" op-secure-params="  password passwd  " op-secure-digest="78d581355e684910edb664ba961cf50d"/>
+            <lrm_rsc_op id="stonith-fence_ipmilan-5254007b7920_monitor_60000" operation_key="stonith-fence_ipmilan-5254007b7920_monitor_60000" operation="monitor" crm-debug-origin="do_update_resource" crm_feature_set="3.6.1" transition-key="277:1397:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;277:1397:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="messaging-2" call-id="129" rc-code="0" op-status="0" interval="60000" last-rc-change="1605589786" exec-time="453" queue-time="0" op-digest="91bc9c45f4cca48c0c30614d0126a670" op-secure-params="  password passwd  " op-secure-digest="78d581355e684910edb664ba961cf50d"/>
+          </lrm_resource>
+          <lrm_resource id="stonith-fence_ipmilan-525400ffc780" type="fence_ipmilan" class="stonith">
+            <lrm_rsc_op id="stonith-fence_ipmilan-525400ffc780_last_0" operation_key="stonith-fence_ipmilan-525400ffc780_start_0" operation="start" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.1" transition-key="321:49:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;321:49:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="messaging-2" call-id="118" rc-code="0" op-status="0" interval="0" last-rc-change="1605585911" last-run="1605585911" exec-time="385" queue-time="0" op-digest="d5b19f9189ef5c23bf62dd041a8a1cfd" op-secure-params="  password passwd  " op-secure-digest="4415a1b3c8ddcc34bc954c9b603fc36a"/>
+            <lrm_rsc_op id="stonith-fence_ipmilan-525400ffc780_monitor_60000" operation_key="stonith-fence_ipmilan-525400ffc780_monitor_60000" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.1" transition-key="323:50:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;323:50:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="messaging-2" call-id="119" rc-code="0" op-status="0" interval="60000" last-rc-change="1605585912" exec-time="438" queue-time="0" op-digest="917bb55d0970c23ab6379aa370f344f4" op-secure-params="  password passwd  " op-secure-digest="4415a1b3c8ddcc34bc954c9b603fc36a"/>
+          </lrm_resource>
+          <lrm_resource id="stonith-fence_ipmilan-525400bb150b" type="fence_ipmilan" class="stonith">
+            <lrm_rsc_op id="stonith-fence_ipmilan-525400bb150b_last_0" operation_key="stonith-fence_ipmilan-525400bb150b_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="75:55:7:40f880e4-b328-4380-9703-47856390a1e0" transition-magic="0:7;75:55:7:40f880e4-b328-4380-9703-47856390a1e0" exit-reason="" on_node="messaging-2" call-id="66" rc-code="7" op-status="0" interval="0" last-rc-change="1605583433" last-run="1605583433" exec-time="0" queue-time="0" op-digest="7069d4bd259f26c8e756d0cfe8359ac1" op-secure-params="  password passwd  " op-secure-digest="d7b4bc578fd079201c7ec804f2b8862f"/>
+          </lrm_resource>
+          <lrm_resource id="stonith-fence_ipmilan-525400dc0f81" type="fence_ipmilan" class="stonith">
+            <lrm_rsc_op id="stonith-fence_ipmilan-525400dc0f81_last_0" operation_key="stonith-fence_ipmilan-525400dc0f81_stop_0" operation="stop" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.1" transition-key="324:41:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;324:41:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="messaging-2" call-id="113" rc-code="0" op-status="0" interval="0" last-rc-change="1605585884" last-run="1605585884" exec-time="2" queue-time="0" op-digest="baa6fc182a42d0a5173739535c7c67fe"/>
+          </lrm_resource>
+          <lrm_resource id="rabbitmq-bundle-podman-0" type="podman" class="ocf" provider="heartbeat">
+            <lrm_rsc_op id="rabbitmq-bundle-podman-0_last_0" operation_key="rabbitmq-bundle-podman-0_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="92:52:7:40f880e4-b328-4380-9703-47856390a1e0" transition-magic="0:7;92:52:7:40f880e4-b328-4380-9703-47856390a1e0" exit-reason="" on_node="messaging-2" call-id="10" rc-code="7" op-status="0" interval="0" last-rc-change="1605583423" last-run="1605583423" exec-time="327" queue-time="0" op-digest="c723fb08ebe660ea9eda34004e84b918"/>
+          </lrm_resource>
+          <lrm_resource id="rabbitmq-bundle-podman-1" type="podman" class="ocf" provider="heartbeat">
+            <lrm_rsc_op id="rabbitmq-bundle-podman-1_last_0" operation_key="rabbitmq-bundle-podman-1_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="94:52:7:40f880e4-b328-4380-9703-47856390a1e0" transition-magic="0:7;94:52:7:40f880e4-b328-4380-9703-47856390a1e0" exit-reason="" on_node="messaging-2" call-id="15" rc-code="7" op-status="0" interval="0" last-rc-change="1605583423" last-run="1605583423" exec-time="161" queue-time="0" op-digest="f40d9a7c95e0b92d94aeb7d9bcdab2b4"/>
+          </lrm_resource>
+          <lrm_resource id="rabbitmq-bundle-podman-2" type="podman" class="ocf" provider="heartbeat">
+            <lrm_rsc_op id="rabbitmq-bundle-podman-2_last_0" operation_key="rabbitmq-bundle-podman-2_start_0" operation="start" crm-debug-origin="do_update_resource" crm_feature_set="3.6.1" transition-key="103:1404:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;103:1404:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="messaging-2" call-id="136" rc-code="0" op-status="0" interval="0" last-rc-change="1605589818" last-run="1605589818" exec-time="2079" queue-time="0" op-digest="a71af315a5809471ec6879cd2991dc19"/>
+            <lrm_rsc_op id="rabbitmq-bundle-podman-2_monitor_60000" operation_key="rabbitmq-bundle-podman-2_monitor_60000" operation="monitor" crm-debug-origin="do_update_resource" crm_feature_set="3.6.1" transition-key="111:1405:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;111:1405:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="messaging-2" call-id="137" rc-code="0" op-status="0" interval="60000" last-rc-change="1605589822" exec-time="550" queue-time="0" op-digest="d0a37a94693202e646b0acea34cd6deb"/>
+          </lrm_resource>
+          <lrm_resource id="galera-bundle-0" type="remote" class="ocf" provider="pacemaker" container="galera-bundle-podman-0">
+            <lrm_rsc_op id="galera-bundle-0_last_0" operation_key="galera-bundle-0_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="89:52:7:40f880e4-b328-4380-9703-47856390a1e0" transition-magic="0:7;89:52:7:40f880e4-b328-4380-9703-47856390a1e0" exit-reason="" on_node="messaging-2" call-id="3" rc-code="7" op-status="0" interval="0" last-rc-change="1605583423" last-run="1605583423" exec-time="0" queue-time="0" op-digest="dbc6b52d45a75a0b041af92265b22f9e" op-force-restart="  server  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
+          </lrm_resource>
+          <lrm_resource id="galera-bundle-1" type="remote" class="ocf" provider="pacemaker" container="galera-bundle-podman-1">
+            <lrm_rsc_op id="galera-bundle-1_last_0" operation_key="galera-bundle-1_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="90:52:7:40f880e4-b328-4380-9703-47856390a1e0" transition-magic="0:7;90:52:7:40f880e4-b328-4380-9703-47856390a1e0" exit-reason="" on_node="messaging-2" call-id="4" rc-code="7" op-status="0" interval="0" last-rc-change="1605583423" last-run="1605583423" exec-time="0" queue-time="0" op-digest="f6e3b46e18b24f6e1cca9639ec9b7c41" op-force-restart="  server  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
+          </lrm_resource>
+          <lrm_resource id="galera-bundle-2" type="remote" class="ocf" provider="pacemaker" container="galera-bundle-podman-2">
+            <lrm_rsc_op id="galera-bundle-2_last_0" operation_key="galera-bundle-2_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="91:52:7:40f880e4-b328-4380-9703-47856390a1e0" transition-magic="0:7;91:52:7:40f880e4-b328-4380-9703-47856390a1e0" exit-reason="" on_node="messaging-2" call-id="5" rc-code="7" op-status="0" interval="0" last-rc-change="1605583423" last-run="1605583423" exec-time="0" queue-time="0" op-digest="bf7cf9acd053cee24dc3401862009e40" op-force-restart="  server  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
+          </lrm_resource>
+          <lrm_resource id="redis-bundle-0" type="remote" class="ocf" provider="pacemaker" container="redis-bundle-podman-0">
+            <lrm_rsc_op id="redis-bundle-0_last_0" operation_key="redis-bundle-0_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="98:52:7:40f880e4-b328-4380-9703-47856390a1e0" transition-magic="0:7;98:52:7:40f880e4-b328-4380-9703-47856390a1e0" exit-reason="" on_node="messaging-2" call-id="8" rc-code="7" op-status="0" interval="0" last-rc-change="1605583423" last-run="1605583423" exec-time="0" queue-time="0" op-digest="f325849fbffe2e62970eb201a50da9f3" op-force-restart="  server  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
+          </lrm_resource>
+          <lrm_resource id="redis-bundle-1" type="remote" class="ocf" provider="pacemaker" container="redis-bundle-podman-1">
+            <lrm_rsc_op id="redis-bundle-1_last_0" operation_key="redis-bundle-1_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="99:52:7:40f880e4-b328-4380-9703-47856390a1e0" transition-magic="0:7;99:52:7:40f880e4-b328-4380-9703-47856390a1e0" exit-reason="" on_node="messaging-2" call-id="9" rc-code="7" op-status="0" interval="0" last-rc-change="1605583423" last-run="1605583423" exec-time="0" queue-time="0" op-digest="dd323696d6c8ed14cb71914c411664c9" op-force-restart="  server  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
+          </lrm_resource>
+          <lrm_resource id="redis-bundle-2" type="remote" class="ocf" provider="pacemaker" container="redis-bundle-podman-2">
+            <lrm_rsc_op id="redis-bundle-2_last_0" operation_key="redis-bundle-2_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="100:52:7:40f880e4-b328-4380-9703-47856390a1e0" transition-magic="0:7;100:52:7:40f880e4-b328-4380-9703-47856390a1e0" exit-reason="" on_node="messaging-2" call-id="10" rc-code="7" op-status="0" interval="0" last-rc-change="1605583423" last-run="1605583423" exec-time="0" queue-time="0" op-digest="cd98602d6f977947327050913302f861" op-force-restart="  server  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
+          </lrm_resource>
+          <lrm_resource id="ovn-dbs-bundle-1" type="remote" class="ocf" provider="pacemaker" container="ovn-dbs-bundle-podman-1">
+            <lrm_rsc_op id="ovn-dbs-bundle-1_last_0" operation_key="ovn-dbs-bundle-1_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="102:52:7:40f880e4-b328-4380-9703-47856390a1e0" transition-magic="0:7;102:52:7:40f880e4-b328-4380-9703-47856390a1e0" exit-reason="" on_node="messaging-2" call-id="12" rc-code="7" op-status="0" interval="0" last-rc-change="1605583423" last-run="1605583423" exec-time="0" queue-time="0" op-digest="d00e87492de6b83a85450cd667db2a88" op-force-restart="  server  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
+          </lrm_resource>
+          <lrm_resource id="ovn-dbs-bundle-0" type="remote" class="ocf" provider="pacemaker" container="ovn-dbs-bundle-podman-0">
+            <lrm_rsc_op id="ovn-dbs-bundle-0_last_0" operation_key="ovn-dbs-bundle-0_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="101:52:7:40f880e4-b328-4380-9703-47856390a1e0" transition-magic="0:7;101:52:7:40f880e4-b328-4380-9703-47856390a1e0" exit-reason="" on_node="messaging-2" call-id="11" rc-code="7" op-status="0" interval="0" last-rc-change="1605583423" last-run="1605583423" exec-time="0" queue-time="0" op-digest="bf04cc8b2becfb29770a97d109ad6c4f" op-force-restart="  server  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
+          </lrm_resource>
+          <lrm_resource id="stonith-fence_ipmilan-5254009cb549" type="fence_ipmilan" class="stonith">
+            <lrm_rsc_op id="stonith-fence_ipmilan-5254009cb549_last_0" operation_key="stonith-fence_ipmilan-5254009cb549_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="77:55:7:40f880e4-b328-4380-9703-47856390a1e0" transition-magic="0:7;77:55:7:40f880e4-b328-4380-9703-47856390a1e0" exit-reason="" on_node="messaging-2" call-id="74" rc-code="7" op-status="0" interval="0" last-rc-change="1605583433" last-run="1605583433" exec-time="0" queue-time="0" op-digest="da530999b2b0c233366dbd0dab07c65f" op-secure-params="  password passwd  " op-secure-digest="6153a0210bf9ca00a096fe7a933b3ca6"/>
+          </lrm_resource>
+          <lrm_resource id="ovn-dbs-bundle-2" type="remote" class="ocf" provider="pacemaker" container="ovn-dbs-bundle-podman-2">
+            <lrm_rsc_op id="ovn-dbs-bundle-2_last_0" operation_key="ovn-dbs-bundle-2_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="103:52:7:40f880e4-b328-4380-9703-47856390a1e0" transition-magic="0:7;103:52:7:40f880e4-b328-4380-9703-47856390a1e0" exit-reason="" on_node="messaging-2" call-id="13" rc-code="7" op-status="0" interval="0" last-rc-change="1605583423" last-run="1605583423" exec-time="0" queue-time="0" op-digest="015c999adc4143966a5e0ba98e5d74af" op-force-restart="  server  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
+          </lrm_resource>
+          <lrm_resource id="stonith-fence_compute-fence-nova" type="fence_compute" class="stonith">
+            <lrm_rsc_op id="stonith-fence_compute-fence-nova_last_0" operation_key="stonith-fence_compute-fence-nova_stop_0" operation="stop" crm-debug-origin="do_update_resource" crm_feature_set="3.4.1" transition-key="56:1424:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;56:1424:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="messaging-2" call-id="141" rc-code="0" op-status="0" interval="0" last-rc-change="1605590006" last-run="1605590006" exec-time="0" queue-time="0" op-digest="04758bda751b3d5aa6c380933a6cf696" op-secure-params="  password passwd  " op-secure-digest="e0992836f72674b3c1b56e40d152bdf9"/>
+            <lrm_rsc_op id="stonith-fence_compute-fence-nova_last_failure_0" operation_key="stonith-fence_compute-fence-nova_start_0" operation="start" crm-debug-origin="do_update_resource" crm_feature_set="3.6.1" transition-key="246:1422:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:1;246:1422:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="messaging-2" call-id="140" rc-code="1" op-status="0" interval="0" last-rc-change="1605589997" last-run="1605589997" exec-time="9030" queue-time="0" op-digest="04758bda751b3d5aa6c380933a6cf696"/>
+          </lrm_resource>
+          <lrm_resource id="stonith-fence_ipmilan-5254003f88b4" type="fence_ipmilan" class="stonith">
+            <lrm_rsc_op id="stonith-fence_ipmilan-5254003f88b4_last_0" operation_key="stonith-fence_ipmilan-5254003f88b4_stop_0" operation="stop" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.1" transition-key="292:473:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;292:473:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="messaging-2" call-id="125" rc-code="0" op-status="0" interval="0" last-rc-change="1605586078" last-run="1605586078" exec-time="0" queue-time="0" op-digest="e4ae59cf662c224d9817c0d0331d50ba"/>
+          </lrm_resource>
+          <lrm_resource id="stonith-fence_ipmilan-52540033df9c" type="fence_ipmilan" class="stonith">
+            <lrm_rsc_op id="stonith-fence_ipmilan-52540033df9c_last_0" operation_key="stonith-fence_ipmilan-52540033df9c_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="76:54:7:40f880e4-b328-4380-9703-47856390a1e0" transition-magic="0:7;76:54:7:40f880e4-b328-4380-9703-47856390a1e0" exit-reason="" on_node="messaging-2" call-id="41" rc-code="7" op-status="0" interval="0" last-rc-change="1605583428" last-run="1605583428" exec-time="0" queue-time="0" op-digest="b0341087994098c62f29bd703448ffed" op-secure-params="  password passwd  " op-secure-digest="4df029b6ad27db68abf3c71606f906ea"/>
+          </lrm_resource>
+          <lrm_resource id="nova-evacuate" type="NovaEvacuate" class="ocf" provider="openstack">
+            <lrm_rsc_op id="nova-evacuate_last_0" operation_key="nova-evacuate_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="105:52:7:40f880e4-b328-4380-9703-47856390a1e0" transition-magic="0:7;105:52:7:40f880e4-b328-4380-9703-47856390a1e0" exit-reason="" on_node="messaging-2" call-id="30" rc-code="7" op-status="0" interval="0" last-rc-change="1605583423" last-run="1605583423" exec-time="76" queue-time="0" op-digest="8c367ebe0409afc3686f512ae68b1ee4" op-secure-params="  password  " op-secure-digest="f89eeb9446a58fb145857e36589bd2ee"/>
+          </lrm_resource>
+          <lrm_resource id="rabbitmq-bundle-0" type="remote" class="ocf" provider="pacemaker" container="rabbitmq-bundle-podman-0">
+            <lrm_rsc_op id="rabbitmq-bundle-0_last_0" operation_key="rabbitmq-bundle-0_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.4.1" transition-key="93:52:7:40f880e4-b328-4380-9703-47856390a1e0" transition-magic="0:7;93:52:7:40f880e4-b328-4380-9703-47856390a1e0" exit-reason="" on_node="messaging-2" call-id="6" rc-code="7" op-status="0" interval="0" last-rc-change="1605583423" last-run="1605583423" exec-time="0" queue-time="0" op-digest="a41ad5f9625676395b163a06987de2d6" op-force-restart="  server  " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
+          </lrm_resource>
+          <lrm_resource id="stonith-fence_ipmilan-5254001f5f3c" type="fence_ipmilan" class="stonith">
+            <lrm_rsc_op id="stonith-fence_ipmilan-5254001f5f3c_last_0" operation_key="stonith-fence_ipmilan-5254001f5f3c_stop_0" operation="stop" crm-debug-origin="do_update_resource" crm_feature_set="3.6.1" transition-key="262:1422:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;262:1422:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="messaging-2" call-id="139" rc-code="0" op-status="0" interval="0" last-rc-change="1605589997" last-run="1605589997" exec-time="3" queue-time="0" op-digest="859262e1216f50b739b9ff444e605375" op-secure-params="  password passwd  " op-secure-digest="95ad05342de9eab61bee697cec0a352e"/>
+            <lrm_rsc_op id="stonith-fence_ipmilan-5254001f5f3c_monitor_60000" operation_key="stonith-fence_ipmilan-5254001f5f3c_monitor_60000" operation="monitor" crm-debug-origin="do_update_resource" crm_feature_set="3.6.1" transition-key="255:1403:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;255:1403:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="messaging-2" call-id="133" rc-code="0" op-status="0" interval="60000" last-rc-change="1605589817" exec-time="813" queue-time="0" op-digest="8fc39fa18da80977eeaa9f36e53a59ef" op-secure-params="  password passwd  " op-secure-digest="95ad05342de9eab61bee697cec0a352e"/>
+          </lrm_resource>
+        </lrm_resources>
+      </lrm>
+    </node_state>
+    <node_state remote_node="true" id="rabbitmq-bundle-2" uname="rabbitmq-bundle-2" in_ccm="true" crm-debug-origin="do_update_resource" node_fenced="0">
+      <lrm id="rabbitmq-bundle-2">
+        <lrm_resources>
+          <lrm_resource id="rabbitmq" type="rabbitmq-cluster" class="ocf" provider="heartbeat">
+            <lrm_rsc_op id="rabbitmq_last_0" operation_key="rabbitmq_start_0" operation="start" crm-debug-origin="do_update_resource" crm_feature_set="3.6.1" transition-key="127:1409:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;127:1409:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="messaging-2" call-id="15" rc-code="0" op-status="0" interval="0" last-rc-change="1605589890" last-run="1605589890" exec-time="35745" queue-time="0" op-digest="e3a5f71f4c37be2ed068e4f0dcc847a9"/>
+            <lrm_rsc_op id="rabbitmq_monitor_10000" operation_key="rabbitmq_monitor_10000" operation="monitor" crm-debug-origin="do_update_resource" crm_feature_set="3.6.1" transition-key="125:1410:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" transition-magic="0:0;125:1410:0:51c2f6fa-d5ae-4ae7-b8df-b121f8ea9269" exit-reason="" on_node="messaging-2" call-id="35" rc-code="0" op-status="0" interval="10000" last-rc-change="1605589926" exec-time="3740" queue-time="0" op-digest="04bcb19b3c7c43f101badbd8f1e2eed2"/>
+          </lrm_resource>
+        </lrm_resources>
+      </lrm>
+    </node_state>
+  </status>
+</cib>
-- 
1.8.3.1