4355 lines
374 KiB
Diff
4355 lines
374 KiB
Diff
From 4540ce980ae861ab1770cd3d9a4e09cf4830dd6c Mon Sep 17 00:00:00 2001
|
|
From: Ken Gaillot <kgaillot@redhat.com>
|
|
Date: Fri, 4 Dec 2020 17:16:06 -0600
|
|
Subject: [PATCH 02/12] Low: xml: clone constraints schema in preparation for
|
|
changes
|
|
|
|
---
|
|
xml/constraints-3.6.rng | 256 ++++++++++++++++++++++++++++++++++++++++++++++++
|
|
1 file changed, 256 insertions(+)
|
|
create mode 100644 xml/constraints-3.6.rng
|
|
|
|
diff --git a/xml/constraints-3.6.rng b/xml/constraints-3.6.rng
|
|
new file mode 100644
|
|
index 0000000..f75d7b4
|
|
--- /dev/null
|
|
+++ b/xml/constraints-3.6.rng
|
|
@@ -0,0 +1,256 @@
|
|
+<?xml version="1.0" encoding="UTF-8"?>
|
|
+<grammar xmlns="http://relaxng.org/ns/structure/1.0"
|
|
+ datatypeLibrary="http://www.w3.org/2001/XMLSchema-datatypes">
|
|
+ <start>
|
|
+ <ref name="element-constraints"/>
|
|
+ </start>
|
|
+
|
|
+ <define name="element-constraints">
|
|
+ <element name="constraints">
|
|
+ <zeroOrMore>
|
|
+ <choice>
|
|
+ <ref name="element-location"/>
|
|
+ <ref name="element-colocation"/>
|
|
+ <ref name="element-order"/>
|
|
+ <ref name="element-rsc_ticket"/>
|
|
+ </choice>
|
|
+ </zeroOrMore>
|
|
+ </element>
|
|
+ </define>
|
|
+
|
|
+ <define name="element-location">
|
|
+ <element name="rsc_location">
|
|
+ <attribute name="id"><data type="ID"/></attribute>
|
|
+ <choice>
|
|
+ <group>
|
|
+ <choice>
|
|
+ <attribute name="rsc"><data type="IDREF"/></attribute>
|
|
+ <attribute name="rsc-pattern"><text/></attribute>
|
|
+ </choice>
|
|
+ <optional>
|
|
+ <attribute name="role">
|
|
+ <ref name="attribute-roles"/>
|
|
+ </attribute>
|
|
+ </optional>
|
|
+ </group>
|
|
+ <oneOrMore>
|
|
+ <ref name="element-resource-set"/>
|
|
+ </oneOrMore>
|
|
+ </choice>
|
|
+ <choice>
|
|
+ <group>
|
|
+ <externalRef href="score.rng"/>
|
|
+ <attribute name="node"><text/></attribute>
|
|
+ </group>
|
|
+ <oneOrMore>
|
|
+ <externalRef href="rule-3.5.rng"/>
|
|
+ </oneOrMore>
|
|
+ </choice>
|
|
+ <optional>
|
|
+ <ref name="element-lifetime"/>
|
|
+ </optional>
|
|
+ <optional>
|
|
+ <attribute name="resource-discovery">
|
|
+ <ref name="attribute-discovery"/>
|
|
+ </attribute>
|
|
+ </optional>
|
|
+ </element>
|
|
+ </define>
|
|
+
|
|
+ <define name="element-resource-set">
|
|
+ <element name="resource_set">
|
|
+ <choice>
|
|
+ <attribute name="id-ref"><data type="IDREF"/></attribute>
|
|
+ <group>
|
|
+ <attribute name="id"><data type="ID"/></attribute>
|
|
+ <optional>
|
|
+ <attribute name="sequential"><data type="boolean"/></attribute>
|
|
+ </optional>
|
|
+ <optional>
|
|
+ <attribute name="require-all"><data type="boolean"/></attribute>
|
|
+ </optional>
|
|
+ <optional>
|
|
+ <attribute name="ordering">
|
|
+ <choice>
|
|
+ <value>group</value>
|
|
+ <value>listed</value>
|
|
+ </choice>
|
|
+ </attribute>
|
|
+ </optional>
|
|
+ <optional>
|
|
+ <attribute name="action">
|
|
+ <ref name="attribute-actions"/>
|
|
+ </attribute>
|
|
+ </optional>
|
|
+ <optional>
|
|
+ <attribute name="role">
|
|
+ <ref name="attribute-roles"/>
|
|
+ </attribute>
|
|
+ </optional>
|
|
+ <optional>
|
|
+ <choice>
|
|
+ <externalRef href="score.rng"/>
|
|
+ <attribute name="kind">
|
|
+ <ref name="order-types"/>
|
|
+ </attribute>
|
|
+ </choice>
|
|
+ </optional>
|
|
+ <oneOrMore>
|
|
+ <element name="resource_ref">
|
|
+ <attribute name="id"><data type="IDREF"/></attribute>
|
|
+ </element>
|
|
+ </oneOrMore>
|
|
+ </group>
|
|
+ </choice>
|
|
+ </element>
|
|
+ </define>
|
|
+
|
|
+ <define name="element-colocation">
|
|
+ <element name="rsc_colocation">
|
|
+ <attribute name="id"><data type="ID"/></attribute>
|
|
+ <optional>
|
|
+ <externalRef href="score.rng"/>
|
|
+ </optional>
|
|
+ <optional>
|
|
+ <ref name="element-lifetime"/>
|
|
+ </optional>
|
|
+ <choice>
|
|
+ <oneOrMore>
|
|
+ <ref name="element-resource-set"/>
|
|
+ </oneOrMore>
|
|
+ <group>
|
|
+ <attribute name="rsc"><data type="IDREF"/></attribute>
|
|
+ <attribute name="with-rsc"><data type="IDREF"/></attribute>
|
|
+ <optional>
|
|
+ <attribute name="node-attribute"><text/></attribute>
|
|
+ </optional>
|
|
+ <optional>
|
|
+ <attribute name="rsc-role">
|
|
+ <ref name="attribute-roles"/>
|
|
+ </attribute>
|
|
+ </optional>
|
|
+ <optional>
|
|
+ <attribute name="with-rsc-role">
|
|
+ <ref name="attribute-roles"/>
|
|
+ </attribute>
|
|
+ </optional>
|
|
+ </group>
|
|
+ </choice>
|
|
+ </element>
|
|
+ </define>
|
|
+
|
|
+ <define name="element-order">
|
|
+ <element name="rsc_order">
|
|
+ <attribute name="id"><data type="ID"/></attribute>
|
|
+ <optional>
|
|
+ <ref name="element-lifetime"/>
|
|
+ </optional>
|
|
+ <optional>
|
|
+ <attribute name="symmetrical"><data type="boolean"/></attribute>
|
|
+ </optional>
|
|
+ <optional>
|
|
+ <attribute name="require-all"><data type="boolean"/></attribute>
|
|
+ </optional>
|
|
+ <optional>
|
|
+ <choice>
|
|
+ <externalRef href="score.rng"/>
|
|
+ <attribute name="kind">
|
|
+ <ref name="order-types"/>
|
|
+ </attribute>
|
|
+ </choice>
|
|
+ </optional>
|
|
+ <choice>
|
|
+ <oneOrMore>
|
|
+ <ref name="element-resource-set"/>
|
|
+ </oneOrMore>
|
|
+ <group>
|
|
+ <attribute name="first"><data type="IDREF"/></attribute>
|
|
+ <attribute name="then"><data type="IDREF"/></attribute>
|
|
+ <optional>
|
|
+ <attribute name="first-action">
|
|
+ <ref name="attribute-actions"/>
|
|
+ </attribute>
|
|
+ </optional>
|
|
+ <optional>
|
|
+ <attribute name="then-action">
|
|
+ <ref name="attribute-actions"/>
|
|
+ </attribute>
|
|
+ </optional>
|
|
+ </group>
|
|
+ </choice>
|
|
+ </element>
|
|
+ </define>
|
|
+
|
|
+ <define name="element-rsc_ticket">
|
|
+ <element name="rsc_ticket">
|
|
+ <attribute name="id"><data type="ID"/></attribute>
|
|
+ <choice>
|
|
+ <oneOrMore>
|
|
+ <ref name="element-resource-set"/>
|
|
+ </oneOrMore>
|
|
+ <group>
|
|
+ <attribute name="rsc"><data type="IDREF"/></attribute>
|
|
+ <optional>
|
|
+ <attribute name="rsc-role">
|
|
+ <ref name="attribute-roles"/>
|
|
+ </attribute>
|
|
+ </optional>
|
|
+ </group>
|
|
+ </choice>
|
|
+ <attribute name="ticket"><text/></attribute>
|
|
+ <optional>
|
|
+ <attribute name="loss-policy">
|
|
+ <choice>
|
|
+ <value>stop</value>
|
|
+ <value>demote</value>
|
|
+ <value>fence</value>
|
|
+ <value>freeze</value>
|
|
+ </choice>
|
|
+ </attribute>
|
|
+ </optional>
|
|
+ </element>
|
|
+ </define>
|
|
+
|
|
+ <define name="attribute-discovery">
|
|
+ <choice>
|
|
+ <value>always</value>
|
|
+ <value>never</value>
|
|
+ <value>exclusive</value>
|
|
+ </choice>
|
|
+ </define>
|
|
+
|
|
+ <define name="attribute-actions">
|
|
+ <choice>
|
|
+ <value>start</value>
|
|
+ <value>promote</value>
|
|
+ <value>demote</value>
|
|
+ <value>stop</value>
|
|
+ </choice>
|
|
+ </define>
|
|
+
|
|
+ <define name="attribute-roles">
|
|
+ <choice>
|
|
+ <value>Stopped</value>
|
|
+ <value>Started</value>
|
|
+ <value>Master</value>
|
|
+ <value>Slave</value>
|
|
+ </choice>
|
|
+ </define>
|
|
+
|
|
+ <define name="order-types">
|
|
+ <choice>
|
|
+ <value>Optional</value>
|
|
+ <value>Mandatory</value>
|
|
+ <value>Serialize</value>
|
|
+ </choice>
|
|
+ </define>
|
|
+
|
|
+ <define name="element-lifetime">
|
|
+ <element name="lifetime">
|
|
+ <oneOrMore>
|
|
+ <externalRef href="rule-3.5.rng"/>
|
|
+ </oneOrMore>
|
|
+ </element>
|
|
+ </define>
|
|
+
|
|
+</grammar>
|
|
--
|
|
1.8.3.1
|
|
|
|
|
|
From f836f5c61b37ca12df55cf2e2b951eeebad8d4f2 Mon Sep 17 00:00:00 2001
|
|
From: Ken Gaillot <kgaillot@redhat.com>
|
|
Date: Fri, 4 Dec 2020 17:25:23 -0600
|
|
Subject: [PATCH 03/12] Feature: xml: allow colocation constraints to take
|
|
"influence" option
|
|
|
|
Semantics not yet implemented
|
|
---
|
|
xml/constraints-3.6.rng | 3 +++
|
|
1 file changed, 3 insertions(+)
|
|
|
|
diff --git a/xml/constraints-3.6.rng b/xml/constraints-3.6.rng
|
|
index f75d7b4..fece6b0 100644
|
|
--- a/xml/constraints-3.6.rng
|
|
+++ b/xml/constraints-3.6.rng
|
|
@@ -112,6 +112,9 @@
|
|
<externalRef href="score.rng"/>
|
|
</optional>
|
|
<optional>
|
|
+ <attribute name="influence"><text/></attribute>
|
|
+ </optional>
|
|
+ <optional>
|
|
<ref name="element-lifetime"/>
|
|
</optional>
|
|
<choice>
|
|
--
|
|
1.8.3.1
|
|
|
|
|
|
From 0e9ec9d6c4c1885e246fa59b6857300ddda42133 Mon Sep 17 00:00:00 2001
|
|
From: Ken Gaillot <kgaillot@redhat.com>
|
|
Date: Fri, 4 Dec 2020 17:28:51 -0600
|
|
Subject: [PATCH 04/12] Test: cts-cli: update for schema version bump
|
|
|
|
---
|
|
cts/cli/regression.upgrade.exp | 7 +++++--
|
|
cts/cli/regression.validity.exp | 22 ++++++++++++++++++----
|
|
2 files changed, 23 insertions(+), 6 deletions(-)
|
|
|
|
diff --git a/cts/cli/regression.upgrade.exp b/cts/cli/regression.upgrade.exp
|
|
index 10f6309..2210ba7 100644
|
|
--- a/cts/cli/regression.upgrade.exp
|
|
+++ b/cts/cli/regression.upgrade.exp
|
|
@@ -85,8 +85,11 @@ update_validation debug: Configuration valid for schema: pacemaker-3.4
|
|
update_validation debug: pacemaker-3.4-style configuration is also valid for pacemaker-3.5
|
|
update_validation debug: Testing 'pacemaker-3.5' validation (19 of X)
|
|
update_validation debug: Configuration valid for schema: pacemaker-3.5
|
|
-update_validation trace: Stopping at pacemaker-3.5
|
|
-update_validation info: Transformed the configuration from pacemaker-2.10 to pacemaker-3.5
|
|
+update_validation debug: pacemaker-3.5-style configuration is also valid for pacemaker-3.6
|
|
+update_validation debug: Testing 'pacemaker-3.6' validation (20 of X)
|
|
+update_validation debug: Configuration valid for schema: pacemaker-3.6
|
|
+update_validation trace: Stopping at pacemaker-3.6
|
|
+update_validation info: Transformed the configuration from pacemaker-2.10 to pacemaker-3.6
|
|
=#=#=#= Current cib after: Upgrade to latest CIB schema (trigger 2.10.xsl + the wrapping) =#=#=#=
|
|
<cib epoch="2" num_updates="0" admin_epoch="1">
|
|
<configuration>
|
|
diff --git a/cts/cli/regression.validity.exp b/cts/cli/regression.validity.exp
|
|
index 88ca98e..bd6f499 100644
|
|
--- a/cts/cli/regression.validity.exp
|
|
+++ b/cts/cli/regression.validity.exp
|
|
@@ -113,7 +113,11 @@ update_validation debug: Testing 'pacemaker-3.5' validation (19 of X)
|
|
element rsc_order: Relax-NG validity error : Invalid attribute first-action for element rsc_order
|
|
element rsc_order: Relax-NG validity error : Element constraints has extra content: rsc_order
|
|
update_validation trace: pacemaker-3.5 validation failed
|
|
-Cannot upgrade configuration (claiming schema pacemaker-1.2) to at least pacemaker-3.0 because it does not validate with any schema from pacemaker-1.2 to pacemaker-3.5
|
|
+update_validation debug: Testing 'pacemaker-3.6' validation (20 of X)
|
|
+element rsc_order: Relax-NG validity error : Invalid attribute first-action for element rsc_order
|
|
+element rsc_order: Relax-NG validity error : Element constraints has extra content: rsc_order
|
|
+update_validation trace: pacemaker-3.6 validation failed
|
|
+Cannot upgrade configuration (claiming schema pacemaker-1.2) to at least pacemaker-3.0 because it does not validate with any schema from pacemaker-1.2 to pacemaker-3.6
|
|
=#=#=#= End test: Run crm_simulate with invalid CIB (enum violation) - Invalid configuration (78) =#=#=#=
|
|
* Passed: crm_simulate - Run crm_simulate with invalid CIB (enum violation)
|
|
=#=#=#= Begin test: Try to make resulting CIB invalid (unrecognized validate-with) =#=#=#=
|
|
@@ -212,7 +216,10 @@ update_validation trace: pacemaker-3.4 validation failed
|
|
update_validation debug: Testing 'pacemaker-3.5' validation (19 of X)
|
|
element cib: Relax-NG validity error : Invalid attribute validate-with for element cib
|
|
update_validation trace: pacemaker-3.5 validation failed
|
|
-Cannot upgrade configuration (claiming schema pacemaker-9999.0) to at least pacemaker-3.0 because it does not validate with any schema from unknown to pacemaker-3.5
|
|
+update_validation debug: Testing 'pacemaker-3.6' validation (20 of X)
|
|
+element cib: Relax-NG validity error : Invalid attribute validate-with for element cib
|
|
+update_validation trace: pacemaker-3.6 validation failed
|
|
+Cannot upgrade configuration (claiming schema pacemaker-9999.0) to at least pacemaker-3.0 because it does not validate with any schema from unknown to pacemaker-3.6
|
|
=#=#=#= End test: Run crm_simulate with invalid CIB (unrecognized validate-with) - Invalid configuration (78) =#=#=#=
|
|
* Passed: crm_simulate - Run crm_simulate with invalid CIB (unrecognized validate-with)
|
|
=#=#=#= Begin test: Try to make resulting CIB invalid, but possibly recoverable (valid with X.Y+1) =#=#=#=
|
|
@@ -306,8 +313,11 @@ update_validation debug: Configuration valid for schema: pacemaker-3.4
|
|
update_validation debug: pacemaker-3.4-style configuration is also valid for pacemaker-3.5
|
|
update_validation debug: Testing 'pacemaker-3.5' validation (19 of X)
|
|
update_validation debug: Configuration valid for schema: pacemaker-3.5
|
|
-update_validation trace: Stopping at pacemaker-3.5
|
|
-update_validation info: Transformed the configuration from pacemaker-1.2 to pacemaker-3.5
|
|
+update_validation debug: pacemaker-3.5-style configuration is also valid for pacemaker-3.6
|
|
+update_validation debug: Testing 'pacemaker-3.6' validation (20 of X)
|
|
+update_validation debug: Configuration valid for schema: pacemaker-3.6
|
|
+update_validation trace: Stopping at pacemaker-3.6
|
|
+update_validation info: Transformed the configuration from pacemaker-1.2 to pacemaker-3.6
|
|
unpack_resources error: Resource start-up disabled since no STONITH resources have been defined
|
|
unpack_resources error: Either configure some or disable STONITH with the stonith-enabled option
|
|
unpack_resources error: NOTE: Clusters with shared data need STONITH to ensure data integrity
|
|
@@ -417,6 +427,8 @@ element rsc_order: Relax-NG validity error : Invalid attribute first-action for
|
|
element rsc_order: Relax-NG validity error : Element constraints has extra content: rsc_order
|
|
element rsc_order: Relax-NG validity error : Invalid attribute first-action for element rsc_order
|
|
element rsc_order: Relax-NG validity error : Element constraints has extra content: rsc_order
|
|
+element rsc_order: Relax-NG validity error : Invalid attribute first-action for element rsc_order
|
|
+element rsc_order: Relax-NG validity error : Element constraints has extra content: rsc_order
|
|
=#=#=#= Current cib after: Make resulting CIB invalid, and without validate-with attribute =#=#=#=
|
|
<cib epoch="31" num_updates="0" admin_epoch="0" validate-with="none">
|
|
<configuration>
|
|
@@ -478,6 +490,8 @@ validity.bad.xml:10: element rsc_order: Relax-NG validity error : Invalid attrib
|
|
validity.bad.xml:10: element rsc_order: Relax-NG validity error : Element constraints has extra content: rsc_order
|
|
validity.bad.xml:10: element rsc_order: Relax-NG validity error : Invalid attribute first-action for element rsc_order
|
|
validity.bad.xml:10: element rsc_order: Relax-NG validity error : Element constraints has extra content: rsc_order
|
|
+validity.bad.xml:10: element rsc_order: Relax-NG validity error : Invalid attribute first-action for element rsc_order
|
|
+validity.bad.xml:10: element rsc_order: Relax-NG validity error : Element constraints has extra content: rsc_order
|
|
unpack_resources error: Resource start-up disabled since no STONITH resources have been defined
|
|
unpack_resources error: Either configure some or disable STONITH with the stonith-enabled option
|
|
unpack_resources error: NOTE: Clusters with shared data need STONITH to ensure data integrity
|
|
--
|
|
1.8.3.1
|
|
|
|
|
|
From 2e7e02bae2432feebb9d731030da808e33ff49ad Mon Sep 17 00:00:00 2001
|
|
From: Ken Gaillot <kgaillot@redhat.com>
|
|
Date: Thu, 10 Dec 2020 15:46:28 -0600
|
|
Subject: [PATCH 05/12] Refactor: scheduler: add and parse "critical" resource
|
|
meta-attribute
|
|
|
|
Semantics not yet implemented.
|
|
---
|
|
include/crm/msg_xml.h | 3 ++-
|
|
include/crm/pengine/pe_types.h | 1 +
|
|
lib/pengine/complex.c | 5 +++++
|
|
3 files changed, 8 insertions(+), 1 deletion(-)
|
|
|
|
diff --git a/include/crm/msg_xml.h b/include/crm/msg_xml.h
|
|
index c8b528b..d5ac418 100644
|
|
--- a/include/crm/msg_xml.h
|
|
+++ b/include/crm/msg_xml.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.
|
|
*
|
|
@@ -217,6 +217,7 @@ extern "C" {
|
|
# define XML_RSC_ATTR_REMOTE_RA_ADDR "addr"
|
|
# define XML_RSC_ATTR_REMOTE_RA_SERVER "server"
|
|
# define XML_RSC_ATTR_REMOTE_RA_PORT "port"
|
|
+# define XML_RSC_ATTR_CRITICAL "critical"
|
|
|
|
# define XML_REMOTE_ATTR_RECONNECT_INTERVAL "reconnect_interval"
|
|
|
|
diff --git a/include/crm/pengine/pe_types.h b/include/crm/pengine/pe_types.h
|
|
index 1416cee..7d90c42 100644
|
|
--- a/include/crm/pengine/pe_types.h
|
|
+++ b/include/crm/pengine/pe_types.h
|
|
@@ -251,6 +251,7 @@ struct pe_node_s {
|
|
# define pe_rsc_stop 0x00001000ULL
|
|
# define pe_rsc_reload 0x00002000ULL
|
|
# define pe_rsc_allow_remote_remotes 0x00004000ULL
|
|
+# define pe_rsc_critical 0x00008000ULL
|
|
|
|
# define pe_rsc_failed 0x00010000ULL
|
|
# define pe_rsc_runnable 0x00040000ULL
|
|
diff --git a/lib/pengine/complex.c b/lib/pengine/complex.c
|
|
index 60199c7..5d7d628 100644
|
|
--- a/lib/pengine/complex.c
|
|
+++ b/lib/pengine/complex.c
|
|
@@ -608,6 +608,11 @@ common_unpack(xmlNode * xml_obj, pe_resource_t ** rsc,
|
|
value = g_hash_table_lookup((*rsc)->meta, XML_CIB_ATTR_PRIORITY);
|
|
(*rsc)->priority = crm_parse_int(value, "0");
|
|
|
|
+ value = g_hash_table_lookup((*rsc)->meta, XML_RSC_ATTR_CRITICAL);
|
|
+ if ((value == NULL) || crm_is_true(value)) {
|
|
+ pe__set_resource_flags(*rsc, pe_rsc_critical);
|
|
+ }
|
|
+
|
|
value = g_hash_table_lookup((*rsc)->meta, XML_RSC_ATTR_NOTIFY);
|
|
if (crm_is_true(value)) {
|
|
pe__set_resource_flags(*rsc, pe_rsc_notify);
|
|
--
|
|
1.8.3.1
|
|
|
|
|
|
From a48e04ac54a3b9cf8292f3d06891ef6bf91a4c49 Mon Sep 17 00:00:00 2001
|
|
From: Ken Gaillot <kgaillot@redhat.com>
|
|
Date: Fri, 4 Dec 2020 16:35:35 -0600
|
|
Subject: [PATCH 06/12] Refactor: scheduler: add and parse "influence"
|
|
colocation property
|
|
|
|
Semantics not yet implemented.
|
|
---
|
|
include/crm/msg_xml.h | 1 +
|
|
include/pcmki/pcmki_sched_utils.h | 4 +-
|
|
include/pcmki/pcmki_scheduler.h | 3 +-
|
|
lib/pacemaker/pcmk_sched_bundle.c | 9 ++--
|
|
lib/pacemaker/pcmk_sched_constraints.c | 85 +++++++++++++++++++++++++++-------
|
|
lib/pacemaker/pcmk_sched_group.c | 8 +++-
|
|
lib/pacemaker/pcmk_sched_native.c | 6 ++-
|
|
7 files changed, 89 insertions(+), 27 deletions(-)
|
|
|
|
diff --git a/include/crm/msg_xml.h b/include/crm/msg_xml.h
|
|
index d5ac418..b66ab90 100644
|
|
--- a/include/crm/msg_xml.h
|
|
+++ b/include/crm/msg_xml.h
|
|
@@ -328,6 +328,7 @@ extern "C" {
|
|
# define XML_COLOC_ATTR_NODE_ATTR "node-attribute"
|
|
# define XML_COLOC_ATTR_SOURCE_INSTANCE "rsc-instance"
|
|
# define XML_COLOC_ATTR_TARGET_INSTANCE "with-rsc-instance"
|
|
+# define XML_COLOC_ATTR_INFLUENCE "influence"
|
|
|
|
# define XML_LOC_ATTR_SOURCE "rsc"
|
|
# define XML_LOC_ATTR_SOURCE_PATTERN "rsc-pattern"
|
|
diff --git a/include/pcmki/pcmki_sched_utils.h b/include/pcmki/pcmki_sched_utils.h
|
|
index c7ae1b8..bed64da 100644
|
|
--- a/include/pcmki/pcmki_sched_utils.h
|
|
+++ b/include/pcmki/pcmki_sched_utils.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.
|
|
*
|
|
@@ -31,7 +31,7 @@ pe__location_t *rsc2node_new(const char *id, pe_resource_t *rsc, int weight,
|
|
void pcmk__new_colocation(const char *id, const char *node_attr, int score,
|
|
pe_resource_t *rsc_lh, pe_resource_t *rsc_rh,
|
|
const char *state_lh, const char *state_rh,
|
|
- pe_working_set_t *data_set);
|
|
+ bool influence, pe_working_set_t *data_set);
|
|
|
|
extern gboolean rsc_ticket_new(const char *id, pe_resource_t * rsc_lh, pe_ticket_t * ticket,
|
|
const char *state_lh, const char *loss_policy,
|
|
diff --git a/include/pcmki/pcmki_scheduler.h b/include/pcmki/pcmki_scheduler.h
|
|
index b24e994..c604a32 100644
|
|
--- a/include/pcmki/pcmki_scheduler.h
|
|
+++ b/include/pcmki/pcmki_scheduler.h
|
|
@@ -1,5 +1,5 @@
|
|
/*
|
|
- * Copyright 2014-2020 the Pacemaker project contributors
|
|
+ * Copyright 2014-2021 the Pacemaker project contributors
|
|
*
|
|
* The version control history for this file may have further details.
|
|
*
|
|
@@ -46,6 +46,7 @@ typedef struct {
|
|
int role_rh;
|
|
|
|
int score;
|
|
+ bool influence; // Whether rsc_lh should influence active rsc_rh placement
|
|
} pcmk__colocation_t;
|
|
|
|
enum loss_ticket_policy_e {
|
|
diff --git a/lib/pacemaker/pcmk_sched_bundle.c b/lib/pacemaker/pcmk_sched_bundle.c
|
|
index 4f41b70..bc7009d 100644
|
|
--- a/lib/pacemaker/pcmk_sched_bundle.c
|
|
+++ b/lib/pacemaker/pcmk_sched_bundle.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.
|
|
*
|
|
@@ -9,6 +9,8 @@
|
|
|
|
#include <crm_internal.h>
|
|
|
|
+#include <stdbool.h>
|
|
+
|
|
#include <crm/msg_xml.h>
|
|
#include <pacemaker-internal.h>
|
|
|
|
@@ -143,7 +145,7 @@ pcmk__bundle_allocate(pe_resource_t *rsc, pe_node_t *prefer,
|
|
pcmk__new_colocation("child-remote-with-docker-remote", NULL,
|
|
INFINITY, replica->remote,
|
|
container_host->details->remote_rsc, NULL,
|
|
- NULL, data_set);
|
|
+ NULL, true, data_set);
|
|
}
|
|
|
|
if (replica->remote) {
|
|
@@ -311,7 +313,8 @@ pcmk__bundle_internal_constraints(pe_resource_t *rsc,
|
|
pe_order_implies_first|pe_order_preserve, data_set);
|
|
|
|
pcmk__new_colocation("ip-with-docker", NULL, INFINITY, replica->ip,
|
|
- replica->container, NULL, NULL, data_set);
|
|
+ replica->container, NULL, NULL, true,
|
|
+ data_set);
|
|
}
|
|
|
|
if (replica->remote) {
|
|
diff --git a/lib/pacemaker/pcmk_sched_constraints.c b/lib/pacemaker/pcmk_sched_constraints.c
|
|
index 92b9740..be93f0b 100644
|
|
--- a/lib/pacemaker/pcmk_sched_constraints.c
|
|
+++ b/lib/pacemaker/pcmk_sched_constraints.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.
|
|
*
|
|
@@ -11,6 +11,7 @@
|
|
|
|
#include <sys/param.h>
|
|
#include <sys/types.h>
|
|
+#include <stdbool.h>
|
|
#include <regex.h>
|
|
#include <glib.h>
|
|
|
|
@@ -1346,7 +1347,7 @@ void
|
|
pcmk__new_colocation(const char *id, const char *node_attr, int score,
|
|
pe_resource_t *rsc_lh, pe_resource_t *rsc_rh,
|
|
const char *state_lh, const char *state_rh,
|
|
- pe_working_set_t *data_set)
|
|
+ bool influence, pe_working_set_t *data_set)
|
|
{
|
|
pcmk__colocation_t *new_con = NULL;
|
|
|
|
@@ -1376,6 +1377,7 @@ pcmk__new_colocation(const char *id, const char *node_attr, int score,
|
|
new_con->role_lh = text2role(state_lh);
|
|
new_con->role_rh = text2role(state_rh);
|
|
new_con->node_attribute = node_attr;
|
|
+ new_con->influence = influence;
|
|
|
|
if (node_attr == NULL) {
|
|
node_attr = CRM_ATTR_UNAME;
|
|
@@ -2279,8 +2281,38 @@ unpack_rsc_order(xmlNode * xml_obj, pe_working_set_t * data_set)
|
|
return TRUE;
|
|
}
|
|
|
|
+/*!
|
|
+ * \internal
|
|
+ * \brief Return the boolean influence corresponding to configuration
|
|
+ *
|
|
+ * \param[in] coloc_id Colocation XML ID (for error logging)
|
|
+ * \param[in] rsc Resource involved in constraint (for default)
|
|
+ * \param[in] influence_s String value of influence option
|
|
+ *
|
|
+ * \return true if string evaluates true, false if string evaluates false,
|
|
+ * or value of resource's critical option if string is NULL or invalid
|
|
+ */
|
|
+static bool
|
|
+unpack_influence(const char *coloc_id, const pe_resource_t *rsc,
|
|
+ const char *influence_s)
|
|
+{
|
|
+ if (influence_s != NULL) {
|
|
+ int influence_i = 0;
|
|
+
|
|
+ if (crm_str_to_boolean(influence_s, &influence_i) < 0) {
|
|
+ pcmk__config_err("Constraint '%s' has invalid value for "
|
|
+ XML_COLOC_ATTR_INFLUENCE " (using default)",
|
|
+ coloc_id);
|
|
+ } else {
|
|
+ return (influence_i == TRUE);
|
|
+ }
|
|
+ }
|
|
+ return pcmk_is_set(rsc->flags, pe_rsc_critical);
|
|
+}
|
|
+
|
|
static gboolean
|
|
-unpack_colocation_set(xmlNode * set, int score, pe_working_set_t * data_set)
|
|
+unpack_colocation_set(xmlNode *set, int score, const char *coloc_id,
|
|
+ const char *influence_s, pe_working_set_t *data_set)
|
|
{
|
|
xmlNode *xml_rsc = NULL;
|
|
pe_resource_t *with = NULL;
|
|
@@ -2314,7 +2346,10 @@ unpack_colocation_set(xmlNode * set, int score, pe_working_set_t * data_set)
|
|
if (with != NULL) {
|
|
pe_rsc_trace(resource, "Colocating %s with %s", resource->id, with->id);
|
|
pcmk__new_colocation(set_id, NULL, local_score, resource,
|
|
- with, role, role, data_set);
|
|
+ with, role, role,
|
|
+ unpack_influence(coloc_id, resource,
|
|
+ influence_s),
|
|
+ data_set);
|
|
}
|
|
|
|
with = resource;
|
|
@@ -2330,7 +2365,10 @@ unpack_colocation_set(xmlNode * set, int score, pe_working_set_t * data_set)
|
|
if (last != NULL) {
|
|
pe_rsc_trace(resource, "Colocating %s with %s", last->id, resource->id);
|
|
pcmk__new_colocation(set_id, NULL, local_score, last,
|
|
- resource, role, role, data_set);
|
|
+ resource, role, role,
|
|
+ unpack_influence(coloc_id, last,
|
|
+ influence_s),
|
|
+ data_set);
|
|
}
|
|
|
|
last = resource;
|
|
@@ -2348,8 +2386,10 @@ unpack_colocation_set(xmlNode * set, int score, pe_working_set_t * data_set)
|
|
|
|
if (pcmk__str_eq((const char *)xml_rsc->name, XML_TAG_RESOURCE_REF, pcmk__str_none)) {
|
|
xmlNode *xml_rsc_with = NULL;
|
|
+ bool influence = true;
|
|
|
|
EXPAND_CONSTRAINT_IDREF(set_id, resource, ID(xml_rsc));
|
|
+ influence = unpack_influence(coloc_id, resource, influence_s);
|
|
|
|
for (xml_rsc_with = pcmk__xe_first_child(set);
|
|
xml_rsc_with != NULL;
|
|
@@ -2364,7 +2404,7 @@ unpack_colocation_set(xmlNode * set, int score, pe_working_set_t * data_set)
|
|
with->id);
|
|
pcmk__new_colocation(set_id, NULL, local_score,
|
|
resource, with, role, role,
|
|
- data_set);
|
|
+ influence, data_set);
|
|
}
|
|
}
|
|
}
|
|
@@ -2376,7 +2416,7 @@ unpack_colocation_set(xmlNode * set, int score, pe_working_set_t * data_set)
|
|
|
|
static gboolean
|
|
colocate_rsc_sets(const char *id, xmlNode * set1, xmlNode * set2, int score,
|
|
- pe_working_set_t * data_set)
|
|
+ const char *influence_s, pe_working_set_t *data_set)
|
|
{
|
|
xmlNode *xml_rsc = NULL;
|
|
pe_resource_t *rsc_1 = NULL;
|
|
@@ -2416,16 +2456,19 @@ colocate_rsc_sets(const char *id, xmlNode * set1, xmlNode * set2, int score,
|
|
|
|
if (rsc_1 != NULL && rsc_2 != NULL) {
|
|
pcmk__new_colocation(id, NULL, score, rsc_1, rsc_2, role_1, role_2,
|
|
+ unpack_influence(id, rsc_1, influence_s),
|
|
data_set);
|
|
|
|
} else if (rsc_1 != NULL) {
|
|
+ bool influence = unpack_influence(id, rsc_1, influence_s);
|
|
+
|
|
for (xml_rsc = pcmk__xe_first_child(set2); xml_rsc != NULL;
|
|
xml_rsc = pcmk__xe_next(xml_rsc)) {
|
|
|
|
if (pcmk__str_eq((const char *)xml_rsc->name, XML_TAG_RESOURCE_REF, pcmk__str_none)) {
|
|
EXPAND_CONSTRAINT_IDREF(id, rsc_2, ID(xml_rsc));
|
|
pcmk__new_colocation(id, NULL, score, rsc_1, rsc_2, role_1,
|
|
- role_2, data_set);
|
|
+ role_2, influence, data_set);
|
|
}
|
|
}
|
|
|
|
@@ -2436,7 +2479,9 @@ colocate_rsc_sets(const char *id, xmlNode * set1, xmlNode * set2, int score,
|
|
if (pcmk__str_eq((const char *)xml_rsc->name, XML_TAG_RESOURCE_REF, pcmk__str_none)) {
|
|
EXPAND_CONSTRAINT_IDREF(id, rsc_1, ID(xml_rsc));
|
|
pcmk__new_colocation(id, NULL, score, rsc_1, rsc_2, role_1,
|
|
- role_2, data_set);
|
|
+ role_2,
|
|
+ unpack_influence(id, rsc_1, influence_s),
|
|
+ data_set);
|
|
}
|
|
}
|
|
|
|
@@ -2446,8 +2491,10 @@ colocate_rsc_sets(const char *id, xmlNode * set1, xmlNode * set2, int score,
|
|
|
|
if (pcmk__str_eq((const char *)xml_rsc->name, XML_TAG_RESOURCE_REF, pcmk__str_none)) {
|
|
xmlNode *xml_rsc_2 = NULL;
|
|
+ bool influence = true;
|
|
|
|
EXPAND_CONSTRAINT_IDREF(id, rsc_1, ID(xml_rsc));
|
|
+ influence = unpack_influence(id, rsc_1, influence_s);
|
|
|
|
for (xml_rsc_2 = pcmk__xe_first_child(set2);
|
|
xml_rsc_2 != NULL;
|
|
@@ -2456,7 +2503,8 @@ colocate_rsc_sets(const char *id, xmlNode * set1, xmlNode * set2, int score,
|
|
if (pcmk__str_eq((const char *)xml_rsc_2->name, XML_TAG_RESOURCE_REF, pcmk__str_none)) {
|
|
EXPAND_CONSTRAINT_IDREF(id, rsc_2, ID(xml_rsc_2));
|
|
pcmk__new_colocation(id, NULL, score, rsc_1, rsc_2,
|
|
- role_1, role_2, data_set);
|
|
+ role_1, role_2, influence,
|
|
+ data_set);
|
|
}
|
|
}
|
|
}
|
|
@@ -2467,13 +2515,12 @@ colocate_rsc_sets(const char *id, xmlNode * set1, xmlNode * set2, int score,
|
|
}
|
|
|
|
static void
|
|
-unpack_simple_colocation(xmlNode * xml_obj, pe_working_set_t * data_set)
|
|
+unpack_simple_colocation(xmlNode *xml_obj, const char *id,
|
|
+ const char *influence_s, pe_working_set_t *data_set)
|
|
{
|
|
int score_i = 0;
|
|
|
|
- const char *id = crm_element_value(xml_obj, XML_ATTR_ID);
|
|
const char *score = crm_element_value(xml_obj, XML_RULE_ATTR_SCORE);
|
|
-
|
|
const char *id_lh = crm_element_value(xml_obj, XML_COLOC_ATTR_SOURCE);
|
|
const char *id_rh = crm_element_value(xml_obj, XML_COLOC_ATTR_TARGET);
|
|
const char *state_lh = crm_element_value(xml_obj, XML_COLOC_ATTR_SOURCE_ROLE);
|
|
@@ -2542,7 +2589,7 @@ unpack_simple_colocation(xmlNode * xml_obj, pe_working_set_t * data_set)
|
|
}
|
|
|
|
pcmk__new_colocation(id, attr, score_i, rsc_lh, rsc_rh, state_lh, state_rh,
|
|
- data_set);
|
|
+ unpack_influence(id, rsc_lh, influence_s), data_set);
|
|
}
|
|
|
|
static gboolean
|
|
@@ -2675,6 +2722,8 @@ unpack_rsc_colocation(xmlNode *xml_obj, pe_working_set_t *data_set)
|
|
|
|
const char *id = crm_element_value(xml_obj, XML_ATTR_ID);
|
|
const char *score = crm_element_value(xml_obj, XML_RULE_ATTR_SCORE);
|
|
+ const char *influence_s = crm_element_value(xml_obj,
|
|
+ XML_COLOC_ATTR_INFLUENCE);
|
|
|
|
if (score) {
|
|
score_i = char2score(score);
|
|
@@ -2694,10 +2743,12 @@ unpack_rsc_colocation(xmlNode *xml_obj, pe_working_set_t *data_set)
|
|
if (pcmk__str_eq((const char *)set->name, XML_CONS_TAG_RSC_SET, pcmk__str_none)) {
|
|
any_sets = TRUE;
|
|
set = expand_idref(set, data_set->input);
|
|
- if (!unpack_colocation_set(set, score_i, data_set)) {
|
|
+ if (!unpack_colocation_set(set, score_i, id, influence_s,
|
|
+ data_set)) {
|
|
return;
|
|
}
|
|
- if (last && !colocate_rsc_sets(id, last, set, score_i, data_set)) {
|
|
+ if ((last != NULL) && !colocate_rsc_sets(id, last, set, score_i,
|
|
+ influence_s, data_set)) {
|
|
return;
|
|
}
|
|
last = set;
|
|
@@ -2710,7 +2761,7 @@ unpack_rsc_colocation(xmlNode *xml_obj, pe_working_set_t *data_set)
|
|
}
|
|
|
|
if (!any_sets) {
|
|
- unpack_simple_colocation(xml_obj, data_set);
|
|
+ unpack_simple_colocation(xml_obj, id, influence_s, data_set);
|
|
}
|
|
}
|
|
|
|
diff --git a/lib/pacemaker/pcmk_sched_group.c b/lib/pacemaker/pcmk_sched_group.c
|
|
index 5334f23..03df5e2 100644
|
|
--- a/lib/pacemaker/pcmk_sched_group.c
|
|
+++ b/lib/pacemaker/pcmk_sched_group.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.
|
|
*
|
|
@@ -9,6 +9,8 @@
|
|
|
|
#include <crm_internal.h>
|
|
|
|
+#include <stdbool.h>
|
|
+
|
|
#include <crm/msg_xml.h>
|
|
|
|
#include <pacemaker-internal.h>
|
|
@@ -193,7 +195,9 @@ group_internal_constraints(pe_resource_t * rsc, pe_working_set_t * data_set)
|
|
|
|
} else if (group_data->colocated) {
|
|
pcmk__new_colocation("group:internal_colocation", NULL, INFINITY,
|
|
- child_rsc, last_rsc, NULL, NULL, data_set);
|
|
+ child_rsc, last_rsc, NULL, NULL,
|
|
+ pcmk_is_set(child_rsc->flags, pe_rsc_critical),
|
|
+ data_set);
|
|
}
|
|
|
|
if (pcmk_is_set(top->flags, pe_rsc_promotable)) {
|
|
diff --git a/lib/pacemaker/pcmk_sched_native.c b/lib/pacemaker/pcmk_sched_native.c
|
|
index c302db6..097a033 100644
|
|
--- a/lib/pacemaker/pcmk_sched_native.c
|
|
+++ b/lib/pacemaker/pcmk_sched_native.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.
|
|
*
|
|
@@ -9,6 +9,8 @@
|
|
|
|
#include <crm_internal.h>
|
|
|
|
+#include <stdbool.h>
|
|
+
|
|
#include <crm/pengine/rules.h>
|
|
#include <crm/msg_xml.h>
|
|
#include <crm/common/xml_internal.h>
|
|
@@ -1692,7 +1694,7 @@ native_internal_constraints(pe_resource_t * rsc, pe_working_set_t * data_set)
|
|
score = INFINITY; /* Force them to run on the same host */
|
|
}
|
|
pcmk__new_colocation("resource-with-container", NULL, score, rsc,
|
|
- rsc->container, NULL, NULL, data_set);
|
|
+ rsc->container, NULL, NULL, true, data_set);
|
|
}
|
|
}
|
|
|
|
--
|
|
1.8.3.1
|
|
|
|
|
|
From 1bd66fca86c77f1dbe3d8cfc2a7da5111cec223f Mon Sep 17 00:00:00 2001
|
|
From: Ken Gaillot <kgaillot@redhat.com>
|
|
Date: Mon, 11 Jan 2021 16:11:30 -0600
|
|
Subject: [PATCH 07/12] Revert "Refactor: scheduler: functionize checking
|
|
whether colocation applies"
|
|
|
|
This reverts commit 2278e01f8d951d939c172ac71e168a11199f84f7.
|
|
|
|
The original idea was that additional conditions (i.e. influence) could be
|
|
added to the new function, but influence should only affect whether the
|
|
dependent resource's location preferences are considered, not whether the
|
|
colocation constraint applies (i.e. the dependent should be stopped if it
|
|
can't run where the "with" resource is).
|
|
---
|
|
include/pcmki/pcmki_sched_utils.h | 3 ---
|
|
lib/pacemaker/pcmk_sched_clone.c | 12 +++++++-----
|
|
lib/pacemaker/pcmk_sched_group.c | 12 ++++++------
|
|
lib/pacemaker/pcmk_sched_native.c | 14 ++++++++++----
|
|
lib/pacemaker/pcmk_sched_promotable.c | 25 +++++++++++++++++--------
|
|
lib/pacemaker/pcmk_sched_utils.c | 31 -------------------------------
|
|
6 files changed, 40 insertions(+), 57 deletions(-)
|
|
|
|
diff --git a/include/pcmki/pcmki_sched_utils.h b/include/pcmki/pcmki_sched_utils.h
|
|
index bed64da..f6ac263 100644
|
|
--- a/include/pcmki/pcmki_sched_utils.h
|
|
+++ b/include/pcmki/pcmki_sched_utils.h
|
|
@@ -72,9 +72,6 @@ enum filter_colocation_res {
|
|
extern enum filter_colocation_res
|
|
filter_colocation_constraint(pe_resource_t * rsc_lh, pe_resource_t * rsc_rh,
|
|
pcmk__colocation_t *constraint, gboolean preview);
|
|
-bool pcmk__colocation_applies(pe_resource_t *rsc,
|
|
- pcmk__colocation_t *colocation,
|
|
- bool promoted_only);
|
|
|
|
extern int compare_capacity(const pe_node_t * node1, const pe_node_t * node2);
|
|
extern void calculate_utilization(GHashTable * current_utilization,
|
|
diff --git a/lib/pacemaker/pcmk_sched_clone.c b/lib/pacemaker/pcmk_sched_clone.c
|
|
index 5a06151..9485a98 100644
|
|
--- a/lib/pacemaker/pcmk_sched_clone.c
|
|
+++ b/lib/pacemaker/pcmk_sched_clone.c
|
|
@@ -658,12 +658,14 @@ pcmk__clone_allocate(pe_resource_t *rsc, pe_node_t *prefer,
|
|
for (GListPtr gIter = rsc->rsc_cons_lhs; gIter != NULL; gIter = gIter->next) {
|
|
pcmk__colocation_t *constraint = (pcmk__colocation_t *) gIter->data;
|
|
|
|
- if (pcmk__colocation_applies(rsc, constraint, false)) {
|
|
- rsc->allowed_nodes = constraint->rsc_lh->cmds->merge_weights(constraint->rsc_lh,
|
|
- rsc->id, rsc->allowed_nodes, constraint->node_attribute,
|
|
- constraint->score / (float) INFINITY,
|
|
- pe_weights_rollback|pe_weights_positive);
|
|
+ if (constraint->score == 0) {
|
|
+ continue;
|
|
}
|
|
+ rsc->allowed_nodes =
|
|
+ constraint->rsc_lh->cmds->merge_weights(constraint->rsc_lh, rsc->id, rsc->allowed_nodes,
|
|
+ constraint->node_attribute,
|
|
+ (float)constraint->score / INFINITY,
|
|
+ (pe_weights_rollback | pe_weights_positive));
|
|
}
|
|
|
|
pe__show_node_weights(!show_scores, rsc, __func__, rsc->allowed_nodes);
|
|
diff --git a/lib/pacemaker/pcmk_sched_group.c b/lib/pacemaker/pcmk_sched_group.c
|
|
index 03df5e2..336a6f9 100644
|
|
--- a/lib/pacemaker/pcmk_sched_group.c
|
|
+++ b/lib/pacemaker/pcmk_sched_group.c
|
|
@@ -520,13 +520,13 @@ pcmk__group_merge_weights(pe_resource_t *rsc, const char *rhs,
|
|
for (; gIter != NULL; gIter = gIter->next) {
|
|
pcmk__colocation_t *constraint = (pcmk__colocation_t *) gIter->data;
|
|
|
|
- if (pcmk__colocation_applies(rsc, constraint, false)) {
|
|
- nodes = pcmk__native_merge_weights(constraint->rsc_lh, rsc->id,
|
|
- nodes,
|
|
- constraint->node_attribute,
|
|
- constraint->score / (float) INFINITY,
|
|
- flags);
|
|
+ if (constraint->score == 0) {
|
|
+ continue;
|
|
}
|
|
+ nodes = pcmk__native_merge_weights(constraint->rsc_lh, rsc->id, nodes,
|
|
+ constraint->node_attribute,
|
|
+ constraint->score / (float) INFINITY,
|
|
+ flags);
|
|
}
|
|
|
|
pe__clear_resource_flags(rsc, pe_rsc_merging);
|
|
diff --git a/lib/pacemaker/pcmk_sched_native.c b/lib/pacemaker/pcmk_sched_native.c
|
|
index 097a033..70f6c2f 100644
|
|
--- a/lib/pacemaker/pcmk_sched_native.c
|
|
+++ b/lib/pacemaker/pcmk_sched_native.c
|
|
@@ -564,11 +564,17 @@ pcmk__native_allocate(pe_resource_t *rsc, pe_node_t *prefer,
|
|
for (gIter = rsc->rsc_cons_lhs; gIter != NULL; gIter = gIter->next) {
|
|
pcmk__colocation_t *constraint = (pcmk__colocation_t *) gIter->data;
|
|
|
|
- if (pcmk__colocation_applies(rsc, constraint, false)) {
|
|
- rsc->allowed_nodes = constraint->rsc_lh->cmds->merge_weights(constraint->rsc_lh,
|
|
- rsc->id, rsc->allowed_nodes, constraint->node_attribute,
|
|
- constraint->score / (float) INFINITY, pe_weights_rollback);
|
|
+ if (constraint->score == 0) {
|
|
+ continue;
|
|
}
|
|
+ pe_rsc_trace(rsc, "Merging score of '%s' constraint (%s with %s)",
|
|
+ constraint->id, constraint->rsc_lh->id,
|
|
+ constraint->rsc_rh->id);
|
|
+ rsc->allowed_nodes =
|
|
+ constraint->rsc_lh->cmds->merge_weights(constraint->rsc_lh, rsc->id, rsc->allowed_nodes,
|
|
+ constraint->node_attribute,
|
|
+ (float)constraint->score / INFINITY,
|
|
+ pe_weights_rollback);
|
|
}
|
|
|
|
if (rsc->next_role == RSC_ROLE_STOPPED) {
|
|
diff --git a/lib/pacemaker/pcmk_sched_promotable.c b/lib/pacemaker/pcmk_sched_promotable.c
|
|
index a0eeaad..9a5474a 100644
|
|
--- a/lib/pacemaker/pcmk_sched_promotable.c
|
|
+++ b/lib/pacemaker/pcmk_sched_promotable.c
|
|
@@ -345,14 +345,23 @@ promotion_order(pe_resource_t *rsc, pe_working_set_t *data_set)
|
|
for (; gIter != NULL; gIter = gIter->next) {
|
|
pcmk__colocation_t *constraint = (pcmk__colocation_t *) gIter->data;
|
|
|
|
- if (pcmk__colocation_applies(rsc, constraint, true)) {
|
|
- /* (Re-)add location preferences of resource that wishes to be
|
|
- * colocated with the promoted instance.
|
|
- */
|
|
- rsc->allowed_nodes = constraint->rsc_lh->cmds->merge_weights(constraint->rsc_lh,
|
|
- rsc->id, rsc->allowed_nodes, constraint->node_attribute,
|
|
- constraint->score / (float) INFINITY,
|
|
- pe_weights_rollback|pe_weights_positive);
|
|
+ if (constraint->score == 0) {
|
|
+ continue;
|
|
+ }
|
|
+
|
|
+ /* (re-)adds location preferences of resource that wish to be
|
|
+ * colocated with the master instance
|
|
+ */
|
|
+ if (constraint->role_rh == RSC_ROLE_MASTER) {
|
|
+ pe_rsc_trace(rsc, "LHS: %s with %s: %d", constraint->rsc_lh->id, constraint->rsc_rh->id,
|
|
+ constraint->score);
|
|
+ rsc->allowed_nodes =
|
|
+ constraint->rsc_lh->cmds->merge_weights(constraint->rsc_lh, rsc->id,
|
|
+ rsc->allowed_nodes,
|
|
+ constraint->node_attribute,
|
|
+ (float)constraint->score / INFINITY,
|
|
+ (pe_weights_rollback |
|
|
+ pe_weights_positive));
|
|
}
|
|
}
|
|
|
|
diff --git a/lib/pacemaker/pcmk_sched_utils.c b/lib/pacemaker/pcmk_sched_utils.c
|
|
index aba417a..eaaf526 100644
|
|
--- a/lib/pacemaker/pcmk_sched_utils.c
|
|
+++ b/lib/pacemaker/pcmk_sched_utils.c
|
|
@@ -765,34 +765,3 @@ pcmk__create_history_xml(xmlNode *parent, lrmd_event_data_t *op,
|
|
free(key);
|
|
return xml_op;
|
|
}
|
|
-
|
|
-/*!
|
|
- * \internal
|
|
- * \brief Check whether a colocation constraint should apply
|
|
- *
|
|
- * \param[in] rsc Resource of interest (for logging)
|
|
- * \param[in] colocation Colocation constraint to check
|
|
- * \param[in] promoted_only If true, constraint applies if right-hand is promoted
|
|
- */
|
|
-bool
|
|
-pcmk__colocation_applies(pe_resource_t *rsc, pcmk__colocation_t *colocation,
|
|
- bool promoted_only)
|
|
-{
|
|
- CRM_CHECK((rsc != NULL) && (colocation != NULL), return false);
|
|
-
|
|
- if (colocation->score == 0) {
|
|
- pe_rsc_trace(rsc, "Ignoring colocation constraint %s: 0 score",
|
|
- colocation->id);
|
|
- return false;
|
|
- }
|
|
- if (promoted_only && (colocation->role_rh != RSC_ROLE_MASTER)) {
|
|
- pe_rsc_trace(rsc, "Ignoring colocation constraint %s: role",
|
|
- colocation->id);
|
|
- return false;
|
|
- }
|
|
- pe_rsc_trace(rsc, "Applying colocation constraint %s: %s with %s%s (%d)",
|
|
- colocation->id, colocation->rsc_lh->id,
|
|
- (promoted_only? "promoted " : ""),
|
|
- colocation->rsc_rh->id, colocation->score);
|
|
- return true;
|
|
-}
|
|
--
|
|
1.8.3.1
|
|
|
|
|
|
From 92c83d4da20da7dcaf1063a0768563742aea6618 Mon Sep 17 00:00:00 2001
|
|
From: Ken Gaillot <kgaillot@redhat.com>
|
|
Date: Mon, 11 Jan 2021 16:38:58 -0600
|
|
Subject: [PATCH 08/12] Refactor: scheduler: don't add constraints with score 0
|
|
|
|
Previously, we parsed constraints with a score of 0 into the pcmk__colocation_t
|
|
list, then ignored them wherever they were used. Now, don't add them to begin
|
|
with.
|
|
---
|
|
lib/pacemaker/pcmk_sched_constraints.c | 18 ++++++++++++++++--
|
|
1 file changed, 16 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/lib/pacemaker/pcmk_sched_constraints.c b/lib/pacemaker/pcmk_sched_constraints.c
|
|
index be93f0b..ab6f74e 100644
|
|
--- a/lib/pacemaker/pcmk_sched_constraints.c
|
|
+++ b/lib/pacemaker/pcmk_sched_constraints.c
|
|
@@ -1351,6 +1351,10 @@ pcmk__new_colocation(const char *id, const char *node_attr, int score,
|
|
{
|
|
pcmk__colocation_t *new_con = NULL;
|
|
|
|
+ if (score == 0) {
|
|
+ crm_trace("Ignoring colocation '%s' because score is 0", id);
|
|
+ return;
|
|
+ }
|
|
if ((rsc_lh == NULL) || (rsc_rh == NULL)) {
|
|
pcmk__config_err("Ignoring colocation '%s' because resource "
|
|
"does not exist", id);
|
|
@@ -2328,6 +2332,11 @@ unpack_colocation_set(xmlNode *set, int score, const char *coloc_id,
|
|
if (score_s) {
|
|
local_score = char2score(score_s);
|
|
}
|
|
+ if (local_score == 0) {
|
|
+ crm_trace("Ignoring colocation '%s' for set '%s' because score is 0",
|
|
+ coloc_id, set_id);
|
|
+ return TRUE;
|
|
+ }
|
|
|
|
if(ordering == NULL) {
|
|
ordering = "group";
|
|
@@ -2336,7 +2345,7 @@ unpack_colocation_set(xmlNode *set, int score, const char *coloc_id,
|
|
if (sequential != NULL && crm_is_true(sequential) == FALSE) {
|
|
return TRUE;
|
|
|
|
- } else if ((local_score >= 0)
|
|
+ } else if ((local_score > 0)
|
|
&& pcmk__str_eq(ordering, "group", pcmk__str_casei)) {
|
|
for (xml_rsc = pcmk__xe_first_child(set); xml_rsc != NULL;
|
|
xml_rsc = pcmk__xe_next(xml_rsc)) {
|
|
@@ -2355,7 +2364,7 @@ unpack_colocation_set(xmlNode *set, int score, const char *coloc_id,
|
|
with = resource;
|
|
}
|
|
}
|
|
- } else if (local_score >= 0) {
|
|
+ } else if (local_score > 0) {
|
|
pe_resource_t *last = NULL;
|
|
for (xml_rsc = pcmk__xe_first_child(set); xml_rsc != NULL;
|
|
xml_rsc = pcmk__xe_next(xml_rsc)) {
|
|
@@ -2428,6 +2437,11 @@ colocate_rsc_sets(const char *id, xmlNode * set1, xmlNode * set2, int score,
|
|
const char *sequential_1 = crm_element_value(set1, "sequential");
|
|
const char *sequential_2 = crm_element_value(set2, "sequential");
|
|
|
|
+ if (score == 0) {
|
|
+ crm_trace("Ignoring colocation '%s' between sets because score is 0",
|
|
+ id);
|
|
+ return TRUE;
|
|
+ }
|
|
if (sequential_1 == NULL || crm_is_true(sequential_1)) {
|
|
/* get the first one */
|
|
for (xml_rsc = pcmk__xe_first_child(set1); xml_rsc != NULL;
|
|
--
|
|
1.8.3.1
|
|
|
|
|
|
From cd04564fea1113d7f89622cd434f0f567998217e Mon Sep 17 00:00:00 2001
|
|
From: Ken Gaillot <kgaillot@redhat.com>
|
|
Date: Mon, 11 Jan 2021 16:43:52 -0600
|
|
Subject: [PATCH 09/12] Refactor: scheduler: don't check colocation constraints
|
|
for 0 score
|
|
|
|
... since they aren't added to begin with anymore
|
|
---
|
|
lib/pacemaker/pcmk_sched_bundle.c | 3 ---
|
|
lib/pacemaker/pcmk_sched_clone.c | 23 +----------------------
|
|
lib/pacemaker/pcmk_sched_group.c | 9 ---------
|
|
lib/pacemaker/pcmk_sched_native.c | 26 +-------------------------
|
|
lib/pacemaker/pcmk_sched_promotable.c | 16 +---------------
|
|
5 files changed, 3 insertions(+), 74 deletions(-)
|
|
|
|
diff --git a/lib/pacemaker/pcmk_sched_bundle.c b/lib/pacemaker/pcmk_sched_bundle.c
|
|
index bc7009d..955a7d3 100644
|
|
--- a/lib/pacemaker/pcmk_sched_bundle.c
|
|
+++ b/lib/pacemaker/pcmk_sched_bundle.c
|
|
@@ -483,9 +483,6 @@ pcmk__bundle_rsc_colocation_rh(pe_resource_t *rsc_lh, pe_resource_t *rsc,
|
|
CRM_CHECK(rsc != NULL, pe_err("rsc was NULL for %s", constraint->id); return);
|
|
CRM_ASSERT(rsc_lh->variant == pe_native);
|
|
|
|
- if (constraint->score == 0) {
|
|
- return;
|
|
- }
|
|
if (pcmk_is_set(rsc->flags, pe_rsc_provisional)) {
|
|
pe_rsc_trace(rsc, "%s is still provisional", rsc->id);
|
|
return;
|
|
diff --git a/lib/pacemaker/pcmk_sched_clone.c b/lib/pacemaker/pcmk_sched_clone.c
|
|
index 9485a98..3cfc06c 100644
|
|
--- a/lib/pacemaker/pcmk_sched_clone.c
|
|
+++ b/lib/pacemaker/pcmk_sched_clone.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.
|
|
*
|
|
@@ -239,9 +239,6 @@ sort_clone_instance(gconstpointer a, gconstpointer b, gpointer data_set)
|
|
for (gIter = resource1->parent->rsc_cons; gIter; gIter = gIter->next) {
|
|
pcmk__colocation_t *constraint = (pcmk__colocation_t *) gIter->data;
|
|
|
|
- if (constraint->score == 0) {
|
|
- continue;
|
|
- }
|
|
crm_trace("Applying %s to %s", constraint->id, resource1->id);
|
|
|
|
hash1 = pcmk__native_merge_weights(constraint->rsc_rh,
|
|
@@ -254,9 +251,6 @@ sort_clone_instance(gconstpointer a, gconstpointer b, gpointer data_set)
|
|
for (gIter = resource1->parent->rsc_cons_lhs; gIter; gIter = gIter->next) {
|
|
pcmk__colocation_t *constraint = (pcmk__colocation_t *) gIter->data;
|
|
|
|
- if (constraint->score == 0) {
|
|
- continue;
|
|
- }
|
|
crm_trace("Applying %s to %s", constraint->id, resource1->id);
|
|
|
|
hash1 = pcmk__native_merge_weights(constraint->rsc_lh,
|
|
@@ -501,9 +495,6 @@ append_parent_colocation(pe_resource_t * rsc, pe_resource_t * child, gboolean al
|
|
for (; gIter != NULL; gIter = gIter->next) {
|
|
pcmk__colocation_t *cons = (pcmk__colocation_t *) gIter->data;
|
|
|
|
- if (cons->score == 0) {
|
|
- continue;
|
|
- }
|
|
if (all || cons->score < 0 || cons->score == INFINITY) {
|
|
child->rsc_cons = g_list_prepend(child->rsc_cons, cons);
|
|
}
|
|
@@ -513,9 +504,6 @@ append_parent_colocation(pe_resource_t * rsc, pe_resource_t * child, gboolean al
|
|
for (; gIter != NULL; gIter = gIter->next) {
|
|
pcmk__colocation_t *cons = (pcmk__colocation_t *) gIter->data;
|
|
|
|
- if (cons->score == 0) {
|
|
- continue;
|
|
- }
|
|
if (all || cons->score < 0) {
|
|
child->rsc_cons_lhs = g_list_prepend(child->rsc_cons_lhs, cons);
|
|
}
|
|
@@ -647,9 +635,6 @@ pcmk__clone_allocate(pe_resource_t *rsc, pe_node_t *prefer,
|
|
for (GListPtr gIter = rsc->rsc_cons; gIter != NULL; gIter = gIter->next) {
|
|
pcmk__colocation_t *constraint = (pcmk__colocation_t *) gIter->data;
|
|
|
|
- if (constraint->score == 0) {
|
|
- continue;
|
|
- }
|
|
pe_rsc_trace(rsc, "%s: Allocating %s first",
|
|
rsc->id, constraint->rsc_rh->id);
|
|
constraint->rsc_rh->cmds->allocate(constraint->rsc_rh, prefer, data_set);
|
|
@@ -658,9 +643,6 @@ pcmk__clone_allocate(pe_resource_t *rsc, pe_node_t *prefer,
|
|
for (GListPtr gIter = rsc->rsc_cons_lhs; gIter != NULL; gIter = gIter->next) {
|
|
pcmk__colocation_t *constraint = (pcmk__colocation_t *) gIter->data;
|
|
|
|
- if (constraint->score == 0) {
|
|
- continue;
|
|
- }
|
|
rsc->allowed_nodes =
|
|
constraint->rsc_lh->cmds->merge_weights(constraint->rsc_lh, rsc->id, rsc->allowed_nodes,
|
|
constraint->node_attribute,
|
|
@@ -1079,9 +1061,6 @@ clone_rsc_colocation_rh(pe_resource_t *rsc_lh, pe_resource_t *rsc_rh,
|
|
CRM_CHECK(rsc_rh != NULL, pe_err("rsc_rh was NULL for %s", constraint->id); return);
|
|
CRM_CHECK(rsc_lh->variant == pe_native, return);
|
|
|
|
- if (constraint->score == 0) {
|
|
- return;
|
|
- }
|
|
pe_rsc_trace(rsc_rh, "Processing constraint %s: %s -> %s %d",
|
|
constraint->id, rsc_lh->id, rsc_rh->id, constraint->score);
|
|
|
|
diff --git a/lib/pacemaker/pcmk_sched_group.c b/lib/pacemaker/pcmk_sched_group.c
|
|
index 336a6f9..439ed91 100644
|
|
--- a/lib/pacemaker/pcmk_sched_group.c
|
|
+++ b/lib/pacemaker/pcmk_sched_group.c
|
|
@@ -300,9 +300,6 @@ group_rsc_colocation_lh(pe_resource_t *rsc_lh, pe_resource_t *rsc_rh,
|
|
pe_err("rsc_rh was NULL for %s", constraint->id);
|
|
return;
|
|
}
|
|
- if (constraint->score == 0) {
|
|
- return;
|
|
- }
|
|
|
|
gIter = rsc_lh->children;
|
|
pe_rsc_trace(rsc_lh, "Processing constraints from %s", rsc_lh->id);
|
|
@@ -341,9 +338,6 @@ group_rsc_colocation_rh(pe_resource_t *rsc_lh, pe_resource_t *rsc_rh,
|
|
get_group_variant_data(group_data, rsc_rh);
|
|
CRM_CHECK(rsc_lh->variant == pe_native, return);
|
|
|
|
- if (constraint->score == 0) {
|
|
- return;
|
|
- }
|
|
pe_rsc_trace(rsc_rh, "Processing RH %s of constraint %s (LH is %s)",
|
|
rsc_rh->id, constraint->id, rsc_lh->id);
|
|
|
|
@@ -520,9 +514,6 @@ pcmk__group_merge_weights(pe_resource_t *rsc, const char *rhs,
|
|
for (; gIter != NULL; gIter = gIter->next) {
|
|
pcmk__colocation_t *constraint = (pcmk__colocation_t *) gIter->data;
|
|
|
|
- if (constraint->score == 0) {
|
|
- continue;
|
|
- }
|
|
nodes = pcmk__native_merge_weights(constraint->rsc_lh, rsc->id, nodes,
|
|
constraint->node_attribute,
|
|
constraint->score / (float) INFINITY,
|
|
diff --git a/lib/pacemaker/pcmk_sched_native.c b/lib/pacemaker/pcmk_sched_native.c
|
|
index 70f6c2f..c7bf4fe 100644
|
|
--- a/lib/pacemaker/pcmk_sched_native.c
|
|
+++ b/lib/pacemaker/pcmk_sched_native.c
|
|
@@ -438,10 +438,6 @@ pcmk__native_merge_weights(pe_resource_t *rsc, const char *rhs,
|
|
pe_resource_t *other = NULL;
|
|
pcmk__colocation_t *constraint = (pcmk__colocation_t *) gIter->data;
|
|
|
|
- if (constraint->score == 0) {
|
|
- continue;
|
|
- }
|
|
-
|
|
if (pcmk_is_set(flags, pe_weights_forward)) {
|
|
other = constraint->rsc_rh;
|
|
} else {
|
|
@@ -533,10 +529,6 @@ pcmk__native_allocate(pe_resource_t *rsc, pe_node_t *prefer,
|
|
GHashTable *archive = NULL;
|
|
pe_resource_t *rsc_rh = constraint->rsc_rh;
|
|
|
|
- if (constraint->score == 0) {
|
|
- continue;
|
|
- }
|
|
-
|
|
if (constraint->role_lh >= RSC_ROLE_MASTER
|
|
|| (constraint->score < 0 && constraint->score > -INFINITY)) {
|
|
archive = pcmk__copy_node_table(rsc->allowed_nodes);
|
|
@@ -564,9 +556,6 @@ pcmk__native_allocate(pe_resource_t *rsc, pe_node_t *prefer,
|
|
for (gIter = rsc->rsc_cons_lhs; gIter != NULL; gIter = gIter->next) {
|
|
pcmk__colocation_t *constraint = (pcmk__colocation_t *) gIter->data;
|
|
|
|
- if (constraint->score == 0) {
|
|
- continue;
|
|
- }
|
|
pe_rsc_trace(rsc, "Merging score of '%s' constraint (%s with %s)",
|
|
constraint->id, constraint->rsc_lh->id,
|
|
constraint->rsc_rh->id);
|
|
@@ -1726,9 +1715,6 @@ native_rsc_colocation_lh(pe_resource_t *rsc_lh, pe_resource_t *rsc_rh,
|
|
return;
|
|
}
|
|
|
|
- if (constraint->score == 0) {
|
|
- return;
|
|
- }
|
|
pe_rsc_trace(rsc_lh, "Processing colocation constraint between %s and %s", rsc_lh->id,
|
|
rsc_rh->id);
|
|
|
|
@@ -1739,10 +1725,6 @@ enum filter_colocation_res
|
|
filter_colocation_constraint(pe_resource_t * rsc_lh, pe_resource_t * rsc_rh,
|
|
pcmk__colocation_t *constraint, gboolean preview)
|
|
{
|
|
- if (constraint->score == 0) {
|
|
- return influence_nothing;
|
|
- }
|
|
-
|
|
/* rh side must be allocated before we can process constraint */
|
|
if (!preview && pcmk_is_set(rsc_rh->flags, pe_rsc_provisional)) {
|
|
return influence_nothing;
|
|
@@ -1829,9 +1811,6 @@ influence_priority(pe_resource_t *rsc_lh, pe_resource_t *rsc_rh,
|
|
const char *attribute = CRM_ATTR_ID;
|
|
int score_multiplier = 1;
|
|
|
|
- if (constraint->score == 0) {
|
|
- return;
|
|
- }
|
|
if (!rsc_rh->allocated_to || !rsc_lh->allocated_to) {
|
|
return;
|
|
}
|
|
@@ -1872,9 +1851,6 @@ colocation_match(pe_resource_t *rsc_lh, pe_resource_t *rsc_rh,
|
|
GHashTableIter iter;
|
|
pe_node_t *node = NULL;
|
|
|
|
- if (constraint->score == 0) {
|
|
- return;
|
|
- }
|
|
if (constraint->node_attribute != NULL) {
|
|
attribute = constraint->node_attribute;
|
|
}
|
|
@@ -1941,7 +1917,7 @@ native_rsc_colocation_rh(pe_resource_t *rsc_lh, pe_resource_t *rsc_rh,
|
|
CRM_ASSERT(rsc_rh);
|
|
filter_results = filter_colocation_constraint(rsc_lh, rsc_rh, constraint, FALSE);
|
|
pe_rsc_trace(rsc_lh, "%s %s with %s (%s, score=%d, filter=%d)",
|
|
- ((constraint->score >= 0)? "Colocating" : "Anti-colocating"),
|
|
+ ((constraint->score > 0)? "Colocating" : "Anti-colocating"),
|
|
rsc_lh->id, rsc_rh->id, constraint->id, constraint->score, filter_results);
|
|
|
|
switch (filter_results) {
|
|
diff --git a/lib/pacemaker/pcmk_sched_promotable.c b/lib/pacemaker/pcmk_sched_promotable.c
|
|
index 9a5474a..0b4f826 100644
|
|
--- a/lib/pacemaker/pcmk_sched_promotable.c
|
|
+++ b/lib/pacemaker/pcmk_sched_promotable.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.
|
|
*
|
|
@@ -321,10 +321,6 @@ promotion_order(pe_resource_t *rsc, pe_working_set_t *data_set)
|
|
for (; gIter != NULL; gIter = gIter->next) {
|
|
pcmk__colocation_t *constraint = (pcmk__colocation_t *) gIter->data;
|
|
|
|
- if (constraint->score == 0) {
|
|
- continue;
|
|
- }
|
|
-
|
|
/* (re-)adds location preferences of resources that the
|
|
* master instance should/must be colocated with
|
|
*/
|
|
@@ -345,10 +341,6 @@ promotion_order(pe_resource_t *rsc, pe_working_set_t *data_set)
|
|
for (; gIter != NULL; gIter = gIter->next) {
|
|
pcmk__colocation_t *constraint = (pcmk__colocation_t *) gIter->data;
|
|
|
|
- if (constraint->score == 0) {
|
|
- continue;
|
|
- }
|
|
-
|
|
/* (re-)adds location preferences of resource that wish to be
|
|
* colocated with the master instance
|
|
*/
|
|
@@ -740,9 +732,6 @@ pcmk__set_instance_roles(pe_resource_t *rsc, pe_working_set_t *data_set)
|
|
for (gIter2 = child_rsc->rsc_cons; gIter2 != NULL; gIter2 = gIter2->next) {
|
|
pcmk__colocation_t *cons = (pcmk__colocation_t *) gIter2->data;
|
|
|
|
- if (cons->score == 0) {
|
|
- continue;
|
|
- }
|
|
child_rsc->cmds->rsc_colocation_lh(child_rsc, cons->rsc_rh, cons,
|
|
data_set);
|
|
}
|
|
@@ -986,9 +975,6 @@ promotable_colocation_rh(pe_resource_t *rsc_lh, pe_resource_t *rsc_rh,
|
|
{
|
|
GListPtr gIter = NULL;
|
|
|
|
- if (constraint->score == 0) {
|
|
- return;
|
|
- }
|
|
if (pcmk_is_set(rsc_lh->flags, pe_rsc_provisional)) {
|
|
GListPtr rhs = NULL;
|
|
|
|
--
|
|
1.8.3.1
|
|
|
|
|
|
From 30d3c16a7fd142a84b342ad1d0bb6f8618d677c5 Mon Sep 17 00:00:00 2001
|
|
From: Ken Gaillot <kgaillot@redhat.com>
|
|
Date: Mon, 11 Jan 2021 16:53:55 -0600
|
|
Subject: [PATCH 10/12] Refactor: scheduler: convenience function for checking
|
|
colocation influence
|
|
|
|
---
|
|
include/pcmki/pcmki_scheduler.h | 26 ++++++++++++++++++++++++++
|
|
1 file changed, 26 insertions(+)
|
|
|
|
diff --git a/include/pcmki/pcmki_scheduler.h b/include/pcmki/pcmki_scheduler.h
|
|
index c604a32..f2f3d5b 100644
|
|
--- a/include/pcmki/pcmki_scheduler.h
|
|
+++ b/include/pcmki/pcmki_scheduler.h
|
|
@@ -107,4 +107,30 @@ extern gboolean show_scores;
|
|
extern gboolean show_utilization;
|
|
extern const char *transition_idle_timeout;
|
|
|
|
+/*!
|
|
+ * \internal
|
|
+ * \brief Check whether colocation's left-hand preferences should be considered
|
|
+ *
|
|
+ * \param[in] colocation Colocation constraint
|
|
+ * \param[in] rsc Right-hand instance (normally this will be
|
|
+ * colocation->rsc_rh, which NULL will be treated as,
|
|
+ * but for clones or bundles with multiple instances
|
|
+ * this can be a particular instance)
|
|
+ *
|
|
+ * \return true if colocation influence should be effective, otherwise false
|
|
+ */
|
|
+static inline bool
|
|
+pcmk__colocation_has_influence(const pcmk__colocation_t *colocation,
|
|
+ const pe_resource_t *rsc)
|
|
+{
|
|
+ if (rsc == NULL) {
|
|
+ rsc = colocation->rsc_rh;
|
|
+ }
|
|
+
|
|
+ /* The left hand of a colocation influences the right hand's location
|
|
+ * if the influence option is true, or the right hand is not yet active.
|
|
+ */
|
|
+ return colocation->influence || (rsc->running_on == NULL);
|
|
+}
|
|
+
|
|
#endif
|
|
--
|
|
1.8.3.1
|
|
|
|
|
|
From 7ae21be9c9a4c2aea68f74c4c8f80f7ba8053635 Mon Sep 17 00:00:00 2001
|
|
From: Ken Gaillot <kgaillot@redhat.com>
|
|
Date: Mon, 11 Jan 2021 17:02:30 -0600
|
|
Subject: [PATCH 11/12] Feature: scheduler: implement new critical and
|
|
influence options
|
|
|
|
The feature set is bumped because critical is a resource meta-attribute and
|
|
thus not dependent on schema version, and we don't want it to flip back and
|
|
forth between being respected or not.
|
|
|
|
critical just sets a resource-wide default for influence, so only influence is
|
|
actually used in scheduling.
|
|
|
|
It's a little tricky deciding when to consider influence. The basic idea is
|
|
that when a colocation constraint "A with B" has no influence, A's location
|
|
preferences should not influence B's location. But the colocation still matters
|
|
for things like where A is allowed to run. Thus we only consider it when
|
|
cycling through a resource's ->rsc_cons_lhs to add the dependents' preferences.
|
|
---
|
|
include/crm/crm.h | 4 ++--
|
|
lib/pacemaker/pcmk_sched_clone.c | 12 ++++++++++++
|
|
lib/pacemaker/pcmk_sched_native.c | 5 +++++
|
|
lib/pacemaker/pcmk_sched_promotable.c | 4 ++++
|
|
4 files changed, 23 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/include/crm/crm.h b/include/crm/crm.h
|
|
index 4bbf46a..3f22c4b 100644
|
|
--- a/include/crm/crm.h
|
|
+++ b/include/crm/crm.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.
|
|
*
|
|
@@ -51,7 +51,7 @@ extern "C" {
|
|
* >=3.0.13: Fail counts include operation name and interval
|
|
* >=3.2.0: DC supports PCMK_LRM_OP_INVALID and PCMK_LRM_OP_NOT_CONNECTED
|
|
*/
|
|
-# define CRM_FEATURE_SET "3.6.4"
|
|
+# define CRM_FEATURE_SET "3.7.0"
|
|
|
|
# define EOS '\0'
|
|
# define DIMOF(a) ((int) (sizeof(a)/sizeof(a[0])) )
|
|
diff --git a/lib/pacemaker/pcmk_sched_clone.c b/lib/pacemaker/pcmk_sched_clone.c
|
|
index 3cfc06c..dd6ff48 100644
|
|
--- a/lib/pacemaker/pcmk_sched_clone.c
|
|
+++ b/lib/pacemaker/pcmk_sched_clone.c
|
|
@@ -251,6 +251,9 @@ sort_clone_instance(gconstpointer a, gconstpointer b, gpointer data_set)
|
|
for (gIter = resource1->parent->rsc_cons_lhs; gIter; gIter = gIter->next) {
|
|
pcmk__colocation_t *constraint = (pcmk__colocation_t *) gIter->data;
|
|
|
|
+ if (!pcmk__colocation_has_influence(constraint, resource1)) {
|
|
+ continue;
|
|
+ }
|
|
crm_trace("Applying %s to %s", constraint->id, resource1->id);
|
|
|
|
hash1 = pcmk__native_merge_weights(constraint->rsc_lh,
|
|
@@ -277,6 +280,9 @@ sort_clone_instance(gconstpointer a, gconstpointer b, gpointer data_set)
|
|
for (gIter = resource2->parent->rsc_cons_lhs; gIter; gIter = gIter->next) {
|
|
pcmk__colocation_t *constraint = (pcmk__colocation_t *) gIter->data;
|
|
|
|
+ if (!pcmk__colocation_has_influence(constraint, resource2)) {
|
|
+ continue;
|
|
+ }
|
|
crm_trace("Applying %s to %s", constraint->id, resource2->id);
|
|
|
|
hash2 = pcmk__native_merge_weights(constraint->rsc_lh,
|
|
@@ -504,6 +510,9 @@ append_parent_colocation(pe_resource_t * rsc, pe_resource_t * child, gboolean al
|
|
for (; gIter != NULL; gIter = gIter->next) {
|
|
pcmk__colocation_t *cons = (pcmk__colocation_t *) gIter->data;
|
|
|
|
+ if (!pcmk__colocation_has_influence(cons, child)) {
|
|
+ continue;
|
|
+ }
|
|
if (all || cons->score < 0) {
|
|
child->rsc_cons_lhs = g_list_prepend(child->rsc_cons_lhs, cons);
|
|
}
|
|
@@ -643,6 +652,9 @@ pcmk__clone_allocate(pe_resource_t *rsc, pe_node_t *prefer,
|
|
for (GListPtr gIter = rsc->rsc_cons_lhs; gIter != NULL; gIter = gIter->next) {
|
|
pcmk__colocation_t *constraint = (pcmk__colocation_t *) gIter->data;
|
|
|
|
+ if (!pcmk__colocation_has_influence(constraint, NULL)) {
|
|
+ continue;
|
|
+ }
|
|
rsc->allowed_nodes =
|
|
constraint->rsc_lh->cmds->merge_weights(constraint->rsc_lh, rsc->id, rsc->allowed_nodes,
|
|
constraint->node_attribute,
|
|
diff --git a/lib/pacemaker/pcmk_sched_native.c b/lib/pacemaker/pcmk_sched_native.c
|
|
index c7bf4fe..0e50eda 100644
|
|
--- a/lib/pacemaker/pcmk_sched_native.c
|
|
+++ b/lib/pacemaker/pcmk_sched_native.c
|
|
@@ -440,6 +440,8 @@ pcmk__native_merge_weights(pe_resource_t *rsc, const char *rhs,
|
|
|
|
if (pcmk_is_set(flags, pe_weights_forward)) {
|
|
other = constraint->rsc_rh;
|
|
+ } else if (!pcmk__colocation_has_influence(constraint, NULL)) {
|
|
+ continue;
|
|
} else {
|
|
other = constraint->rsc_lh;
|
|
}
|
|
@@ -556,6 +558,9 @@ pcmk__native_allocate(pe_resource_t *rsc, pe_node_t *prefer,
|
|
for (gIter = rsc->rsc_cons_lhs; gIter != NULL; gIter = gIter->next) {
|
|
pcmk__colocation_t *constraint = (pcmk__colocation_t *) gIter->data;
|
|
|
|
+ if (!pcmk__colocation_has_influence(constraint, NULL)) {
|
|
+ continue;
|
|
+ }
|
|
pe_rsc_trace(rsc, "Merging score of '%s' constraint (%s with %s)",
|
|
constraint->id, constraint->rsc_lh->id,
|
|
constraint->rsc_rh->id);
|
|
diff --git a/lib/pacemaker/pcmk_sched_promotable.c b/lib/pacemaker/pcmk_sched_promotable.c
|
|
index 0b4f826..40d07e9 100644
|
|
--- a/lib/pacemaker/pcmk_sched_promotable.c
|
|
+++ b/lib/pacemaker/pcmk_sched_promotable.c
|
|
@@ -341,6 +341,10 @@ promotion_order(pe_resource_t *rsc, pe_working_set_t *data_set)
|
|
for (; gIter != NULL; gIter = gIter->next) {
|
|
pcmk__colocation_t *constraint = (pcmk__colocation_t *) gIter->data;
|
|
|
|
+ if (!pcmk__colocation_has_influence(constraint, NULL)) {
|
|
+ continue;
|
|
+ }
|
|
+
|
|
/* (re-)adds location preferences of resource that wish to be
|
|
* colocated with the master instance
|
|
*/
|
|
--
|
|
1.8.3.1
|
|
|
|
|
|
From 3bc2288f65a72d83f15f008d01054f9cb8663865 Mon Sep 17 00:00:00 2001
|
|
From: Ken Gaillot <kgaillot@redhat.com>
|
|
Date: Tue, 12 Jan 2021 14:24:21 -0600
|
|
Subject: [PATCH 12/12] Test: cts-scheduler: add regression test for colocation
|
|
influence
|
|
|
|
---
|
|
cts/cts-scheduler.in | 3 +-
|
|
cts/scheduler/colocation-influence.dot | 92 ++
|
|
cts/scheduler/colocation-influence.exp | 455 ++++++++++
|
|
cts/scheduler/colocation-influence.scores | 673 ++++++++++++++
|
|
cts/scheduler/colocation-influence.summary | 168 ++++
|
|
cts/scheduler/colocation-influence.xml | 1298 ++++++++++++++++++++++++++++
|
|
6 files changed, 2688 insertions(+), 1 deletion(-)
|
|
create mode 100644 cts/scheduler/colocation-influence.dot
|
|
create mode 100644 cts/scheduler/colocation-influence.exp
|
|
create mode 100644 cts/scheduler/colocation-influence.scores
|
|
create mode 100644 cts/scheduler/colocation-influence.summary
|
|
create mode 100644 cts/scheduler/colocation-influence.xml
|
|
|
|
diff --git a/cts/cts-scheduler.in b/cts/cts-scheduler.in
|
|
index 919d3ed..027ddf9 100644
|
|
--- a/cts/cts-scheduler.in
|
|
+++ b/cts/cts-scheduler.in
|
|
@@ -231,6 +231,7 @@ TESTS = [
|
|
[ "complex_enforce_colo", "Always enforce B with A INFINITY. (make sure heat-engine stops)" ],
|
|
[ "coloc-dependee-should-stay", "Stickiness outweighs group colocation" ],
|
|
[ "coloc-dependee-should-move", "Group colocation outweighs stickiness" ],
|
|
+ [ "colocation-influence", "Respect colocation influence" ],
|
|
],
|
|
[
|
|
[ "rsc-sets-seq-true", "Resource Sets - sequential=false" ],
|
|
diff --git a/cts/scheduler/colocation-influence.dot b/cts/scheduler/colocation-influence.dot
|
|
new file mode 100644
|
|
index 0000000..9573ab3
|
|
--- /dev/null
|
|
+++ b/cts/scheduler/colocation-influence.dot
|
|
@@ -0,0 +1,92 @@
|
|
+ digraph "g" {
|
|
+"bundle11-1_monitor_0 rhel7-1" -> "bundle11-1_start_0 rhel7-5" [ style = dashed]
|
|
+"bundle11-1_monitor_0 rhel7-1" [ style=dashed color="red" fontcolor="black"]
|
|
+"bundle11-1_monitor_0 rhel7-2" -> "bundle11-1_start_0 rhel7-5" [ style = dashed]
|
|
+"bundle11-1_monitor_0 rhel7-2" [ style=dashed color="red" fontcolor="black"]
|
|
+"bundle11-1_monitor_0 rhel7-3" -> "bundle11-1_start_0 rhel7-5" [ style = dashed]
|
|
+"bundle11-1_monitor_0 rhel7-3" [ style=dashed color="red" fontcolor="black"]
|
|
+"bundle11-1_monitor_0 rhel7-4" -> "bundle11-1_start_0 rhel7-5" [ style = dashed]
|
|
+"bundle11-1_monitor_0 rhel7-4" [ style=dashed color="red" fontcolor="black"]
|
|
+"bundle11-1_monitor_0 rhel7-5" -> "bundle11-1_start_0 rhel7-5" [ style = dashed]
|
|
+"bundle11-1_monitor_0 rhel7-5" [ style=dashed color="red" fontcolor="black"]
|
|
+"bundle11-1_monitor_30000 rhel7-5" [ style=dashed color="red" fontcolor="black"]
|
|
+"bundle11-1_start_0 rhel7-5" -> "bundle11-1_monitor_30000 rhel7-5" [ style = dashed]
|
|
+"bundle11-1_start_0 rhel7-5" -> "bundle11a:1_monitor_15000 bundle11-1" [ style = dashed]
|
|
+"bundle11-1_start_0 rhel7-5" -> "bundle11a:1_start_0 bundle11-1" [ style = dashed]
|
|
+"bundle11-1_start_0 rhel7-5" [ style=dashed color="red" fontcolor="black"]
|
|
+"bundle11-clone_running_0" -> "bundle11_running_0" [ style = bold]
|
|
+"bundle11-clone_running_0" [ style=bold color="green" fontcolor="orange"]
|
|
+"bundle11-clone_start_0" -> "bundle11-clone_running_0" [ style = bold]
|
|
+"bundle11-clone_start_0" -> "bundle11a:1_start_0 bundle11-1" [ style = dashed]
|
|
+"bundle11-clone_start_0" [ style=bold color="green" fontcolor="orange"]
|
|
+"bundle11_running_0" [ style=bold color="green" fontcolor="orange"]
|
|
+"bundle11_start_0" -> "bundle11-clone_start_0" [ style = bold]
|
|
+"bundle11_start_0" [ style=bold color="green" fontcolor="orange"]
|
|
+"bundle11a:1_monitor_15000 bundle11-1" [ style=dashed color="red" fontcolor="black"]
|
|
+"bundle11a:1_start_0 bundle11-1" -> "bundle11-clone_running_0" [ style = dashed]
|
|
+"bundle11a:1_start_0 bundle11-1" -> "bundle11a:1_monitor_15000 bundle11-1" [ style = dashed]
|
|
+"bundle11a:1_start_0 bundle11-1" [ style=dashed color="red" fontcolor="black"]
|
|
+"group6a_stop_0" -> "group6a_stopped_0" [ style = bold]
|
|
+"group6a_stop_0" -> "rsc6a1_stop_0 rhel7-2" [ style = bold]
|
|
+"group6a_stop_0" -> "rsc6a2_stop_0 rhel7-2" [ style = bold]
|
|
+"group6a_stop_0" [ style=bold color="green" fontcolor="orange"]
|
|
+"group6a_stopped_0" [ style=bold color="green" fontcolor="orange"]
|
|
+"group7a_stop_0" -> "group7a_stopped_0" [ style = bold]
|
|
+"group7a_stop_0" -> "rsc7a2_stop_0 rhel7-3" [ style = bold]
|
|
+"group7a_stop_0" [ style=bold color="green" fontcolor="orange"]
|
|
+"group7a_stopped_0" [ style=bold color="green" fontcolor="orange"]
|
|
+"rsc10a_monitor_10000 rhel7-3" [ style=bold color="green" fontcolor="black"]
|
|
+"rsc10a_start_0 rhel7-3" -> "rsc10a_monitor_10000 rhel7-3" [ style = bold]
|
|
+"rsc10a_start_0 rhel7-3" [ style=bold color="green" fontcolor="black"]
|
|
+"rsc10a_stop_0 rhel7-2" -> "rsc10a_start_0 rhel7-3" [ style = bold]
|
|
+"rsc10a_stop_0 rhel7-2" [ style=bold color="green" fontcolor="black"]
|
|
+"rsc12b_stop_0 rhel7-1" [ style=bold color="green" fontcolor="black"]
|
|
+"rsc13a_stop_0 rhel7-3" [ style=bold color="green" fontcolor="black"]
|
|
+"rsc14a-clone_demote_0" -> "rsc14a-clone_demoted_0" [ style = bold]
|
|
+"rsc14a-clone_demote_0" -> "rsc14a_demote_0 rhel7-4" [ style = bold]
|
|
+"rsc14a-clone_demote_0" [ style=bold color="green" fontcolor="orange"]
|
|
+"rsc14a-clone_demoted_0" -> "rsc14a-clone_stop_0" [ style = bold]
|
|
+"rsc14a-clone_demoted_0" [ style=bold color="green" fontcolor="orange"]
|
|
+"rsc14a-clone_stop_0" -> "rsc14a-clone_stopped_0" [ style = bold]
|
|
+"rsc14a-clone_stop_0" -> "rsc14a_stop_0 rhel7-4" [ style = bold]
|
|
+"rsc14a-clone_stop_0" [ style=bold color="green" fontcolor="orange"]
|
|
+"rsc14a-clone_stopped_0" [ style=bold color="green" fontcolor="orange"]
|
|
+"rsc14a_demote_0 rhel7-4" -> "rsc14a-clone_demoted_0" [ style = bold]
|
|
+"rsc14a_demote_0 rhel7-4" -> "rsc14a_stop_0 rhel7-4" [ style = bold]
|
|
+"rsc14a_demote_0 rhel7-4" [ style=bold color="green" fontcolor="black"]
|
|
+"rsc14a_stop_0 rhel7-4" -> "rsc14a-clone_stopped_0" [ style = bold]
|
|
+"rsc14a_stop_0 rhel7-4" [ style=bold color="green" fontcolor="black"]
|
|
+"rsc1a_monitor_10000 rhel7-3" [ style=bold color="green" fontcolor="black"]
|
|
+"rsc1a_start_0 rhel7-3" -> "rsc1a_monitor_10000 rhel7-3" [ style = bold]
|
|
+"rsc1a_start_0 rhel7-3" [ style=bold color="green" fontcolor="black"]
|
|
+"rsc1a_stop_0 rhel7-2" -> "rsc1a_start_0 rhel7-3" [ style = bold]
|
|
+"rsc1a_stop_0 rhel7-2" [ style=bold color="green" fontcolor="black"]
|
|
+"rsc1b_monitor_10000 rhel7-3" [ style=bold color="green" fontcolor="black"]
|
|
+"rsc1b_start_0 rhel7-3" -> "rsc1b_monitor_10000 rhel7-3" [ style = bold]
|
|
+"rsc1b_start_0 rhel7-3" [ style=bold color="green" fontcolor="black"]
|
|
+"rsc1b_stop_0 rhel7-2" -> "rsc1b_start_0 rhel7-3" [ style = bold]
|
|
+"rsc1b_stop_0 rhel7-2" [ style=bold color="green" fontcolor="black"]
|
|
+"rsc2a_stop_0 rhel7-4" [ style=bold color="green" fontcolor="black"]
|
|
+"rsc3a_monitor_10000 rhel7-2" [ style=bold color="green" fontcolor="black"]
|
|
+"rsc3a_start_0 rhel7-2" -> "rsc3a_monitor_10000 rhel7-2" [ style = bold]
|
|
+"rsc3a_start_0 rhel7-2" [ style=bold color="green" fontcolor="black"]
|
|
+"rsc3b_monitor_10000 rhel7-2" [ style=bold color="green" fontcolor="black"]
|
|
+"rsc3b_start_0 rhel7-2" -> "rsc3b_monitor_10000 rhel7-2" [ style = bold]
|
|
+"rsc3b_start_0 rhel7-2" [ style=bold color="green" fontcolor="black"]
|
|
+"rsc4a_stop_0 rhel7-3" [ style=bold color="green" fontcolor="black"]
|
|
+"rsc5a_stop_0 rhel7-1" [ style=bold color="green" fontcolor="black"]
|
|
+"rsc6a1_stop_0 rhel7-2" -> "group6a_stopped_0" [ style = bold]
|
|
+"rsc6a1_stop_0 rhel7-2" [ style=bold color="green" fontcolor="black"]
|
|
+"rsc6a2_stop_0 rhel7-2" -> "group6a_stopped_0" [ style = bold]
|
|
+"rsc6a2_stop_0 rhel7-2" -> "rsc6a1_stop_0 rhel7-2" [ style = bold]
|
|
+"rsc6a2_stop_0 rhel7-2" [ style=bold color="green" fontcolor="black"]
|
|
+"rsc7a2_stop_0 rhel7-3" -> "group7a_stopped_0" [ style = bold]
|
|
+"rsc7a2_stop_0 rhel7-3" [ style=bold color="green" fontcolor="black"]
|
|
+"rsc8a-clone_stop_0" -> "rsc8a-clone_stopped_0" [ style = bold]
|
|
+"rsc8a-clone_stop_0" -> "rsc8a_stop_0 rhel7-4" [ style = bold]
|
|
+"rsc8a-clone_stop_0" [ style=bold color="green" fontcolor="orange"]
|
|
+"rsc8a-clone_stopped_0" [ style=bold color="green" fontcolor="orange"]
|
|
+"rsc8a_stop_0 rhel7-4" -> "rsc8a-clone_stopped_0" [ style = bold]
|
|
+"rsc8a_stop_0 rhel7-4" [ style=bold color="green" fontcolor="black"]
|
|
+"rsc9c_stop_0 rhel7-4" [ style=bold color="green" fontcolor="black"]
|
|
+}
|
|
diff --git a/cts/scheduler/colocation-influence.exp b/cts/scheduler/colocation-influence.exp
|
|
new file mode 100644
|
|
index 0000000..410c46f
|
|
--- /dev/null
|
|
+++ b/cts/scheduler/colocation-influence.exp
|
|
@@ -0,0 +1,455 @@
|
|
+<transition_graph cluster-delay="60s" stonith-timeout="60s" failed-stop-offset="INFINITY" failed-start-offset="1" transition_id="0">
|
|
+ <synapse id="0">
|
|
+ <action_set>
|
|
+ <rsc_op id="61" operation="monitor" operation_key="rsc1a_monitor_10000" on_node="rhel7-3" on_node_uuid="3">
|
|
+ <primitive id="rsc1a" class="ocf" provider="pacemaker" type="Dummy"/>
|
|
+ <attributes CRM_meta_interval="10000" CRM_meta_name="monitor" CRM_meta_on_node="rhel7-3" CRM_meta_on_node_uuid="3" CRM_meta_timeout="20000" />
|
|
+ </rsc_op>
|
|
+ </action_set>
|
|
+ <inputs>
|
|
+ <trigger>
|
|
+ <rsc_op id="60" operation="start" operation_key="rsc1a_start_0" on_node="rhel7-3" on_node_uuid="3"/>
|
|
+ </trigger>
|
|
+ </inputs>
|
|
+ </synapse>
|
|
+ <synapse id="1">
|
|
+ <action_set>
|
|
+ <rsc_op id="60" operation="start" operation_key="rsc1a_start_0" on_node="rhel7-3" on_node_uuid="3">
|
|
+ <primitive id="rsc1a" class="ocf" provider="pacemaker" type="Dummy"/>
|
|
+ <attributes CRM_meta_name="start" CRM_meta_on_node="rhel7-3" CRM_meta_on_node_uuid="3" CRM_meta_timeout="20000" />
|
|
+ </rsc_op>
|
|
+ </action_set>
|
|
+ <inputs>
|
|
+ <trigger>
|
|
+ <rsc_op id="59" operation="stop" operation_key="rsc1a_stop_0" on_node="rhel7-2" on_node_uuid="2"/>
|
|
+ </trigger>
|
|
+ </inputs>
|
|
+ </synapse>
|
|
+ <synapse id="2">
|
|
+ <action_set>
|
|
+ <rsc_op id="59" operation="stop" operation_key="rsc1a_stop_0" on_node="rhel7-2" on_node_uuid="2">
|
|
+ <primitive id="rsc1a" class="ocf" provider="pacemaker" type="Dummy"/>
|
|
+ <attributes CRM_meta_name="stop" CRM_meta_on_node="rhel7-2" CRM_meta_on_node_uuid="2" CRM_meta_timeout="20000" />
|
|
+ </rsc_op>
|
|
+ </action_set>
|
|
+ <inputs/>
|
|
+ </synapse>
|
|
+ <synapse id="3">
|
|
+ <action_set>
|
|
+ <rsc_op id="64" operation="monitor" operation_key="rsc1b_monitor_10000" on_node="rhel7-3" on_node_uuid="3">
|
|
+ <primitive id="rsc1b" class="ocf" provider="pacemaker" type="Dummy"/>
|
|
+ <attributes CRM_meta_interval="10000" CRM_meta_name="monitor" CRM_meta_on_node="rhel7-3" CRM_meta_on_node_uuid="3" CRM_meta_timeout="20000" />
|
|
+ </rsc_op>
|
|
+ </action_set>
|
|
+ <inputs>
|
|
+ <trigger>
|
|
+ <rsc_op id="63" operation="start" operation_key="rsc1b_start_0" on_node="rhel7-3" on_node_uuid="3"/>
|
|
+ </trigger>
|
|
+ </inputs>
|
|
+ </synapse>
|
|
+ <synapse id="4">
|
|
+ <action_set>
|
|
+ <rsc_op id="63" operation="start" operation_key="rsc1b_start_0" on_node="rhel7-3" on_node_uuid="3">
|
|
+ <primitive id="rsc1b" class="ocf" provider="pacemaker" type="Dummy"/>
|
|
+ <attributes CRM_meta_name="start" CRM_meta_on_node="rhel7-3" CRM_meta_on_node_uuid="3" CRM_meta_timeout="20000" />
|
|
+ </rsc_op>
|
|
+ </action_set>
|
|
+ <inputs>
|
|
+ <trigger>
|
|
+ <rsc_op id="62" operation="stop" operation_key="rsc1b_stop_0" on_node="rhel7-2" on_node_uuid="2"/>
|
|
+ </trigger>
|
|
+ </inputs>
|
|
+ </synapse>
|
|
+ <synapse id="5">
|
|
+ <action_set>
|
|
+ <rsc_op id="62" operation="stop" operation_key="rsc1b_stop_0" on_node="rhel7-2" on_node_uuid="2">
|
|
+ <primitive id="rsc1b" class="ocf" provider="pacemaker" type="Dummy"/>
|
|
+ <attributes CRM_meta_name="stop" CRM_meta_on_node="rhel7-2" CRM_meta_on_node_uuid="2" CRM_meta_timeout="20000" />
|
|
+ </rsc_op>
|
|
+ </action_set>
|
|
+ <inputs/>
|
|
+ </synapse>
|
|
+ <synapse id="6">
|
|
+ <action_set>
|
|
+ <rsc_op id="65" operation="stop" operation_key="rsc2a_stop_0" on_node="rhel7-4" on_node_uuid="4">
|
|
+ <primitive id="rsc2a" class="ocf" provider="pacemaker" type="Dummy"/>
|
|
+ <attributes CRM_meta_name="stop" CRM_meta_on_node="rhel7-4" CRM_meta_on_node_uuid="4" CRM_meta_timeout="20000" />
|
|
+ </rsc_op>
|
|
+ </action_set>
|
|
+ <inputs/>
|
|
+ </synapse>
|
|
+ <synapse id="7">
|
|
+ <action_set>
|
|
+ <rsc_op id="69" operation="monitor" operation_key="rsc3a_monitor_10000" on_node="rhel7-2" on_node_uuid="2">
|
|
+ <primitive id="rsc3a" class="ocf" provider="pacemaker" type="Dummy"/>
|
|
+ <attributes CRM_meta_interval="10000" CRM_meta_name="monitor" CRM_meta_on_node="rhel7-2" CRM_meta_on_node_uuid="2" CRM_meta_timeout="20000" />
|
|
+ </rsc_op>
|
|
+ </action_set>
|
|
+ <inputs>
|
|
+ <trigger>
|
|
+ <rsc_op id="68" operation="start" operation_key="rsc3a_start_0" on_node="rhel7-2" on_node_uuid="2"/>
|
|
+ </trigger>
|
|
+ </inputs>
|
|
+ </synapse>
|
|
+ <synapse id="8">
|
|
+ <action_set>
|
|
+ <rsc_op id="68" operation="start" operation_key="rsc3a_start_0" on_node="rhel7-2" on_node_uuid="2">
|
|
+ <primitive id="rsc3a" class="ocf" provider="pacemaker" type="Dummy"/>
|
|
+ <attributes CRM_meta_name="start" CRM_meta_on_node="rhel7-2" CRM_meta_on_node_uuid="2" CRM_meta_timeout="20000" />
|
|
+ </rsc_op>
|
|
+ </action_set>
|
|
+ <inputs/>
|
|
+ </synapse>
|
|
+ <synapse id="9">
|
|
+ <action_set>
|
|
+ <rsc_op id="71" operation="monitor" operation_key="rsc3b_monitor_10000" on_node="rhel7-2" on_node_uuid="2">
|
|
+ <primitive id="rsc3b" class="ocf" provider="pacemaker" type="Dummy"/>
|
|
+ <attributes CRM_meta_interval="10000" CRM_meta_name="monitor" CRM_meta_on_node="rhel7-2" CRM_meta_on_node_uuid="2" CRM_meta_timeout="20000" />
|
|
+ </rsc_op>
|
|
+ </action_set>
|
|
+ <inputs>
|
|
+ <trigger>
|
|
+ <rsc_op id="70" operation="start" operation_key="rsc3b_start_0" on_node="rhel7-2" on_node_uuid="2"/>
|
|
+ </trigger>
|
|
+ </inputs>
|
|
+ </synapse>
|
|
+ <synapse id="10">
|
|
+ <action_set>
|
|
+ <rsc_op id="70" operation="start" operation_key="rsc3b_start_0" on_node="rhel7-2" on_node_uuid="2">
|
|
+ <primitive id="rsc3b" class="ocf" provider="pacemaker" type="Dummy"/>
|
|
+ <attributes CRM_meta_name="start" CRM_meta_on_node="rhel7-2" CRM_meta_on_node_uuid="2" CRM_meta_timeout="20000" />
|
|
+ </rsc_op>
|
|
+ </action_set>
|
|
+ <inputs/>
|
|
+ </synapse>
|
|
+ <synapse id="11">
|
|
+ <action_set>
|
|
+ <rsc_op id="72" operation="stop" operation_key="rsc4a_stop_0" on_node="rhel7-3" on_node_uuid="3">
|
|
+ <primitive id="rsc4a" class="ocf" provider="pacemaker" type="Dummy"/>
|
|
+ <attributes CRM_meta_name="stop" CRM_meta_on_node="rhel7-3" CRM_meta_on_node_uuid="3" CRM_meta_timeout="20000" />
|
|
+ </rsc_op>
|
|
+ </action_set>
|
|
+ <inputs/>
|
|
+ </synapse>
|
|
+ <synapse id="12">
|
|
+ <action_set>
|
|
+ <rsc_op id="75" operation="stop" operation_key="rsc5a_stop_0" on_node="rhel7-1" on_node_uuid="1">
|
|
+ <primitive id="rsc5a" class="ocf" provider="pacemaker" type="Dummy"/>
|
|
+ <attributes CRM_meta_name="stop" CRM_meta_on_node="rhel7-1" CRM_meta_on_node_uuid="1" CRM_meta_timeout="20000" />
|
|
+ </rsc_op>
|
|
+ </action_set>
|
|
+ <inputs/>
|
|
+ </synapse>
|
|
+ <synapse id="13">
|
|
+ <action_set>
|
|
+ <pseudo_event id="89" operation="stopped" operation_key="group6a_stopped_0">
|
|
+ <attributes CRM_meta_timeout="90000" />
|
|
+ </pseudo_event>
|
|
+ </action_set>
|
|
+ <inputs>
|
|
+ <trigger>
|
|
+ <rsc_op id="84" operation="stop" operation_key="rsc6a1_stop_0" on_node="rhel7-2" on_node_uuid="2"/>
|
|
+ </trigger>
|
|
+ <trigger>
|
|
+ <rsc_op id="85" operation="stop" operation_key="rsc6a2_stop_0" on_node="rhel7-2" on_node_uuid="2"/>
|
|
+ </trigger>
|
|
+ <trigger>
|
|
+ <pseudo_event id="88" operation="stop" operation_key="group6a_stop_0"/>
|
|
+ </trigger>
|
|
+ </inputs>
|
|
+ </synapse>
|
|
+ <synapse id="14">
|
|
+ <action_set>
|
|
+ <pseudo_event id="88" operation="stop" operation_key="group6a_stop_0">
|
|
+ <attributes CRM_meta_timeout="90000" />
|
|
+ </pseudo_event>
|
|
+ </action_set>
|
|
+ <inputs/>
|
|
+ </synapse>
|
|
+ <synapse id="15">
|
|
+ <action_set>
|
|
+ <rsc_op id="84" operation="stop" operation_key="rsc6a1_stop_0" on_node="rhel7-2" on_node_uuid="2">
|
|
+ <primitive id="rsc6a1" class="ocf" provider="pacemaker" type="Dummy"/>
|
|
+ <attributes CRM_meta_name="stop" CRM_meta_on_node="rhel7-2" CRM_meta_on_node_uuid="2" CRM_meta_timeout="20000" />
|
|
+ </rsc_op>
|
|
+ </action_set>
|
|
+ <inputs>
|
|
+ <trigger>
|
|
+ <rsc_op id="85" operation="stop" operation_key="rsc6a2_stop_0" on_node="rhel7-2" on_node_uuid="2"/>
|
|
+ </trigger>
|
|
+ <trigger>
|
|
+ <pseudo_event id="88" operation="stop" operation_key="group6a_stop_0"/>
|
|
+ </trigger>
|
|
+ </inputs>
|
|
+ </synapse>
|
|
+ <synapse id="16">
|
|
+ <action_set>
|
|
+ <rsc_op id="85" operation="stop" operation_key="rsc6a2_stop_0" on_node="rhel7-2" on_node_uuid="2">
|
|
+ <primitive id="rsc6a2" class="ocf" provider="pacemaker" type="Dummy"/>
|
|
+ <attributes CRM_meta_name="stop" CRM_meta_on_node="rhel7-2" CRM_meta_on_node_uuid="2" CRM_meta_timeout="20000" />
|
|
+ </rsc_op>
|
|
+ </action_set>
|
|
+ <inputs>
|
|
+ <trigger>
|
|
+ <pseudo_event id="88" operation="stop" operation_key="group6a_stop_0"/>
|
|
+ </trigger>
|
|
+ </inputs>
|
|
+ </synapse>
|
|
+ <synapse id="17">
|
|
+ <action_set>
|
|
+ <pseudo_event id="98" operation="stopped" operation_key="group7a_stopped_0">
|
|
+ <attributes CRM_meta_timeout="90000" />
|
|
+ </pseudo_event>
|
|
+ </action_set>
|
|
+ <inputs>
|
|
+ <trigger>
|
|
+ <rsc_op id="94" operation="stop" operation_key="rsc7a2_stop_0" on_node="rhel7-3" on_node_uuid="3"/>
|
|
+ </trigger>
|
|
+ <trigger>
|
|
+ <pseudo_event id="97" operation="stop" operation_key="group7a_stop_0"/>
|
|
+ </trigger>
|
|
+ </inputs>
|
|
+ </synapse>
|
|
+ <synapse id="18">
|
|
+ <action_set>
|
|
+ <pseudo_event id="97" operation="stop" operation_key="group7a_stop_0">
|
|
+ <attributes CRM_meta_timeout="90000" />
|
|
+ </pseudo_event>
|
|
+ </action_set>
|
|
+ <inputs/>
|
|
+ </synapse>
|
|
+ <synapse id="19">
|
|
+ <action_set>
|
|
+ <rsc_op id="94" operation="stop" operation_key="rsc7a2_stop_0" on_node="rhel7-3" on_node_uuid="3">
|
|
+ <primitive id="rsc7a2" class="ocf" provider="pacemaker" type="Dummy"/>
|
|
+ <attributes CRM_meta_name="stop" CRM_meta_on_node="rhel7-3" CRM_meta_on_node_uuid="3" CRM_meta_timeout="20000" />
|
|
+ </rsc_op>
|
|
+ </action_set>
|
|
+ <inputs>
|
|
+ <trigger>
|
|
+ <pseudo_event id="97" operation="stop" operation_key="group7a_stop_0"/>
|
|
+ </trigger>
|
|
+ </inputs>
|
|
+ </synapse>
|
|
+ <synapse id="20">
|
|
+ <action_set>
|
|
+ <rsc_op id="101" operation="stop" operation_key="rsc8a_stop_0" internal_operation_key="rsc8a:1_stop_0" on_node="rhel7-4" on_node_uuid="4">
|
|
+ <primitive id="rsc8a" long-id="rsc8a:1" class="ocf" provider="pacemaker" type="Dummy"/>
|
|
+ <attributes CRM_meta_clone="1" CRM_meta_clone_max="3" CRM_meta_clone_node_max="1" CRM_meta_globally_unique="false" CRM_meta_name="stop" CRM_meta_notify="false" CRM_meta_on_node="rhel7-4" CRM_meta_on_node_uuid="4" CRM_meta_timeout="20000" />
|
|
+ </rsc_op>
|
|
+ </action_set>
|
|
+ <inputs>
|
|
+ <trigger>
|
|
+ <pseudo_event id="106" operation="stop" operation_key="rsc8a-clone_stop_0"/>
|
|
+ </trigger>
|
|
+ </inputs>
|
|
+ </synapse>
|
|
+ <synapse id="21" priority="1000000">
|
|
+ <action_set>
|
|
+ <pseudo_event id="107" operation="stopped" operation_key="rsc8a-clone_stopped_0">
|
|
+ <attributes CRM_meta_clone_max="3" CRM_meta_clone_node_max="1" CRM_meta_globally_unique="false" CRM_meta_notify="false" CRM_meta_timeout="90000" />
|
|
+ </pseudo_event>
|
|
+ </action_set>
|
|
+ <inputs>
|
|
+ <trigger>
|
|
+ <rsc_op id="101" operation="stop" operation_key="rsc8a_stop_0" internal_operation_key="rsc8a:1_stop_0" on_node="rhel7-4" on_node_uuid="4"/>
|
|
+ </trigger>
|
|
+ <trigger>
|
|
+ <pseudo_event id="106" operation="stop" operation_key="rsc8a-clone_stop_0"/>
|
|
+ </trigger>
|
|
+ </inputs>
|
|
+ </synapse>
|
|
+ <synapse id="22">
|
|
+ <action_set>
|
|
+ <pseudo_event id="106" operation="stop" operation_key="rsc8a-clone_stop_0">
|
|
+ <attributes CRM_meta_clone_max="3" CRM_meta_clone_node_max="1" CRM_meta_globally_unique="false" CRM_meta_notify="false" CRM_meta_timeout="90000" />
|
|
+ </pseudo_event>
|
|
+ </action_set>
|
|
+ <inputs/>
|
|
+ </synapse>
|
|
+ <synapse id="23">
|
|
+ <action_set>
|
|
+ <rsc_op id="122" operation="stop" operation_key="rsc9c_stop_0" on_node="rhel7-4" on_node_uuid="4">
|
|
+ <primitive id="rsc9c" class="ocf" provider="pacemaker" type="Dummy"/>
|
|
+ <attributes CRM_meta_name="stop" CRM_meta_on_node="rhel7-4" CRM_meta_on_node_uuid="4" CRM_meta_timeout="20000" />
|
|
+ </rsc_op>
|
|
+ </action_set>
|
|
+ <inputs/>
|
|
+ </synapse>
|
|
+ <synapse id="24">
|
|
+ <action_set>
|
|
+ <rsc_op id="125" operation="monitor" operation_key="rsc10a_monitor_10000" on_node="rhel7-3" on_node_uuid="3">
|
|
+ <primitive id="rsc10a" class="ocf" provider="pacemaker" type="Dummy"/>
|
|
+ <attributes CRM_meta_interval="10000" CRM_meta_name="monitor" CRM_meta_on_node="rhel7-3" CRM_meta_on_node_uuid="3" CRM_meta_timeout="20000" />
|
|
+ </rsc_op>
|
|
+ </action_set>
|
|
+ <inputs>
|
|
+ <trigger>
|
|
+ <rsc_op id="124" operation="start" operation_key="rsc10a_start_0" on_node="rhel7-3" on_node_uuid="3"/>
|
|
+ </trigger>
|
|
+ </inputs>
|
|
+ </synapse>
|
|
+ <synapse id="25">
|
|
+ <action_set>
|
|
+ <rsc_op id="124" operation="start" operation_key="rsc10a_start_0" on_node="rhel7-3" on_node_uuid="3">
|
|
+ <primitive id="rsc10a" class="ocf" provider="pacemaker" type="Dummy"/>
|
|
+ <attributes CRM_meta_name="start" CRM_meta_on_node="rhel7-3" CRM_meta_on_node_uuid="3" CRM_meta_timeout="20000" />
|
|
+ </rsc_op>
|
|
+ </action_set>
|
|
+ <inputs>
|
|
+ <trigger>
|
|
+ <rsc_op id="123" operation="stop" operation_key="rsc10a_stop_0" on_node="rhel7-2" on_node_uuid="2"/>
|
|
+ </trigger>
|
|
+ </inputs>
|
|
+ </synapse>
|
|
+ <synapse id="26">
|
|
+ <action_set>
|
|
+ <rsc_op id="123" operation="stop" operation_key="rsc10a_stop_0" on_node="rhel7-2" on_node_uuid="2">
|
|
+ <primitive id="rsc10a" class="ocf" provider="pacemaker" type="Dummy"/>
|
|
+ <attributes CRM_meta_name="stop" CRM_meta_on_node="rhel7-2" CRM_meta_on_node_uuid="2" CRM_meta_timeout="20000" />
|
|
+ </rsc_op>
|
|
+ </action_set>
|
|
+ <inputs/>
|
|
+ </synapse>
|
|
+ <synapse id="27">
|
|
+ <action_set>
|
|
+ <rsc_op id="130" operation="stop" operation_key="rsc12b_stop_0" on_node="rhel7-1" on_node_uuid="1">
|
|
+ <primitive id="rsc12b" class="ocf" provider="pacemaker" type="Dummy"/>
|
|
+ <attributes CRM_meta_name="stop" CRM_meta_on_node="rhel7-1" CRM_meta_on_node_uuid="1" CRM_meta_timeout="20000" />
|
|
+ </rsc_op>
|
|
+ </action_set>
|
|
+ <inputs/>
|
|
+ </synapse>
|
|
+ <synapse id="28" priority="1000000">
|
|
+ <action_set>
|
|
+ <pseudo_event id="174" operation="running" operation_key="bundle11-clone_running_0">
|
|
+ <attributes CRM_meta_clone_max="2" CRM_meta_clone_node_max="1" CRM_meta_globally_unique="false" CRM_meta_notify="false" CRM_meta_timeout="90000" />
|
|
+ </pseudo_event>
|
|
+ </action_set>
|
|
+ <inputs>
|
|
+ <trigger>
|
|
+ <pseudo_event id="173" operation="start" operation_key="bundle11-clone_start_0"/>
|
|
+ </trigger>
|
|
+ </inputs>
|
|
+ </synapse>
|
|
+ <synapse id="29">
|
|
+ <action_set>
|
|
+ <pseudo_event id="173" operation="start" operation_key="bundle11-clone_start_0">
|
|
+ <attributes CRM_meta_clone_max="2" CRM_meta_clone_node_max="1" CRM_meta_globally_unique="false" CRM_meta_notify="false" CRM_meta_timeout="90000" />
|
|
+ </pseudo_event>
|
|
+ </action_set>
|
|
+ <inputs>
|
|
+ <trigger>
|
|
+ <pseudo_event id="165" operation="start" operation_key="bundle11_start_0"/>
|
|
+ </trigger>
|
|
+ </inputs>
|
|
+ </synapse>
|
|
+ <synapse id="30">
|
|
+ <action_set>
|
|
+ <rsc_op id="177" operation="stop" operation_key="rsc13a_stop_0" on_node="rhel7-3" on_node_uuid="3">
|
|
+ <primitive id="rsc13a" class="ocf" provider="pacemaker" type="Dummy"/>
|
|
+ <attributes CRM_meta_name="stop" CRM_meta_on_node="rhel7-3" CRM_meta_on_node_uuid="3" CRM_meta_timeout="20000" />
|
|
+ </rsc_op>
|
|
+ </action_set>
|
|
+ <inputs/>
|
|
+ </synapse>
|
|
+ <synapse id="31">
|
|
+ <action_set>
|
|
+ <rsc_op id="201" operation="stop" operation_key="rsc14a_stop_0" internal_operation_key="rsc14a:1_stop_0" on_node="rhel7-4" on_node_uuid="4">
|
|
+ <primitive id="rsc14a" long-id="rsc14a:1" class="ocf" provider="pacemaker" type="Stateful"/>
|
|
+ <attributes CRM_meta_clone="1" CRM_meta_clone_max="9" CRM_meta_clone_node_max="1" CRM_meta_globally_unique="false" CRM_meta_master_max="1" CRM_meta_master_node_max="1" CRM_meta_name="stop" CRM_meta_notify="false" CRM_meta_on_node="rhel7-4" CRM_meta_on_node_uuid="4" CRM_meta_promoted_max="1" CRM_meta_promoted_node_max="1" CRM_meta_timeout="20000" />
|
|
+ </rsc_op>
|
|
+ </action_set>
|
|
+ <inputs>
|
|
+ <trigger>
|
|
+ <rsc_op id="200" operation="demote" operation_key="rsc14a_demote_0" internal_operation_key="rsc14a:1_demote_0" on_node="rhel7-4" on_node_uuid="4"/>
|
|
+ </trigger>
|
|
+ <trigger>
|
|
+ <pseudo_event id="208" operation="stop" operation_key="rsc14a-clone_stop_0"/>
|
|
+ </trigger>
|
|
+ </inputs>
|
|
+ </synapse>
|
|
+ <synapse id="32">
|
|
+ <action_set>
|
|
+ <rsc_op id="200" operation="demote" operation_key="rsc14a_demote_0" internal_operation_key="rsc14a:1_demote_0" on_node="rhel7-4" on_node_uuid="4">
|
|
+ <primitive id="rsc14a" long-id="rsc14a:1" class="ocf" provider="pacemaker" type="Stateful"/>
|
|
+ <attributes CRM_meta_clone="1" CRM_meta_clone_max="9" CRM_meta_clone_node_max="1" CRM_meta_globally_unique="false" CRM_meta_master_max="1" CRM_meta_master_node_max="1" CRM_meta_notify="false" CRM_meta_on_node="rhel7-4" CRM_meta_on_node_uuid="4" CRM_meta_promoted_max="1" CRM_meta_promoted_node_max="1" CRM_meta_timeout="90000" />
|
|
+ </rsc_op>
|
|
+ </action_set>
|
|
+ <inputs>
|
|
+ <trigger>
|
|
+ <pseudo_event id="212" operation="demote" operation_key="rsc14a-clone_demote_0"/>
|
|
+ </trigger>
|
|
+ </inputs>
|
|
+ </synapse>
|
|
+ <synapse id="33" priority="1000000">
|
|
+ <action_set>
|
|
+ <pseudo_event id="213" operation="demoted" operation_key="rsc14a-clone_demoted_0">
|
|
+ <attributes CRM_meta_clone_max="9" CRM_meta_clone_node_max="1" CRM_meta_globally_unique="false" CRM_meta_master_max="1" CRM_meta_master_node_max="1" CRM_meta_notify="false" CRM_meta_promoted_max="1" CRM_meta_promoted_node_max="1" CRM_meta_timeout="90000" />
|
|
+ </pseudo_event>
|
|
+ </action_set>
|
|
+ <inputs>
|
|
+ <trigger>
|
|
+ <rsc_op id="200" operation="demote" operation_key="rsc14a_demote_0" internal_operation_key="rsc14a:1_demote_0" on_node="rhel7-4" on_node_uuid="4"/>
|
|
+ </trigger>
|
|
+ <trigger>
|
|
+ <pseudo_event id="212" operation="demote" operation_key="rsc14a-clone_demote_0"/>
|
|
+ </trigger>
|
|
+ </inputs>
|
|
+ </synapse>
|
|
+ <synapse id="34">
|
|
+ <action_set>
|
|
+ <pseudo_event id="212" operation="demote" operation_key="rsc14a-clone_demote_0">
|
|
+ <attributes CRM_meta_clone_max="9" CRM_meta_clone_node_max="1" CRM_meta_globally_unique="false" CRM_meta_master_max="1" CRM_meta_master_node_max="1" CRM_meta_notify="false" CRM_meta_promoted_max="1" CRM_meta_promoted_node_max="1" CRM_meta_timeout="90000" />
|
|
+ </pseudo_event>
|
|
+ </action_set>
|
|
+ <inputs/>
|
|
+ </synapse>
|
|
+ <synapse id="35" priority="1000000">
|
|
+ <action_set>
|
|
+ <pseudo_event id="209" operation="stopped" operation_key="rsc14a-clone_stopped_0">
|
|
+ <attributes CRM_meta_clone_max="9" CRM_meta_clone_node_max="1" CRM_meta_globally_unique="false" CRM_meta_master_max="1" CRM_meta_master_node_max="1" CRM_meta_notify="false" CRM_meta_promoted_max="1" CRM_meta_promoted_node_max="1" CRM_meta_timeout="90000" />
|
|
+ </pseudo_event>
|
|
+ </action_set>
|
|
+ <inputs>
|
|
+ <trigger>
|
|
+ <rsc_op id="201" operation="stop" operation_key="rsc14a_stop_0" internal_operation_key="rsc14a:1_stop_0" on_node="rhel7-4" on_node_uuid="4"/>
|
|
+ </trigger>
|
|
+ <trigger>
|
|
+ <pseudo_event id="208" operation="stop" operation_key="rsc14a-clone_stop_0"/>
|
|
+ </trigger>
|
|
+ </inputs>
|
|
+ </synapse>
|
|
+ <synapse id="36">
|
|
+ <action_set>
|
|
+ <pseudo_event id="208" operation="stop" operation_key="rsc14a-clone_stop_0">
|
|
+ <attributes CRM_meta_clone_max="9" CRM_meta_clone_node_max="1" CRM_meta_globally_unique="false" CRM_meta_master_max="1" CRM_meta_master_node_max="1" CRM_meta_notify="false" CRM_meta_promoted_max="1" CRM_meta_promoted_node_max="1" CRM_meta_timeout="90000" />
|
|
+ </pseudo_event>
|
|
+ </action_set>
|
|
+ <inputs>
|
|
+ <trigger>
|
|
+ <pseudo_event id="213" operation="demoted" operation_key="rsc14a-clone_demoted_0"/>
|
|
+ </trigger>
|
|
+ </inputs>
|
|
+ </synapse>
|
|
+ <synapse id="37" priority="1000000">
|
|
+ <action_set>
|
|
+ <pseudo_event id="166" operation="running" operation_key="bundle11_running_0">
|
|
+ <attributes CRM_meta_timeout="90000" />
|
|
+ </pseudo_event>
|
|
+ </action_set>
|
|
+ <inputs>
|
|
+ <trigger>
|
|
+ <pseudo_event id="174" operation="running" operation_key="bundle11-clone_running_0"/>
|
|
+ </trigger>
|
|
+ </inputs>
|
|
+ </synapse>
|
|
+ <synapse id="38">
|
|
+ <action_set>
|
|
+ <pseudo_event id="165" operation="start" operation_key="bundle11_start_0">
|
|
+ <attributes CRM_meta_timeout="90000" />
|
|
+ </pseudo_event>
|
|
+ </action_set>
|
|
+ <inputs/>
|
|
+ </synapse>
|
|
+</transition_graph>
|
|
diff --git a/cts/scheduler/colocation-influence.scores b/cts/scheduler/colocation-influence.scores
|
|
new file mode 100644
|
|
index 0000000..1437263
|
|
--- /dev/null
|
|
+++ b/cts/scheduler/colocation-influence.scores
|
|
@@ -0,0 +1,673 @@
|
|
+Allocation scores:
|
|
+pcmk__bundle_allocate: bundle10 allocation score on rhel7-1: 0
|
|
+pcmk__bundle_allocate: bundle10 allocation score on rhel7-1: 0
|
|
+pcmk__bundle_allocate: bundle10 allocation score on rhel7-2: 0
|
|
+pcmk__bundle_allocate: bundle10 allocation score on rhel7-2: 0
|
|
+pcmk__bundle_allocate: bundle10 allocation score on rhel7-3: 0
|
|
+pcmk__bundle_allocate: bundle10 allocation score on rhel7-3: 0
|
|
+pcmk__bundle_allocate: bundle10 allocation score on rhel7-4: 0
|
|
+pcmk__bundle_allocate: bundle10 allocation score on rhel7-4: 0
|
|
+pcmk__bundle_allocate: bundle10 allocation score on rhel7-5: -INFINITY
|
|
+pcmk__bundle_allocate: bundle10 allocation score on rhel7-5: -INFINITY
|
|
+pcmk__bundle_allocate: bundle10-0 allocation score on rhel7-1: 0
|
|
+pcmk__bundle_allocate: bundle10-0 allocation score on rhel7-1: 0
|
|
+pcmk__bundle_allocate: bundle10-0 allocation score on rhel7-2: 10
|
|
+pcmk__bundle_allocate: bundle10-0 allocation score on rhel7-2: 10010
|
|
+pcmk__bundle_allocate: bundle10-0 allocation score on rhel7-3: 0
|
|
+pcmk__bundle_allocate: bundle10-0 allocation score on rhel7-3: 0
|
|
+pcmk__bundle_allocate: bundle10-0 allocation score on rhel7-4: 0
|
|
+pcmk__bundle_allocate: bundle10-0 allocation score on rhel7-4: 0
|
|
+pcmk__bundle_allocate: bundle10-0 allocation score on rhel7-5: 0
|
|
+pcmk__bundle_allocate: bundle10-0 allocation score on rhel7-5: 0
|
|
+pcmk__bundle_allocate: bundle10-1 allocation score on rhel7-1: 0
|
|
+pcmk__bundle_allocate: bundle10-1 allocation score on rhel7-1: 0
|
|
+pcmk__bundle_allocate: bundle10-1 allocation score on rhel7-2: 0
|
|
+pcmk__bundle_allocate: bundle10-1 allocation score on rhel7-2: 0
|
|
+pcmk__bundle_allocate: bundle10-1 allocation score on rhel7-3: 10
|
|
+pcmk__bundle_allocate: bundle10-1 allocation score on rhel7-3: 10010
|
|
+pcmk__bundle_allocate: bundle10-1 allocation score on rhel7-4: 0
|
|
+pcmk__bundle_allocate: bundle10-1 allocation score on rhel7-4: 0
|
|
+pcmk__bundle_allocate: bundle10-1 allocation score on rhel7-5: 0
|
|
+pcmk__bundle_allocate: bundle10-1 allocation score on rhel7-5: 0
|
|
+pcmk__bundle_allocate: bundle10-clone allocation score on bundle10-0: -INFINITY
|
|
+pcmk__bundle_allocate: bundle10-clone allocation score on bundle10-0: 0
|
|
+pcmk__bundle_allocate: bundle10-clone allocation score on bundle10-1: -INFINITY
|
|
+pcmk__bundle_allocate: bundle10-clone allocation score on bundle10-1: 0
|
|
+pcmk__bundle_allocate: bundle10-clone allocation score on rhel7-1: -INFINITY
|
|
+pcmk__bundle_allocate: bundle10-clone allocation score on rhel7-1: 0
|
|
+pcmk__bundle_allocate: bundle10-clone allocation score on rhel7-2: -INFINITY
|
|
+pcmk__bundle_allocate: bundle10-clone allocation score on rhel7-2: 0
|
|
+pcmk__bundle_allocate: bundle10-clone allocation score on rhel7-3: -INFINITY
|
|
+pcmk__bundle_allocate: bundle10-clone allocation score on rhel7-3: 0
|
|
+pcmk__bundle_allocate: bundle10-clone allocation score on rhel7-4: -INFINITY
|
|
+pcmk__bundle_allocate: bundle10-clone allocation score on rhel7-4: 0
|
|
+pcmk__bundle_allocate: bundle10-clone allocation score on rhel7-5: -INFINITY
|
|
+pcmk__bundle_allocate: bundle10-clone allocation score on rhel7-5: 0
|
|
+pcmk__bundle_allocate: bundle10-docker-0 allocation score on rhel7-1: 0
|
|
+pcmk__bundle_allocate: bundle10-docker-0 allocation score on rhel7-1: 0
|
|
+pcmk__bundle_allocate: bundle10-docker-0 allocation score on rhel7-2: 10
|
|
+pcmk__bundle_allocate: bundle10-docker-0 allocation score on rhel7-2: 21
|
|
+pcmk__bundle_allocate: bundle10-docker-0 allocation score on rhel7-3: 0
|
|
+pcmk__bundle_allocate: bundle10-docker-0 allocation score on rhel7-3: 0
|
|
+pcmk__bundle_allocate: bundle10-docker-0 allocation score on rhel7-4: 0
|
|
+pcmk__bundle_allocate: bundle10-docker-0 allocation score on rhel7-4: 0
|
|
+pcmk__bundle_allocate: bundle10-docker-0 allocation score on rhel7-5: -INFINITY
|
|
+pcmk__bundle_allocate: bundle10-docker-0 allocation score on rhel7-5: -INFINITY
|
|
+pcmk__bundle_allocate: bundle10-docker-1 allocation score on rhel7-1: 0
|
|
+pcmk__bundle_allocate: bundle10-docker-1 allocation score on rhel7-1: 0
|
|
+pcmk__bundle_allocate: bundle10-docker-1 allocation score on rhel7-2: -INFINITY
|
|
+pcmk__bundle_allocate: bundle10-docker-1 allocation score on rhel7-2: 0
|
|
+pcmk__bundle_allocate: bundle10-docker-1 allocation score on rhel7-3: 10
|
|
+pcmk__bundle_allocate: bundle10-docker-1 allocation score on rhel7-3: 21
|
|
+pcmk__bundle_allocate: bundle10-docker-1 allocation score on rhel7-4: 0
|
|
+pcmk__bundle_allocate: bundle10-docker-1 allocation score on rhel7-4: 0
|
|
+pcmk__bundle_allocate: bundle10-docker-1 allocation score on rhel7-5: -INFINITY
|
|
+pcmk__bundle_allocate: bundle10-docker-1 allocation score on rhel7-5: -INFINITY
|
|
+pcmk__bundle_allocate: bundle10-ip-192.168.122.131 allocation score on rhel7-1: -INFINITY
|
|
+pcmk__bundle_allocate: bundle10-ip-192.168.122.131 allocation score on rhel7-1: 0
|
|
+pcmk__bundle_allocate: bundle10-ip-192.168.122.131 allocation score on rhel7-2: 10
|
|
+pcmk__bundle_allocate: bundle10-ip-192.168.122.131 allocation score on rhel7-2: 10
|
|
+pcmk__bundle_allocate: bundle10-ip-192.168.122.131 allocation score on rhel7-3: -INFINITY
|
|
+pcmk__bundle_allocate: bundle10-ip-192.168.122.131 allocation score on rhel7-3: 0
|
|
+pcmk__bundle_allocate: bundle10-ip-192.168.122.131 allocation score on rhel7-4: -INFINITY
|
|
+pcmk__bundle_allocate: bundle10-ip-192.168.122.131 allocation score on rhel7-4: 0
|
|
+pcmk__bundle_allocate: bundle10-ip-192.168.122.131 allocation score on rhel7-5: -INFINITY
|
|
+pcmk__bundle_allocate: bundle10-ip-192.168.122.131 allocation score on rhel7-5: -INFINITY
|
|
+pcmk__bundle_allocate: bundle10-ip-192.168.122.132 allocation score on rhel7-1: -INFINITY
|
|
+pcmk__bundle_allocate: bundle10-ip-192.168.122.132 allocation score on rhel7-1: 0
|
|
+pcmk__bundle_allocate: bundle10-ip-192.168.122.132 allocation score on rhel7-2: -INFINITY
|
|
+pcmk__bundle_allocate: bundle10-ip-192.168.122.132 allocation score on rhel7-2: 0
|
|
+pcmk__bundle_allocate: bundle10-ip-192.168.122.132 allocation score on rhel7-3: 10
|
|
+pcmk__bundle_allocate: bundle10-ip-192.168.122.132 allocation score on rhel7-3: 10
|
|
+pcmk__bundle_allocate: bundle10-ip-192.168.122.132 allocation score on rhel7-4: -INFINITY
|
|
+pcmk__bundle_allocate: bundle10-ip-192.168.122.132 allocation score on rhel7-4: 0
|
|
+pcmk__bundle_allocate: bundle10-ip-192.168.122.132 allocation score on rhel7-5: -INFINITY
|
|
+pcmk__bundle_allocate: bundle10-ip-192.168.122.132 allocation score on rhel7-5: -INFINITY
|
|
+pcmk__bundle_allocate: bundle11 allocation score on rhel7-1: 0
|
|
+pcmk__bundle_allocate: bundle11 allocation score on rhel7-2: 0
|
|
+pcmk__bundle_allocate: bundle11 allocation score on rhel7-3: 0
|
|
+pcmk__bundle_allocate: bundle11 allocation score on rhel7-4: 0
|
|
+pcmk__bundle_allocate: bundle11 allocation score on rhel7-5: -INFINITY
|
|
+pcmk__bundle_allocate: bundle11-0 allocation score on rhel7-1: 10
|
|
+pcmk__bundle_allocate: bundle11-0 allocation score on rhel7-2: 0
|
|
+pcmk__bundle_allocate: bundle11-0 allocation score on rhel7-3: 0
|
|
+pcmk__bundle_allocate: bundle11-0 allocation score on rhel7-4: 0
|
|
+pcmk__bundle_allocate: bundle11-0 allocation score on rhel7-5: 0
|
|
+pcmk__bundle_allocate: bundle11-1 allocation score on rhel7-1: 0
|
|
+pcmk__bundle_allocate: bundle11-1 allocation score on rhel7-2: 0
|
|
+pcmk__bundle_allocate: bundle11-1 allocation score on rhel7-3: 0
|
|
+pcmk__bundle_allocate: bundle11-1 allocation score on rhel7-4: 0
|
|
+pcmk__bundle_allocate: bundle11-1 allocation score on rhel7-5: 0
|
|
+pcmk__bundle_allocate: bundle11-clone allocation score on bundle11-0: -INFINITY
|
|
+pcmk__bundle_allocate: bundle11-clone allocation score on bundle11-1: -INFINITY
|
|
+pcmk__bundle_allocate: bundle11-clone allocation score on rhel7-1: 0
|
|
+pcmk__bundle_allocate: bundle11-clone allocation score on rhel7-2: 0
|
|
+pcmk__bundle_allocate: bundle11-clone allocation score on rhel7-3: 0
|
|
+pcmk__bundle_allocate: bundle11-clone allocation score on rhel7-4: 0
|
|
+pcmk__bundle_allocate: bundle11-clone allocation score on rhel7-5: 0
|
|
+pcmk__bundle_allocate: bundle11-docker-0 allocation score on rhel7-1: 10
|
|
+pcmk__bundle_allocate: bundle11-docker-0 allocation score on rhel7-2: 0
|
|
+pcmk__bundle_allocate: bundle11-docker-0 allocation score on rhel7-3: 0
|
|
+pcmk__bundle_allocate: bundle11-docker-0 allocation score on rhel7-4: 0
|
|
+pcmk__bundle_allocate: bundle11-docker-0 allocation score on rhel7-5: -INFINITY
|
|
+pcmk__bundle_allocate: bundle11-docker-1 allocation score on rhel7-1: 0
|
|
+pcmk__bundle_allocate: bundle11-docker-1 allocation score on rhel7-2: 0
|
|
+pcmk__bundle_allocate: bundle11-docker-1 allocation score on rhel7-3: 0
|
|
+pcmk__bundle_allocate: bundle11-docker-1 allocation score on rhel7-4: 0
|
|
+pcmk__bundle_allocate: bundle11-docker-1 allocation score on rhel7-5: -INFINITY
|
|
+pcmk__bundle_allocate: bundle11-ip-192.168.122.134 allocation score on rhel7-1: 10
|
|
+pcmk__bundle_allocate: bundle11-ip-192.168.122.134 allocation score on rhel7-2: 0
|
|
+pcmk__bundle_allocate: bundle11-ip-192.168.122.134 allocation score on rhel7-3: 0
|
|
+pcmk__bundle_allocate: bundle11-ip-192.168.122.134 allocation score on rhel7-4: 0
|
|
+pcmk__bundle_allocate: bundle11-ip-192.168.122.134 allocation score on rhel7-5: -INFINITY
|
|
+pcmk__bundle_allocate: bundle11-ip-192.168.122.135 allocation score on rhel7-1: 0
|
|
+pcmk__bundle_allocate: bundle11-ip-192.168.122.135 allocation score on rhel7-2: 0
|
|
+pcmk__bundle_allocate: bundle11-ip-192.168.122.135 allocation score on rhel7-3: 0
|
|
+pcmk__bundle_allocate: bundle11-ip-192.168.122.135 allocation score on rhel7-4: 0
|
|
+pcmk__bundle_allocate: bundle11-ip-192.168.122.135 allocation score on rhel7-5: -INFINITY
|
|
+pcmk__bundle_allocate: bundle11a:0 allocation score on bundle11-0: 510
|
|
+pcmk__bundle_allocate: bundle11a:1 allocation score on bundle11-1: 500
|
|
+pcmk__bundle_allocate: httpd:0 allocation score on bundle10-0: 510
|
|
+pcmk__bundle_allocate: httpd:0 allocation score on bundle10-0: INFINITY
|
|
+pcmk__bundle_allocate: httpd:1 allocation score on bundle10-1: 510
|
|
+pcmk__bundle_allocate: httpd:1 allocation score on bundle10-1: INFINITY
|
|
+pcmk__clone_allocate: bundle10-clone allocation score on bundle10-0: 0
|
|
+pcmk__clone_allocate: bundle10-clone allocation score on bundle10-1: 0
|
|
+pcmk__clone_allocate: bundle10-clone allocation score on rhel7-1: -INFINITY
|
|
+pcmk__clone_allocate: bundle10-clone allocation score on rhel7-2: -INFINITY
|
|
+pcmk__clone_allocate: bundle10-clone allocation score on rhel7-3: -INFINITY
|
|
+pcmk__clone_allocate: bundle10-clone allocation score on rhel7-4: -INFINITY
|
|
+pcmk__clone_allocate: bundle10-clone allocation score on rhel7-5: -INFINITY
|
|
+pcmk__clone_allocate: bundle11-clone allocation score on bundle11-0: 0
|
|
+pcmk__clone_allocate: bundle11-clone allocation score on bundle11-1: 0
|
|
+pcmk__clone_allocate: bundle11-clone allocation score on rhel7-1: -INFINITY
|
|
+pcmk__clone_allocate: bundle11-clone allocation score on rhel7-2: -INFINITY
|
|
+pcmk__clone_allocate: bundle11-clone allocation score on rhel7-3: -INFINITY
|
|
+pcmk__clone_allocate: bundle11-clone allocation score on rhel7-4: -INFINITY
|
|
+pcmk__clone_allocate: bundle11-clone allocation score on rhel7-5: -INFINITY
|
|
+pcmk__clone_allocate: bundle11a:0 allocation score on bundle11-0: INFINITY
|
|
+pcmk__clone_allocate: bundle11a:1 allocation score on bundle11-1: INFINITY
|
|
+pcmk__clone_allocate: httpd:0 allocation score on bundle10-0: INFINITY
|
|
+pcmk__clone_allocate: httpd:1 allocation score on bundle10-1: INFINITY
|
|
+pcmk__clone_allocate: rsc13b-clone allocation score on rhel7-1: 0
|
|
+pcmk__clone_allocate: rsc13b-clone allocation score on rhel7-2: 0
|
|
+pcmk__clone_allocate: rsc13b-clone allocation score on rhel7-3: 0
|
|
+pcmk__clone_allocate: rsc13b-clone allocation score on rhel7-4: 0
|
|
+pcmk__clone_allocate: rsc13b-clone allocation score on rhel7-5: -INFINITY
|
|
+pcmk__clone_allocate: rsc13b:0 allocation score on rhel7-1: 0
|
|
+pcmk__clone_allocate: rsc13b:0 allocation score on rhel7-2: 0
|
|
+pcmk__clone_allocate: rsc13b:0 allocation score on rhel7-3: 20
|
|
+pcmk__clone_allocate: rsc13b:0 allocation score on rhel7-4: 0
|
|
+pcmk__clone_allocate: rsc13b:0 allocation score on rhel7-5: -INFINITY
|
|
+pcmk__clone_allocate: rsc13b:1 allocation score on rhel7-1: 0
|
|
+pcmk__clone_allocate: rsc13b:1 allocation score on rhel7-2: 0
|
|
+pcmk__clone_allocate: rsc13b:1 allocation score on rhel7-3: 0
|
|
+pcmk__clone_allocate: rsc13b:1 allocation score on rhel7-4: 15
|
|
+pcmk__clone_allocate: rsc13b:1 allocation score on rhel7-5: -INFINITY
|
|
+pcmk__clone_allocate: rsc13b:2 allocation score on rhel7-1: 15
|
|
+pcmk__clone_allocate: rsc13b:2 allocation score on rhel7-2: 0
|
|
+pcmk__clone_allocate: rsc13b:2 allocation score on rhel7-3: 0
|
|
+pcmk__clone_allocate: rsc13b:2 allocation score on rhel7-4: 0
|
|
+pcmk__clone_allocate: rsc13b:2 allocation score on rhel7-5: -INFINITY
|
|
+pcmk__clone_allocate: rsc13b:3 allocation score on rhel7-1: 0
|
|
+pcmk__clone_allocate: rsc13b:3 allocation score on rhel7-2: 15
|
|
+pcmk__clone_allocate: rsc13b:3 allocation score on rhel7-3: 0
|
|
+pcmk__clone_allocate: rsc13b:3 allocation score on rhel7-4: 0
|
|
+pcmk__clone_allocate: rsc13b:3 allocation score on rhel7-5: -INFINITY
|
|
+pcmk__clone_allocate: rsc13b:4 allocation score on rhel7-1: 5
|
|
+pcmk__clone_allocate: rsc13b:4 allocation score on rhel7-2: 5
|
|
+pcmk__clone_allocate: rsc13b:4 allocation score on rhel7-3: 10
|
|
+pcmk__clone_allocate: rsc13b:4 allocation score on rhel7-4: 5
|
|
+pcmk__clone_allocate: rsc13b:4 allocation score on rhel7-5: -INFINITY
|
|
+pcmk__clone_allocate: rsc13b:5 allocation score on rhel7-1: 5
|
|
+pcmk__clone_allocate: rsc13b:5 allocation score on rhel7-2: 5
|
|
+pcmk__clone_allocate: rsc13b:5 allocation score on rhel7-3: 10
|
|
+pcmk__clone_allocate: rsc13b:5 allocation score on rhel7-4: 5
|
|
+pcmk__clone_allocate: rsc13b:5 allocation score on rhel7-5: -INFINITY
|
|
+pcmk__clone_allocate: rsc13b:6 allocation score on rhel7-1: 5
|
|
+pcmk__clone_allocate: rsc13b:6 allocation score on rhel7-2: 5
|
|
+pcmk__clone_allocate: rsc13b:6 allocation score on rhel7-3: 10
|
|
+pcmk__clone_allocate: rsc13b:6 allocation score on rhel7-4: 5
|
|
+pcmk__clone_allocate: rsc13b:6 allocation score on rhel7-5: -INFINITY
|
|
+pcmk__clone_allocate: rsc13b:7 allocation score on rhel7-1: 5
|
|
+pcmk__clone_allocate: rsc13b:7 allocation score on rhel7-2: 5
|
|
+pcmk__clone_allocate: rsc13b:7 allocation score on rhel7-3: 10
|
|
+pcmk__clone_allocate: rsc13b:7 allocation score on rhel7-4: 5
|
|
+pcmk__clone_allocate: rsc13b:7 allocation score on rhel7-5: -INFINITY
|
|
+pcmk__clone_allocate: rsc13b:8 allocation score on rhel7-1: 5
|
|
+pcmk__clone_allocate: rsc13b:8 allocation score on rhel7-2: 5
|
|
+pcmk__clone_allocate: rsc13b:8 allocation score on rhel7-3: 10
|
|
+pcmk__clone_allocate: rsc13b:8 allocation score on rhel7-4: 5
|
|
+pcmk__clone_allocate: rsc13b:8 allocation score on rhel7-5: -INFINITY
|
|
+pcmk__clone_allocate: rsc14a-clone allocation score on rhel7-1: 0
|
|
+pcmk__clone_allocate: rsc14a-clone allocation score on rhel7-2: 0
|
|
+pcmk__clone_allocate: rsc14a-clone allocation score on rhel7-3: 0
|
|
+pcmk__clone_allocate: rsc14a-clone allocation score on rhel7-4: -INFINITY
|
|
+pcmk__clone_allocate: rsc14a-clone allocation score on rhel7-5: -INFINITY
|
|
+pcmk__clone_allocate: rsc14a:0 allocation score on rhel7-1: 0
|
|
+pcmk__clone_allocate: rsc14a:0 allocation score on rhel7-2: 0
|
|
+pcmk__clone_allocate: rsc14a:0 allocation score on rhel7-3: 15
|
|
+pcmk__clone_allocate: rsc14a:0 allocation score on rhel7-4: -INFINITY
|
|
+pcmk__clone_allocate: rsc14a:0 allocation score on rhel7-5: -INFINITY
|
|
+pcmk__clone_allocate: rsc14a:1 allocation score on rhel7-1: 0
|
|
+pcmk__clone_allocate: rsc14a:1 allocation score on rhel7-2: 0
|
|
+pcmk__clone_allocate: rsc14a:1 allocation score on rhel7-3: 0
|
|
+pcmk__clone_allocate: rsc14a:1 allocation score on rhel7-4: -INFINITY
|
|
+pcmk__clone_allocate: rsc14a:1 allocation score on rhel7-5: -INFINITY
|
|
+pcmk__clone_allocate: rsc14a:2 allocation score on rhel7-1: 15
|
|
+pcmk__clone_allocate: rsc14a:2 allocation score on rhel7-2: 0
|
|
+pcmk__clone_allocate: rsc14a:2 allocation score on rhel7-3: 0
|
|
+pcmk__clone_allocate: rsc14a:2 allocation score on rhel7-4: -INFINITY
|
|
+pcmk__clone_allocate: rsc14a:2 allocation score on rhel7-5: -INFINITY
|
|
+pcmk__clone_allocate: rsc14a:3 allocation score on rhel7-1: 0
|
|
+pcmk__clone_allocate: rsc14a:3 allocation score on rhel7-2: 15
|
|
+pcmk__clone_allocate: rsc14a:3 allocation score on rhel7-3: 0
|
|
+pcmk__clone_allocate: rsc14a:3 allocation score on rhel7-4: -INFINITY
|
|
+pcmk__clone_allocate: rsc14a:3 allocation score on rhel7-5: -INFINITY
|
|
+pcmk__clone_allocate: rsc14a:4 allocation score on rhel7-1: 5
|
|
+pcmk__clone_allocate: rsc14a:4 allocation score on rhel7-2: 5
|
|
+pcmk__clone_allocate: rsc14a:4 allocation score on rhel7-3: 5
|
|
+pcmk__clone_allocate: rsc14a:4 allocation score on rhel7-4: -INFINITY
|
|
+pcmk__clone_allocate: rsc14a:4 allocation score on rhel7-5: -INFINITY
|
|
+pcmk__clone_allocate: rsc14a:5 allocation score on rhel7-1: 5
|
|
+pcmk__clone_allocate: rsc14a:5 allocation score on rhel7-2: 5
|
|
+pcmk__clone_allocate: rsc14a:5 allocation score on rhel7-3: 5
|
|
+pcmk__clone_allocate: rsc14a:5 allocation score on rhel7-4: -INFINITY
|
|
+pcmk__clone_allocate: rsc14a:5 allocation score on rhel7-5: -INFINITY
|
|
+pcmk__clone_allocate: rsc14a:6 allocation score on rhel7-1: 5
|
|
+pcmk__clone_allocate: rsc14a:6 allocation score on rhel7-2: 5
|
|
+pcmk__clone_allocate: rsc14a:6 allocation score on rhel7-3: 5
|
|
+pcmk__clone_allocate: rsc14a:6 allocation score on rhel7-4: -INFINITY
|
|
+pcmk__clone_allocate: rsc14a:6 allocation score on rhel7-5: -INFINITY
|
|
+pcmk__clone_allocate: rsc14a:7 allocation score on rhel7-1: 5
|
|
+pcmk__clone_allocate: rsc14a:7 allocation score on rhel7-2: 5
|
|
+pcmk__clone_allocate: rsc14a:7 allocation score on rhel7-3: 5
|
|
+pcmk__clone_allocate: rsc14a:7 allocation score on rhel7-4: -INFINITY
|
|
+pcmk__clone_allocate: rsc14a:7 allocation score on rhel7-5: -INFINITY
|
|
+pcmk__clone_allocate: rsc14a:8 allocation score on rhel7-1: 5
|
|
+pcmk__clone_allocate: rsc14a:8 allocation score on rhel7-2: 5
|
|
+pcmk__clone_allocate: rsc14a:8 allocation score on rhel7-3: 5
|
|
+pcmk__clone_allocate: rsc14a:8 allocation score on rhel7-4: -INFINITY
|
|
+pcmk__clone_allocate: rsc14a:8 allocation score on rhel7-5: -INFINITY
|
|
+pcmk__clone_allocate: rsc8a-clone allocation score on rhel7-1: 0
|
|
+pcmk__clone_allocate: rsc8a-clone allocation score on rhel7-2: 0
|
|
+pcmk__clone_allocate: rsc8a-clone allocation score on rhel7-3: 0
|
|
+pcmk__clone_allocate: rsc8a-clone allocation score on rhel7-4: -INFINITY
|
|
+pcmk__clone_allocate: rsc8a-clone allocation score on rhel7-5: -INFINITY
|
|
+pcmk__clone_allocate: rsc8a:0 allocation score on rhel7-1: 0
|
|
+pcmk__clone_allocate: rsc8a:0 allocation score on rhel7-2: 0
|
|
+pcmk__clone_allocate: rsc8a:0 allocation score on rhel7-3: 10
|
|
+pcmk__clone_allocate: rsc8a:0 allocation score on rhel7-4: -INFINITY
|
|
+pcmk__clone_allocate: rsc8a:0 allocation score on rhel7-5: -INFINITY
|
|
+pcmk__clone_allocate: rsc8a:1 allocation score on rhel7-1: 0
|
|
+pcmk__clone_allocate: rsc8a:1 allocation score on rhel7-2: 0
|
|
+pcmk__clone_allocate: rsc8a:1 allocation score on rhel7-3: 0
|
|
+pcmk__clone_allocate: rsc8a:1 allocation score on rhel7-4: -INFINITY
|
|
+pcmk__clone_allocate: rsc8a:1 allocation score on rhel7-5: -INFINITY
|
|
+pcmk__clone_allocate: rsc8a:2 allocation score on rhel7-1: 10
|
|
+pcmk__clone_allocate: rsc8a:2 allocation score on rhel7-2: 0
|
|
+pcmk__clone_allocate: rsc8a:2 allocation score on rhel7-3: 0
|
|
+pcmk__clone_allocate: rsc8a:2 allocation score on rhel7-4: -INFINITY
|
|
+pcmk__clone_allocate: rsc8a:2 allocation score on rhel7-5: -INFINITY
|
|
+pcmk__clone_allocate: rsc8b-clone allocation score on rhel7-1: 0
|
|
+pcmk__clone_allocate: rsc8b-clone allocation score on rhel7-2: 0
|
|
+pcmk__clone_allocate: rsc8b-clone allocation score on rhel7-3: 0
|
|
+pcmk__clone_allocate: rsc8b-clone allocation score on rhel7-4: 0
|
|
+pcmk__clone_allocate: rsc8b-clone allocation score on rhel7-5: -INFINITY
|
|
+pcmk__clone_allocate: rsc8b:0 allocation score on rhel7-1: 0
|
|
+pcmk__clone_allocate: rsc8b:0 allocation score on rhel7-2: 0
|
|
+pcmk__clone_allocate: rsc8b:0 allocation score on rhel7-3: 10
|
|
+pcmk__clone_allocate: rsc8b:0 allocation score on rhel7-4: 0
|
|
+pcmk__clone_allocate: rsc8b:0 allocation score on rhel7-5: -INFINITY
|
|
+pcmk__clone_allocate: rsc8b:1 allocation score on rhel7-1: 0
|
|
+pcmk__clone_allocate: rsc8b:1 allocation score on rhel7-2: 0
|
|
+pcmk__clone_allocate: rsc8b:1 allocation score on rhel7-3: 0
|
|
+pcmk__clone_allocate: rsc8b:1 allocation score on rhel7-4: 10
|
|
+pcmk__clone_allocate: rsc8b:1 allocation score on rhel7-5: -INFINITY
|
|
+pcmk__clone_allocate: rsc8b:2 allocation score on rhel7-1: 10
|
|
+pcmk__clone_allocate: rsc8b:2 allocation score on rhel7-2: 0
|
|
+pcmk__clone_allocate: rsc8b:2 allocation score on rhel7-3: 0
|
|
+pcmk__clone_allocate: rsc8b:2 allocation score on rhel7-4: 0
|
|
+pcmk__clone_allocate: rsc8b:2 allocation score on rhel7-5: -INFINITY
|
|
+pcmk__group_allocate: group5a allocation score on rhel7-1: 0
|
|
+pcmk__group_allocate: group5a allocation score on rhel7-2: 0
|
|
+pcmk__group_allocate: group5a allocation score on rhel7-3: 0
|
|
+pcmk__group_allocate: group5a allocation score on rhel7-4: 0
|
|
+pcmk__group_allocate: group5a allocation score on rhel7-5: -INFINITY
|
|
+pcmk__group_allocate: group6a allocation score on rhel7-1: 0
|
|
+pcmk__group_allocate: group6a allocation score on rhel7-2: 0
|
|
+pcmk__group_allocate: group6a allocation score on rhel7-3: 0
|
|
+pcmk__group_allocate: group6a allocation score on rhel7-4: 0
|
|
+pcmk__group_allocate: group6a allocation score on rhel7-5: -INFINITY
|
|
+pcmk__group_allocate: group7a allocation score on rhel7-1: 0
|
|
+pcmk__group_allocate: group7a allocation score on rhel7-2: 0
|
|
+pcmk__group_allocate: group7a allocation score on rhel7-3: 0
|
|
+pcmk__group_allocate: group7a allocation score on rhel7-4: 0
|
|
+pcmk__group_allocate: group7a allocation score on rhel7-5: -INFINITY
|
|
+pcmk__group_allocate: rsc5a1 allocation score on rhel7-1: 10
|
|
+pcmk__group_allocate: rsc5a1 allocation score on rhel7-2: 0
|
|
+pcmk__group_allocate: rsc5a1 allocation score on rhel7-3: 0
|
|
+pcmk__group_allocate: rsc5a1 allocation score on rhel7-4: 0
|
|
+pcmk__group_allocate: rsc5a1 allocation score on rhel7-5: -INFINITY
|
|
+pcmk__group_allocate: rsc5a2 allocation score on rhel7-1: 10
|
|
+pcmk__group_allocate: rsc5a2 allocation score on rhel7-2: 0
|
|
+pcmk__group_allocate: rsc5a2 allocation score on rhel7-3: 0
|
|
+pcmk__group_allocate: rsc5a2 allocation score on rhel7-4: 0
|
|
+pcmk__group_allocate: rsc5a2 allocation score on rhel7-5: 0
|
|
+pcmk__group_allocate: rsc6a1 allocation score on rhel7-1: 0
|
|
+pcmk__group_allocate: rsc6a1 allocation score on rhel7-2: -INFINITY
|
|
+pcmk__group_allocate: rsc6a1 allocation score on rhel7-3: 0
|
|
+pcmk__group_allocate: rsc6a1 allocation score on rhel7-4: 0
|
|
+pcmk__group_allocate: rsc6a1 allocation score on rhel7-5: -INFINITY
|
|
+pcmk__group_allocate: rsc6a2 allocation score on rhel7-1: 0
|
|
+pcmk__group_allocate: rsc6a2 allocation score on rhel7-2: 10
|
|
+pcmk__group_allocate: rsc6a2 allocation score on rhel7-3: 0
|
|
+pcmk__group_allocate: rsc6a2 allocation score on rhel7-4: 0
|
|
+pcmk__group_allocate: rsc6a2 allocation score on rhel7-5: 0
|
|
+pcmk__group_allocate: rsc7a1 allocation score on rhel7-1: 0
|
|
+pcmk__group_allocate: rsc7a1 allocation score on rhel7-2: 0
|
|
+pcmk__group_allocate: rsc7a1 allocation score on rhel7-3: 10
|
|
+pcmk__group_allocate: rsc7a1 allocation score on rhel7-4: 0
|
|
+pcmk__group_allocate: rsc7a1 allocation score on rhel7-5: -INFINITY
|
|
+pcmk__group_allocate: rsc7a2 allocation score on rhel7-1: 0
|
|
+pcmk__group_allocate: rsc7a2 allocation score on rhel7-2: 0
|
|
+pcmk__group_allocate: rsc7a2 allocation score on rhel7-3: -INFINITY
|
|
+pcmk__group_allocate: rsc7a2 allocation score on rhel7-4: 0
|
|
+pcmk__group_allocate: rsc7a2 allocation score on rhel7-5: 0
|
|
+pcmk__native_allocate: Fencing allocation score on rhel7-1: 10
|
|
+pcmk__native_allocate: Fencing allocation score on rhel7-2: 0
|
|
+pcmk__native_allocate: Fencing allocation score on rhel7-3: 0
|
|
+pcmk__native_allocate: Fencing allocation score on rhel7-4: 0
|
|
+pcmk__native_allocate: Fencing allocation score on rhel7-5: -INFINITY
|
|
+pcmk__native_allocate: bundle10-0 allocation score on rhel7-1: 0
|
|
+pcmk__native_allocate: bundle10-0 allocation score on rhel7-2: 10010
|
|
+pcmk__native_allocate: bundle10-0 allocation score on rhel7-3: 0
|
|
+pcmk__native_allocate: bundle10-0 allocation score on rhel7-4: 0
|
|
+pcmk__native_allocate: bundle10-0 allocation score on rhel7-5: 0
|
|
+pcmk__native_allocate: bundle10-1 allocation score on rhel7-1: 0
|
|
+pcmk__native_allocate: bundle10-1 allocation score on rhel7-2: 0
|
|
+pcmk__native_allocate: bundle10-1 allocation score on rhel7-3: 10010
|
|
+pcmk__native_allocate: bundle10-1 allocation score on rhel7-4: 0
|
|
+pcmk__native_allocate: bundle10-1 allocation score on rhel7-5: 0
|
|
+pcmk__native_allocate: bundle10-docker-0 allocation score on rhel7-1: 0
|
|
+pcmk__native_allocate: bundle10-docker-0 allocation score on rhel7-2: 21
|
|
+pcmk__native_allocate: bundle10-docker-0 allocation score on rhel7-3: 0
|
|
+pcmk__native_allocate: bundle10-docker-0 allocation score on rhel7-4: 0
|
|
+pcmk__native_allocate: bundle10-docker-0 allocation score on rhel7-5: -INFINITY
|
|
+pcmk__native_allocate: bundle10-docker-1 allocation score on rhel7-1: 0
|
|
+pcmk__native_allocate: bundle10-docker-1 allocation score on rhel7-2: -INFINITY
|
|
+pcmk__native_allocate: bundle10-docker-1 allocation score on rhel7-3: 21
|
|
+pcmk__native_allocate: bundle10-docker-1 allocation score on rhel7-4: 0
|
|
+pcmk__native_allocate: bundle10-docker-1 allocation score on rhel7-5: -INFINITY
|
|
+pcmk__native_allocate: bundle10-ip-192.168.122.131 allocation score on rhel7-1: -INFINITY
|
|
+pcmk__native_allocate: bundle10-ip-192.168.122.131 allocation score on rhel7-2: 10
|
|
+pcmk__native_allocate: bundle10-ip-192.168.122.131 allocation score on rhel7-3: -INFINITY
|
|
+pcmk__native_allocate: bundle10-ip-192.168.122.131 allocation score on rhel7-4: -INFINITY
|
|
+pcmk__native_allocate: bundle10-ip-192.168.122.131 allocation score on rhel7-5: -INFINITY
|
|
+pcmk__native_allocate: bundle10-ip-192.168.122.132 allocation score on rhel7-1: -INFINITY
|
|
+pcmk__native_allocate: bundle10-ip-192.168.122.132 allocation score on rhel7-2: -INFINITY
|
|
+pcmk__native_allocate: bundle10-ip-192.168.122.132 allocation score on rhel7-3: 10
|
|
+pcmk__native_allocate: bundle10-ip-192.168.122.132 allocation score on rhel7-4: -INFINITY
|
|
+pcmk__native_allocate: bundle10-ip-192.168.122.132 allocation score on rhel7-5: -INFINITY
|
|
+pcmk__native_allocate: bundle11-0 allocation score on rhel7-1: 10010
|
|
+pcmk__native_allocate: bundle11-0 allocation score on rhel7-2: 0
|
|
+pcmk__native_allocate: bundle11-0 allocation score on rhel7-3: 0
|
|
+pcmk__native_allocate: bundle11-0 allocation score on rhel7-4: 0
|
|
+pcmk__native_allocate: bundle11-0 allocation score on rhel7-5: 0
|
|
+pcmk__native_allocate: bundle11-1 allocation score on rhel7-1: 0
|
|
+pcmk__native_allocate: bundle11-1 allocation score on rhel7-2: 0
|
|
+pcmk__native_allocate: bundle11-1 allocation score on rhel7-3: 0
|
|
+pcmk__native_allocate: bundle11-1 allocation score on rhel7-4: 0
|
|
+pcmk__native_allocate: bundle11-1 allocation score on rhel7-5: 0
|
|
+pcmk__native_allocate: bundle11-docker-0 allocation score on rhel7-1: 21
|
|
+pcmk__native_allocate: bundle11-docker-0 allocation score on rhel7-2: -INFINITY
|
|
+pcmk__native_allocate: bundle11-docker-0 allocation score on rhel7-3: -INFINITY
|
|
+pcmk__native_allocate: bundle11-docker-0 allocation score on rhel7-4: -INFINITY
|
|
+pcmk__native_allocate: bundle11-docker-0 allocation score on rhel7-5: -INFINITY
|
|
+pcmk__native_allocate: bundle11-docker-1 allocation score on rhel7-1: -INFINITY
|
|
+pcmk__native_allocate: bundle11-docker-1 allocation score on rhel7-2: -INFINITY
|
|
+pcmk__native_allocate: bundle11-docker-1 allocation score on rhel7-3: -INFINITY
|
|
+pcmk__native_allocate: bundle11-docker-1 allocation score on rhel7-4: -INFINITY
|
|
+pcmk__native_allocate: bundle11-docker-1 allocation score on rhel7-5: -INFINITY
|
|
+pcmk__native_allocate: bundle11-ip-192.168.122.134 allocation score on rhel7-1: 10
|
|
+pcmk__native_allocate: bundle11-ip-192.168.122.134 allocation score on rhel7-2: -INFINITY
|
|
+pcmk__native_allocate: bundle11-ip-192.168.122.134 allocation score on rhel7-3: -INFINITY
|
|
+pcmk__native_allocate: bundle11-ip-192.168.122.134 allocation score on rhel7-4: -INFINITY
|
|
+pcmk__native_allocate: bundle11-ip-192.168.122.134 allocation score on rhel7-5: -INFINITY
|
|
+pcmk__native_allocate: bundle11-ip-192.168.122.135 allocation score on rhel7-1: -INFINITY
|
|
+pcmk__native_allocate: bundle11-ip-192.168.122.135 allocation score on rhel7-2: -INFINITY
|
|
+pcmk__native_allocate: bundle11-ip-192.168.122.135 allocation score on rhel7-3: -INFINITY
|
|
+pcmk__native_allocate: bundle11-ip-192.168.122.135 allocation score on rhel7-4: -INFINITY
|
|
+pcmk__native_allocate: bundle11-ip-192.168.122.135 allocation score on rhel7-5: -INFINITY
|
|
+pcmk__native_allocate: bundle11a:0 allocation score on bundle11-0: INFINITY
|
|
+pcmk__native_allocate: bundle11a:1 allocation score on bundle11-1: INFINITY
|
|
+pcmk__native_allocate: httpd:0 allocation score on bundle10-0: INFINITY
|
|
+pcmk__native_allocate: httpd:1 allocation score on bundle10-1: INFINITY
|
|
+pcmk__native_allocate: rsc10a allocation score on rhel7-1: -INFINITY
|
|
+pcmk__native_allocate: rsc10a allocation score on rhel7-2: -INFINITY
|
|
+pcmk__native_allocate: rsc10a allocation score on rhel7-3: 0
|
|
+pcmk__native_allocate: rsc10a allocation score on rhel7-4: -INFINITY
|
|
+pcmk__native_allocate: rsc10a allocation score on rhel7-5: -INFINITY
|
|
+pcmk__native_allocate: rsc11a allocation score on rhel7-1: 10
|
|
+pcmk__native_allocate: rsc11a allocation score on rhel7-2: 0
|
|
+pcmk__native_allocate: rsc11a allocation score on rhel7-3: 0
|
|
+pcmk__native_allocate: rsc11a allocation score on rhel7-4: 0
|
|
+pcmk__native_allocate: rsc11a allocation score on rhel7-5: -INFINITY
|
|
+pcmk__native_allocate: rsc12a allocation score on rhel7-1: 10
|
|
+pcmk__native_allocate: rsc12a allocation score on rhel7-2: -INFINITY
|
|
+pcmk__native_allocate: rsc12a allocation score on rhel7-3: -INFINITY
|
|
+pcmk__native_allocate: rsc12a allocation score on rhel7-4: -INFINITY
|
|
+pcmk__native_allocate: rsc12a allocation score on rhel7-5: -INFINITY
|
|
+pcmk__native_allocate: rsc12b allocation score on rhel7-1: -INFINITY
|
|
+pcmk__native_allocate: rsc12b allocation score on rhel7-2: -INFINITY
|
|
+pcmk__native_allocate: rsc12b allocation score on rhel7-3: -INFINITY
|
|
+pcmk__native_allocate: rsc12b allocation score on rhel7-4: -INFINITY
|
|
+pcmk__native_allocate: rsc12b allocation score on rhel7-5: -INFINITY
|
|
+pcmk__native_allocate: rsc12c allocation score on rhel7-1: 10
|
|
+pcmk__native_allocate: rsc12c allocation score on rhel7-2: 0
|
|
+pcmk__native_allocate: rsc12c allocation score on rhel7-3: 0
|
|
+pcmk__native_allocate: rsc12c allocation score on rhel7-4: 0
|
|
+pcmk__native_allocate: rsc12c allocation score on rhel7-5: -INFINITY
|
|
+pcmk__native_allocate: rsc13a allocation score on rhel7-1: -INFINITY
|
|
+pcmk__native_allocate: rsc13a allocation score on rhel7-2: -INFINITY
|
|
+pcmk__native_allocate: rsc13a allocation score on rhel7-3: -INFINITY
|
|
+pcmk__native_allocate: rsc13a allocation score on rhel7-4: -INFINITY
|
|
+pcmk__native_allocate: rsc13a allocation score on rhel7-5: -INFINITY
|
|
+pcmk__native_allocate: rsc13b:0 allocation score on rhel7-1: 0
|
|
+pcmk__native_allocate: rsc13b:0 allocation score on rhel7-2: 0
|
|
+pcmk__native_allocate: rsc13b:0 allocation score on rhel7-3: 20
|
|
+pcmk__native_allocate: rsc13b:0 allocation score on rhel7-4: 0
|
|
+pcmk__native_allocate: rsc13b:0 allocation score on rhel7-5: -INFINITY
|
|
+pcmk__native_allocate: rsc13b:1 allocation score on rhel7-1: 0
|
|
+pcmk__native_allocate: rsc13b:1 allocation score on rhel7-2: 0
|
|
+pcmk__native_allocate: rsc13b:1 allocation score on rhel7-3: -INFINITY
|
|
+pcmk__native_allocate: rsc13b:1 allocation score on rhel7-4: 15
|
|
+pcmk__native_allocate: rsc13b:1 allocation score on rhel7-5: -INFINITY
|
|
+pcmk__native_allocate: rsc13b:2 allocation score on rhel7-1: 15
|
|
+pcmk__native_allocate: rsc13b:2 allocation score on rhel7-2: 0
|
|
+pcmk__native_allocate: rsc13b:2 allocation score on rhel7-3: -INFINITY
|
|
+pcmk__native_allocate: rsc13b:2 allocation score on rhel7-4: -INFINITY
|
|
+pcmk__native_allocate: rsc13b:2 allocation score on rhel7-5: -INFINITY
|
|
+pcmk__native_allocate: rsc13b:3 allocation score on rhel7-1: -INFINITY
|
|
+pcmk__native_allocate: rsc13b:3 allocation score on rhel7-2: 15
|
|
+pcmk__native_allocate: rsc13b:3 allocation score on rhel7-3: -INFINITY
|
|
+pcmk__native_allocate: rsc13b:3 allocation score on rhel7-4: -INFINITY
|
|
+pcmk__native_allocate: rsc13b:3 allocation score on rhel7-5: -INFINITY
|
|
+pcmk__native_allocate: rsc13b:4 allocation score on rhel7-1: -INFINITY
|
|
+pcmk__native_allocate: rsc13b:4 allocation score on rhel7-2: -INFINITY
|
|
+pcmk__native_allocate: rsc13b:4 allocation score on rhel7-3: -INFINITY
|
|
+pcmk__native_allocate: rsc13b:4 allocation score on rhel7-4: -INFINITY
|
|
+pcmk__native_allocate: rsc13b:4 allocation score on rhel7-5: -INFINITY
|
|
+pcmk__native_allocate: rsc13b:5 allocation score on rhel7-1: -INFINITY
|
|
+pcmk__native_allocate: rsc13b:5 allocation score on rhel7-2: -INFINITY
|
|
+pcmk__native_allocate: rsc13b:5 allocation score on rhel7-3: -INFINITY
|
|
+pcmk__native_allocate: rsc13b:5 allocation score on rhel7-4: -INFINITY
|
|
+pcmk__native_allocate: rsc13b:5 allocation score on rhel7-5: -INFINITY
|
|
+pcmk__native_allocate: rsc13b:6 allocation score on rhel7-1: -INFINITY
|
|
+pcmk__native_allocate: rsc13b:6 allocation score on rhel7-2: -INFINITY
|
|
+pcmk__native_allocate: rsc13b:6 allocation score on rhel7-3: -INFINITY
|
|
+pcmk__native_allocate: rsc13b:6 allocation score on rhel7-4: -INFINITY
|
|
+pcmk__native_allocate: rsc13b:6 allocation score on rhel7-5: -INFINITY
|
|
+pcmk__native_allocate: rsc13b:7 allocation score on rhel7-1: -INFINITY
|
|
+pcmk__native_allocate: rsc13b:7 allocation score on rhel7-2: -INFINITY
|
|
+pcmk__native_allocate: rsc13b:7 allocation score on rhel7-3: -INFINITY
|
|
+pcmk__native_allocate: rsc13b:7 allocation score on rhel7-4: -INFINITY
|
|
+pcmk__native_allocate: rsc13b:7 allocation score on rhel7-5: -INFINITY
|
|
+pcmk__native_allocate: rsc13b:8 allocation score on rhel7-1: -INFINITY
|
|
+pcmk__native_allocate: rsc13b:8 allocation score on rhel7-2: -INFINITY
|
|
+pcmk__native_allocate: rsc13b:8 allocation score on rhel7-3: -INFINITY
|
|
+pcmk__native_allocate: rsc13b:8 allocation score on rhel7-4: -INFINITY
|
|
+pcmk__native_allocate: rsc13b:8 allocation score on rhel7-5: -INFINITY
|
|
+pcmk__native_allocate: rsc14a:0 allocation score on rhel7-1: 0
|
|
+pcmk__native_allocate: rsc14a:0 allocation score on rhel7-2: 0
|
|
+pcmk__native_allocate: rsc14a:0 allocation score on rhel7-3: 15
|
|
+pcmk__native_allocate: rsc14a:0 allocation score on rhel7-4: -INFINITY
|
|
+pcmk__native_allocate: rsc14a:0 allocation score on rhel7-5: -INFINITY
|
|
+pcmk__native_allocate: rsc14a:1 allocation score on rhel7-1: -INFINITY
|
|
+pcmk__native_allocate: rsc14a:1 allocation score on rhel7-2: -INFINITY
|
|
+pcmk__native_allocate: rsc14a:1 allocation score on rhel7-3: -INFINITY
|
|
+pcmk__native_allocate: rsc14a:1 allocation score on rhel7-4: -INFINITY
|
|
+pcmk__native_allocate: rsc14a:1 allocation score on rhel7-5: -INFINITY
|
|
+pcmk__native_allocate: rsc14a:2 allocation score on rhel7-1: 15
|
|
+pcmk__native_allocate: rsc14a:2 allocation score on rhel7-2: 0
|
|
+pcmk__native_allocate: rsc14a:2 allocation score on rhel7-3: -INFINITY
|
|
+pcmk__native_allocate: rsc14a:2 allocation score on rhel7-4: -INFINITY
|
|
+pcmk__native_allocate: rsc14a:2 allocation score on rhel7-5: -INFINITY
|
|
+pcmk__native_allocate: rsc14a:3 allocation score on rhel7-1: -INFINITY
|
|
+pcmk__native_allocate: rsc14a:3 allocation score on rhel7-2: 15
|
|
+pcmk__native_allocate: rsc14a:3 allocation score on rhel7-3: -INFINITY
|
|
+pcmk__native_allocate: rsc14a:3 allocation score on rhel7-4: -INFINITY
|
|
+pcmk__native_allocate: rsc14a:3 allocation score on rhel7-5: -INFINITY
|
|
+pcmk__native_allocate: rsc14a:4 allocation score on rhel7-1: -INFINITY
|
|
+pcmk__native_allocate: rsc14a:4 allocation score on rhel7-2: -INFINITY
|
|
+pcmk__native_allocate: rsc14a:4 allocation score on rhel7-3: -INFINITY
|
|
+pcmk__native_allocate: rsc14a:4 allocation score on rhel7-4: -INFINITY
|
|
+pcmk__native_allocate: rsc14a:4 allocation score on rhel7-5: -INFINITY
|
|
+pcmk__native_allocate: rsc14a:5 allocation score on rhel7-1: -INFINITY
|
|
+pcmk__native_allocate: rsc14a:5 allocation score on rhel7-2: -INFINITY
|
|
+pcmk__native_allocate: rsc14a:5 allocation score on rhel7-3: -INFINITY
|
|
+pcmk__native_allocate: rsc14a:5 allocation score on rhel7-4: -INFINITY
|
|
+pcmk__native_allocate: rsc14a:5 allocation score on rhel7-5: -INFINITY
|
|
+pcmk__native_allocate: rsc14a:6 allocation score on rhel7-1: -INFINITY
|
|
+pcmk__native_allocate: rsc14a:6 allocation score on rhel7-2: -INFINITY
|
|
+pcmk__native_allocate: rsc14a:6 allocation score on rhel7-3: -INFINITY
|
|
+pcmk__native_allocate: rsc14a:6 allocation score on rhel7-4: -INFINITY
|
|
+pcmk__native_allocate: rsc14a:6 allocation score on rhel7-5: -INFINITY
|
|
+pcmk__native_allocate: rsc14a:7 allocation score on rhel7-1: -INFINITY
|
|
+pcmk__native_allocate: rsc14a:7 allocation score on rhel7-2: -INFINITY
|
|
+pcmk__native_allocate: rsc14a:7 allocation score on rhel7-3: -INFINITY
|
|
+pcmk__native_allocate: rsc14a:7 allocation score on rhel7-4: -INFINITY
|
|
+pcmk__native_allocate: rsc14a:7 allocation score on rhel7-5: -INFINITY
|
|
+pcmk__native_allocate: rsc14a:8 allocation score on rhel7-1: -INFINITY
|
|
+pcmk__native_allocate: rsc14a:8 allocation score on rhel7-2: -INFINITY
|
|
+pcmk__native_allocate: rsc14a:8 allocation score on rhel7-3: -INFINITY
|
|
+pcmk__native_allocate: rsc14a:8 allocation score on rhel7-4: -INFINITY
|
|
+pcmk__native_allocate: rsc14a:8 allocation score on rhel7-5: -INFINITY
|
|
+pcmk__native_allocate: rsc14b allocation score on rhel7-1: 0
|
|
+pcmk__native_allocate: rsc14b allocation score on rhel7-2: 0
|
|
+pcmk__native_allocate: rsc14b allocation score on rhel7-3: 0
|
|
+pcmk__native_allocate: rsc14b allocation score on rhel7-4: 10
|
|
+pcmk__native_allocate: rsc14b allocation score on rhel7-5: -INFINITY
|
|
+pcmk__native_allocate: rsc1a allocation score on rhel7-1: -INFINITY
|
|
+pcmk__native_allocate: rsc1a allocation score on rhel7-2: -INFINITY
|
|
+pcmk__native_allocate: rsc1a allocation score on rhel7-3: 0
|
|
+pcmk__native_allocate: rsc1a allocation score on rhel7-4: -INFINITY
|
|
+pcmk__native_allocate: rsc1a allocation score on rhel7-5: -INFINITY
|
|
+pcmk__native_allocate: rsc1b allocation score on rhel7-1: 0
|
|
+pcmk__native_allocate: rsc1b allocation score on rhel7-2: -INFINITY
|
|
+pcmk__native_allocate: rsc1b allocation score on rhel7-3: 0
|
|
+pcmk__native_allocate: rsc1b allocation score on rhel7-4: 0
|
|
+pcmk__native_allocate: rsc1b allocation score on rhel7-5: -INFINITY
|
|
+pcmk__native_allocate: rsc2a allocation score on rhel7-1: -INFINITY
|
|
+pcmk__native_allocate: rsc2a allocation score on rhel7-2: -INFINITY
|
|
+pcmk__native_allocate: rsc2a allocation score on rhel7-3: -INFINITY
|
|
+pcmk__native_allocate: rsc2a allocation score on rhel7-4: -INFINITY
|
|
+pcmk__native_allocate: rsc2a allocation score on rhel7-5: -INFINITY
|
|
+pcmk__native_allocate: rsc2b allocation score on rhel7-1: 0
|
|
+pcmk__native_allocate: rsc2b allocation score on rhel7-2: 0
|
|
+pcmk__native_allocate: rsc2b allocation score on rhel7-3: 0
|
|
+pcmk__native_allocate: rsc2b allocation score on rhel7-4: 10
|
|
+pcmk__native_allocate: rsc2b allocation score on rhel7-5: -INFINITY
|
|
+pcmk__native_allocate: rsc3a allocation score on rhel7-1: -INFINITY
|
|
+pcmk__native_allocate: rsc3a allocation score on rhel7-2: 0
|
|
+pcmk__native_allocate: rsc3a allocation score on rhel7-3: -INFINITY
|
|
+pcmk__native_allocate: rsc3a allocation score on rhel7-4: -INFINITY
|
|
+pcmk__native_allocate: rsc3a allocation score on rhel7-5: -INFINITY
|
|
+pcmk__native_allocate: rsc3b allocation score on rhel7-1: 0
|
|
+pcmk__native_allocate: rsc3b allocation score on rhel7-2: 0
|
|
+pcmk__native_allocate: rsc3b allocation score on rhel7-3: 0
|
|
+pcmk__native_allocate: rsc3b allocation score on rhel7-4: 0
|
|
+pcmk__native_allocate: rsc3b allocation score on rhel7-5: -INFINITY
|
|
+pcmk__native_allocate: rsc4a allocation score on rhel7-1: -INFINITY
|
|
+pcmk__native_allocate: rsc4a allocation score on rhel7-2: -INFINITY
|
|
+pcmk__native_allocate: rsc4a allocation score on rhel7-3: -INFINITY
|
|
+pcmk__native_allocate: rsc4a allocation score on rhel7-4: -INFINITY
|
|
+pcmk__native_allocate: rsc4a allocation score on rhel7-5: -INFINITY
|
|
+pcmk__native_allocate: rsc4b allocation score on rhel7-1: 0
|
|
+pcmk__native_allocate: rsc4b allocation score on rhel7-2: 0
|
|
+pcmk__native_allocate: rsc4b allocation score on rhel7-3: 10
|
|
+pcmk__native_allocate: rsc4b allocation score on rhel7-4: 0
|
|
+pcmk__native_allocate: rsc4b allocation score on rhel7-5: -INFINITY
|
|
+pcmk__native_allocate: rsc5a allocation score on rhel7-1: -INFINITY
|
|
+pcmk__native_allocate: rsc5a allocation score on rhel7-2: -INFINITY
|
|
+pcmk__native_allocate: rsc5a allocation score on rhel7-3: -INFINITY
|
|
+pcmk__native_allocate: rsc5a allocation score on rhel7-4: -INFINITY
|
|
+pcmk__native_allocate: rsc5a allocation score on rhel7-5: -INFINITY
|
|
+pcmk__native_allocate: rsc5a1 allocation score on rhel7-1: 20
|
|
+pcmk__native_allocate: rsc5a1 allocation score on rhel7-2: 0
|
|
+pcmk__native_allocate: rsc5a1 allocation score on rhel7-3: 0
|
|
+pcmk__native_allocate: rsc5a1 allocation score on rhel7-4: 0
|
|
+pcmk__native_allocate: rsc5a1 allocation score on rhel7-5: -INFINITY
|
|
+pcmk__native_allocate: rsc5a2 allocation score on rhel7-1: 10
|
|
+pcmk__native_allocate: rsc5a2 allocation score on rhel7-2: -INFINITY
|
|
+pcmk__native_allocate: rsc5a2 allocation score on rhel7-3: -INFINITY
|
|
+pcmk__native_allocate: rsc5a2 allocation score on rhel7-4: -INFINITY
|
|
+pcmk__native_allocate: rsc5a2 allocation score on rhel7-5: -INFINITY
|
|
+pcmk__native_allocate: rsc6a allocation score on rhel7-1: 0
|
|
+pcmk__native_allocate: rsc6a allocation score on rhel7-2: 10
|
|
+pcmk__native_allocate: rsc6a allocation score on rhel7-3: 0
|
|
+pcmk__native_allocate: rsc6a allocation score on rhel7-4: 0
|
|
+pcmk__native_allocate: rsc6a allocation score on rhel7-5: -INFINITY
|
|
+pcmk__native_allocate: rsc6a1 allocation score on rhel7-1: -INFINITY
|
|
+pcmk__native_allocate: rsc6a1 allocation score on rhel7-2: -INFINITY
|
|
+pcmk__native_allocate: rsc6a1 allocation score on rhel7-3: -INFINITY
|
|
+pcmk__native_allocate: rsc6a1 allocation score on rhel7-4: -INFINITY
|
|
+pcmk__native_allocate: rsc6a1 allocation score on rhel7-5: -INFINITY
|
|
+pcmk__native_allocate: rsc6a2 allocation score on rhel7-1: -INFINITY
|
|
+pcmk__native_allocate: rsc6a2 allocation score on rhel7-2: -INFINITY
|
|
+pcmk__native_allocate: rsc6a2 allocation score on rhel7-3: -INFINITY
|
|
+pcmk__native_allocate: rsc6a2 allocation score on rhel7-4: -INFINITY
|
|
+pcmk__native_allocate: rsc6a2 allocation score on rhel7-5: -INFINITY
|
|
+pcmk__native_allocate: rsc7a1 allocation score on rhel7-1: 0
|
|
+pcmk__native_allocate: rsc7a1 allocation score on rhel7-2: 0
|
|
+pcmk__native_allocate: rsc7a1 allocation score on rhel7-3: 10
|
|
+pcmk__native_allocate: rsc7a1 allocation score on rhel7-4: 0
|
|
+pcmk__native_allocate: rsc7a1 allocation score on rhel7-5: -INFINITY
|
|
+pcmk__native_allocate: rsc7a2 allocation score on rhel7-1: -INFINITY
|
|
+pcmk__native_allocate: rsc7a2 allocation score on rhel7-2: -INFINITY
|
|
+pcmk__native_allocate: rsc7a2 allocation score on rhel7-3: -INFINITY
|
|
+pcmk__native_allocate: rsc7a2 allocation score on rhel7-4: -INFINITY
|
|
+pcmk__native_allocate: rsc7a2 allocation score on rhel7-5: -INFINITY
|
|
+pcmk__native_allocate: rsc8a:0 allocation score on rhel7-1: -INFINITY
|
|
+pcmk__native_allocate: rsc8a:0 allocation score on rhel7-2: -INFINITY
|
|
+pcmk__native_allocate: rsc8a:0 allocation score on rhel7-3: 10
|
|
+pcmk__native_allocate: rsc8a:0 allocation score on rhel7-4: -INFINITY
|
|
+pcmk__native_allocate: rsc8a:0 allocation score on rhel7-5: -INFINITY
|
|
+pcmk__native_allocate: rsc8a:1 allocation score on rhel7-1: -INFINITY
|
|
+pcmk__native_allocate: rsc8a:1 allocation score on rhel7-2: -INFINITY
|
|
+pcmk__native_allocate: rsc8a:1 allocation score on rhel7-3: -INFINITY
|
|
+pcmk__native_allocate: rsc8a:1 allocation score on rhel7-4: -INFINITY
|
|
+pcmk__native_allocate: rsc8a:1 allocation score on rhel7-5: -INFINITY
|
|
+pcmk__native_allocate: rsc8a:2 allocation score on rhel7-1: 10
|
|
+pcmk__native_allocate: rsc8a:2 allocation score on rhel7-2: -INFINITY
|
|
+pcmk__native_allocate: rsc8a:2 allocation score on rhel7-3: -INFINITY
|
|
+pcmk__native_allocate: rsc8a:2 allocation score on rhel7-4: -INFINITY
|
|
+pcmk__native_allocate: rsc8a:2 allocation score on rhel7-5: -INFINITY
|
|
+pcmk__native_allocate: rsc8b:0 allocation score on rhel7-1: 0
|
|
+pcmk__native_allocate: rsc8b:0 allocation score on rhel7-2: 0
|
|
+pcmk__native_allocate: rsc8b:0 allocation score on rhel7-3: 10
|
|
+pcmk__native_allocate: rsc8b:0 allocation score on rhel7-4: 0
|
|
+pcmk__native_allocate: rsc8b:0 allocation score on rhel7-5: -INFINITY
|
|
+pcmk__native_allocate: rsc8b:1 allocation score on rhel7-1: 0
|
|
+pcmk__native_allocate: rsc8b:1 allocation score on rhel7-2: 0
|
|
+pcmk__native_allocate: rsc8b:1 allocation score on rhel7-3: -INFINITY
|
|
+pcmk__native_allocate: rsc8b:1 allocation score on rhel7-4: 10
|
|
+pcmk__native_allocate: rsc8b:1 allocation score on rhel7-5: -INFINITY
|
|
+pcmk__native_allocate: rsc8b:2 allocation score on rhel7-1: 10
|
|
+pcmk__native_allocate: rsc8b:2 allocation score on rhel7-2: 0
|
|
+pcmk__native_allocate: rsc8b:2 allocation score on rhel7-3: -INFINITY
|
|
+pcmk__native_allocate: rsc8b:2 allocation score on rhel7-4: -INFINITY
|
|
+pcmk__native_allocate: rsc8b:2 allocation score on rhel7-5: -INFINITY
|
|
+pcmk__native_allocate: rsc9a allocation score on rhel7-1: 0
|
|
+pcmk__native_allocate: rsc9a allocation score on rhel7-2: 0
|
|
+pcmk__native_allocate: rsc9a allocation score on rhel7-3: 0
|
|
+pcmk__native_allocate: rsc9a allocation score on rhel7-4: 10
|
|
+pcmk__native_allocate: rsc9a allocation score on rhel7-5: -INFINITY
|
|
+pcmk__native_allocate: rsc9b allocation score on rhel7-1: -INFINITY
|
|
+pcmk__native_allocate: rsc9b allocation score on rhel7-2: -INFINITY
|
|
+pcmk__native_allocate: rsc9b allocation score on rhel7-3: -INFINITY
|
|
+pcmk__native_allocate: rsc9b allocation score on rhel7-4: 10
|
|
+pcmk__native_allocate: rsc9b allocation score on rhel7-5: -INFINITY
|
|
+pcmk__native_allocate: rsc9c allocation score on rhel7-1: -INFINITY
|
|
+pcmk__native_allocate: rsc9c allocation score on rhel7-2: -INFINITY
|
|
+pcmk__native_allocate: rsc9c allocation score on rhel7-3: -INFINITY
|
|
+pcmk__native_allocate: rsc9c allocation score on rhel7-4: -INFINITY
|
|
+pcmk__native_allocate: rsc9c allocation score on rhel7-5: -INFINITY
|
|
+rsc13b:0 promotion score on rhel7-3: 10
|
|
+rsc13b:1 promotion score on rhel7-4: 5
|
|
+rsc13b:2 promotion score on rhel7-1: 5
|
|
+rsc13b:3 promotion score on rhel7-2: 5
|
|
+rsc13b:4 promotion score on none: 0
|
|
+rsc13b:5 promotion score on none: 0
|
|
+rsc13b:6 promotion score on none: 0
|
|
+rsc13b:7 promotion score on none: 0
|
|
+rsc13b:8 promotion score on none: 0
|
|
+rsc14a:0 promotion score on rhel7-3: -INFINITY
|
|
+rsc14a:1 promotion score on none: 0
|
|
+rsc14a:2 promotion score on rhel7-1: -INFINITY
|
|
+rsc14a:3 promotion score on rhel7-2: -INFINITY
|
|
+rsc14a:4 promotion score on none: 0
|
|
+rsc14a:5 promotion score on none: 0
|
|
+rsc14a:6 promotion score on none: 0
|
|
+rsc14a:7 promotion score on none: 0
|
|
+rsc14a:8 promotion score on none: 0
|
|
diff --git a/cts/scheduler/colocation-influence.summary b/cts/scheduler/colocation-influence.summary
|
|
new file mode 100644
|
|
index 0000000..626e87a
|
|
--- /dev/null
|
|
+++ b/cts/scheduler/colocation-influence.summary
|
|
@@ -0,0 +1,168 @@
|
|
+
|
|
+Current cluster status:
|
|
+Online: [ rhel7-1 rhel7-2 rhel7-3 rhel7-4 rhel7-5 ]
|
|
+GuestOnline: [ bundle10-0:bundle10-docker-0 bundle10-1:bundle10-docker-1 bundle11-0:bundle11-docker-0 ]
|
|
+
|
|
+ Fencing (stonith:fence_xvm): Started rhel7-1
|
|
+ rsc1a (ocf::pacemaker:Dummy): Started rhel7-2
|
|
+ rsc1b (ocf::pacemaker:Dummy): Started rhel7-2
|
|
+ rsc2a (ocf::pacemaker:Dummy): Started rhel7-4
|
|
+ rsc2b (ocf::pacemaker:Dummy): Started rhel7-4
|
|
+ rsc3a (ocf::pacemaker:Dummy): Stopped
|
|
+ rsc3b (ocf::pacemaker:Dummy): Stopped
|
|
+ rsc4a (ocf::pacemaker:Dummy): Started rhel7-3
|
|
+ rsc4b (ocf::pacemaker:Dummy): Started rhel7-3
|
|
+ rsc5a (ocf::pacemaker:Dummy): Started rhel7-1
|
|
+ Resource Group: group5a
|
|
+ rsc5a1 (ocf::pacemaker:Dummy): Started rhel7-1
|
|
+ rsc5a2 (ocf::pacemaker:Dummy): Started rhel7-1
|
|
+ Resource Group: group6a
|
|
+ rsc6a1 (ocf::pacemaker:Dummy): Started rhel7-2
|
|
+ rsc6a2 (ocf::pacemaker:Dummy): Started rhel7-2
|
|
+ rsc6a (ocf::pacemaker:Dummy): Started rhel7-2
|
|
+ Resource Group: group7a
|
|
+ rsc7a1 (ocf::pacemaker:Dummy): Started rhel7-3
|
|
+ rsc7a2 (ocf::pacemaker:Dummy): Started rhel7-3
|
|
+ Clone Set: rsc8a-clone [rsc8a]
|
|
+ Started: [ rhel7-1 rhel7-3 rhel7-4 ]
|
|
+ Clone Set: rsc8b-clone [rsc8b]
|
|
+ Started: [ rhel7-1 rhel7-3 rhel7-4 ]
|
|
+ rsc9a (ocf::pacemaker:Dummy): Started rhel7-4
|
|
+ rsc9b (ocf::pacemaker:Dummy): Started rhel7-4
|
|
+ rsc9c (ocf::pacemaker:Dummy): Started rhel7-4
|
|
+ rsc10a (ocf::pacemaker:Dummy): Started rhel7-2
|
|
+ rsc11a (ocf::pacemaker:Dummy): Started rhel7-1
|
|
+ rsc12a (ocf::pacemaker:Dummy): Started rhel7-1
|
|
+ rsc12b (ocf::pacemaker:Dummy): Started rhel7-1
|
|
+ rsc12c (ocf::pacemaker:Dummy): Started rhel7-1
|
|
+ Container bundle set: bundle10 [pcmktest:http]
|
|
+ bundle10-0 (192.168.122.131) (ocf::heartbeat:apache): Started rhel7-2
|
|
+ bundle10-1 (192.168.122.132) (ocf::heartbeat:apache): Started rhel7-3
|
|
+ Container bundle set: bundle11 [pcmktest:http]
|
|
+ bundle11-0 (192.168.122.134) (ocf::pacemaker:Dummy): Started rhel7-1
|
|
+ bundle11-1 (192.168.122.135) (ocf::pacemaker:Dummy): Stopped
|
|
+ rsc13a (ocf::pacemaker:Dummy): Started rhel7-3
|
|
+ Clone Set: rsc13b-clone [rsc13b] (promotable)
|
|
+ Masters: [ rhel7-3 ]
|
|
+ Slaves: [ rhel7-1 rhel7-2 rhel7-4 ]
|
|
+ Stopped: [ rhel7-5 ]
|
|
+ rsc14b (ocf::pacemaker:Dummy): Started rhel7-4
|
|
+ Clone Set: rsc14a-clone [rsc14a] (promotable)
|
|
+ Masters: [ rhel7-4 ]
|
|
+ Slaves: [ rhel7-1 rhel7-2 rhel7-3 ]
|
|
+ Stopped: [ rhel7-5 ]
|
|
+
|
|
+Transition Summary:
|
|
+ * Move rsc1a ( rhel7-2 -> rhel7-3 )
|
|
+ * Move rsc1b ( rhel7-2 -> rhel7-3 )
|
|
+ * Stop rsc2a ( rhel7-4 ) due to node availability
|
|
+ * Start rsc3a ( rhel7-2 )
|
|
+ * Start rsc3b ( rhel7-2 )
|
|
+ * Stop rsc4a ( rhel7-3 ) due to node availability
|
|
+ * Stop rsc5a ( rhel7-1 ) due to node availability
|
|
+ * Stop rsc6a1 ( rhel7-2 ) due to node availability
|
|
+ * Stop rsc6a2 ( rhel7-2 ) due to node availability
|
|
+ * Stop rsc7a2 ( rhel7-3 ) due to node availability
|
|
+ * Stop rsc8a:1 ( rhel7-4 ) due to node availability
|
|
+ * Stop rsc9c ( rhel7-4 ) due to node availability
|
|
+ * Move rsc10a ( rhel7-2 -> rhel7-3 )
|
|
+ * Stop rsc12b ( rhel7-1 ) due to node availability
|
|
+ * Start bundle11-1 ( rhel7-5 ) due to unrunnable bundle11-docker-1 start (blocked)
|
|
+ * Start bundle11a:1 ( bundle11-1 ) due to unrunnable bundle11-docker-1 start (blocked)
|
|
+ * Stop rsc13a ( rhel7-3 ) due to node availability
|
|
+ * Stop rsc14a:1 ( Master rhel7-4 ) due to node availability
|
|
+
|
|
+Executing cluster transition:
|
|
+ * Resource action: rsc1a stop on rhel7-2
|
|
+ * Resource action: rsc1b stop on rhel7-2
|
|
+ * Resource action: rsc2a stop on rhel7-4
|
|
+ * Resource action: rsc3a start on rhel7-2
|
|
+ * Resource action: rsc3b start on rhel7-2
|
|
+ * Resource action: rsc4a stop on rhel7-3
|
|
+ * Resource action: rsc5a stop on rhel7-1
|
|
+ * Pseudo action: group6a_stop_0
|
|
+ * Resource action: rsc6a2 stop on rhel7-2
|
|
+ * Pseudo action: group7a_stop_0
|
|
+ * Resource action: rsc7a2 stop on rhel7-3
|
|
+ * Pseudo action: rsc8a-clone_stop_0
|
|
+ * Resource action: rsc9c stop on rhel7-4
|
|
+ * Resource action: rsc10a stop on rhel7-2
|
|
+ * Resource action: rsc12b stop on rhel7-1
|
|
+ * Resource action: rsc13a stop on rhel7-3
|
|
+ * Pseudo action: rsc14a-clone_demote_0
|
|
+ * Pseudo action: bundle11_start_0
|
|
+ * Resource action: rsc1a start on rhel7-3
|
|
+ * Resource action: rsc1b start on rhel7-3
|
|
+ * Resource action: rsc3a monitor=10000 on rhel7-2
|
|
+ * Resource action: rsc3b monitor=10000 on rhel7-2
|
|
+ * Resource action: rsc6a1 stop on rhel7-2
|
|
+ * Pseudo action: group7a_stopped_0
|
|
+ * Resource action: rsc8a stop on rhel7-4
|
|
+ * Pseudo action: rsc8a-clone_stopped_0
|
|
+ * Resource action: rsc10a start on rhel7-3
|
|
+ * Pseudo action: bundle11-clone_start_0
|
|
+ * Resource action: rsc14a demote on rhel7-4
|
|
+ * Pseudo action: rsc14a-clone_demoted_0
|
|
+ * Pseudo action: rsc14a-clone_stop_0
|
|
+ * Resource action: rsc1a monitor=10000 on rhel7-3
|
|
+ * Resource action: rsc1b monitor=10000 on rhel7-3
|
|
+ * Pseudo action: group6a_stopped_0
|
|
+ * Resource action: rsc10a monitor=10000 on rhel7-3
|
|
+ * Pseudo action: bundle11-clone_running_0
|
|
+ * Resource action: rsc14a stop on rhel7-4
|
|
+ * Pseudo action: rsc14a-clone_stopped_0
|
|
+ * Pseudo action: bundle11_running_0
|
|
+
|
|
+Revised cluster status:
|
|
+Online: [ rhel7-1 rhel7-2 rhel7-3 rhel7-4 rhel7-5 ]
|
|
+GuestOnline: [ bundle10-0:bundle10-docker-0 bundle10-1:bundle10-docker-1 bundle11-0:bundle11-docker-0 ]
|
|
+
|
|
+ Fencing (stonith:fence_xvm): Started rhel7-1
|
|
+ rsc1a (ocf::pacemaker:Dummy): Started rhel7-3
|
|
+ rsc1b (ocf::pacemaker:Dummy): Started rhel7-3
|
|
+ rsc2a (ocf::pacemaker:Dummy): Stopped
|
|
+ rsc2b (ocf::pacemaker:Dummy): Started rhel7-4
|
|
+ rsc3a (ocf::pacemaker:Dummy): Started rhel7-2
|
|
+ rsc3b (ocf::pacemaker:Dummy): Started rhel7-2
|
|
+ rsc4a (ocf::pacemaker:Dummy): Stopped
|
|
+ rsc4b (ocf::pacemaker:Dummy): Started rhel7-3
|
|
+ rsc5a (ocf::pacemaker:Dummy): Stopped
|
|
+ Resource Group: group5a
|
|
+ rsc5a1 (ocf::pacemaker:Dummy): Started rhel7-1
|
|
+ rsc5a2 (ocf::pacemaker:Dummy): Started rhel7-1
|
|
+ Resource Group: group6a
|
|
+ rsc6a1 (ocf::pacemaker:Dummy): Stopped
|
|
+ rsc6a2 (ocf::pacemaker:Dummy): Stopped
|
|
+ rsc6a (ocf::pacemaker:Dummy): Started rhel7-2
|
|
+ Resource Group: group7a
|
|
+ rsc7a1 (ocf::pacemaker:Dummy): Started rhel7-3
|
|
+ rsc7a2 (ocf::pacemaker:Dummy): Stopped
|
|
+ Clone Set: rsc8a-clone [rsc8a]
|
|
+ Started: [ rhel7-1 rhel7-3 ]
|
|
+ Stopped: [ rhel7-2 rhel7-4 rhel7-5 ]
|
|
+ Clone Set: rsc8b-clone [rsc8b]
|
|
+ Started: [ rhel7-1 rhel7-3 rhel7-4 ]
|
|
+ rsc9a (ocf::pacemaker:Dummy): Started rhel7-4
|
|
+ rsc9b (ocf::pacemaker:Dummy): Started rhel7-4
|
|
+ rsc9c (ocf::pacemaker:Dummy): Stopped
|
|
+ rsc10a (ocf::pacemaker:Dummy): Started rhel7-3
|
|
+ rsc11a (ocf::pacemaker:Dummy): Started rhel7-1
|
|
+ rsc12a (ocf::pacemaker:Dummy): Started rhel7-1
|
|
+ rsc12b (ocf::pacemaker:Dummy): Stopped
|
|
+ rsc12c (ocf::pacemaker:Dummy): Started rhel7-1
|
|
+ Container bundle set: bundle10 [pcmktest:http]
|
|
+ bundle10-0 (192.168.122.131) (ocf::heartbeat:apache): Started rhel7-2
|
|
+ bundle10-1 (192.168.122.132) (ocf::heartbeat:apache): Started rhel7-3
|
|
+ Container bundle set: bundle11 [pcmktest:http]
|
|
+ bundle11-0 (192.168.122.134) (ocf::pacemaker:Dummy): Started rhel7-1
|
|
+ bundle11-1 (192.168.122.135) (ocf::pacemaker:Dummy): Stopped
|
|
+ rsc13a (ocf::pacemaker:Dummy): Stopped
|
|
+ Clone Set: rsc13b-clone [rsc13b] (promotable)
|
|
+ Masters: [ rhel7-3 ]
|
|
+ Slaves: [ rhel7-1 rhel7-2 rhel7-4 ]
|
|
+ Stopped: [ rhel7-5 ]
|
|
+ rsc14b (ocf::pacemaker:Dummy): Started rhel7-4
|
|
+ Clone Set: rsc14a-clone [rsc14a] (promotable)
|
|
+ Slaves: [ rhel7-1 rhel7-2 rhel7-3 ]
|
|
+ Stopped: [ rhel7-4 rhel7-5 ]
|
|
+
|
|
diff --git a/cts/scheduler/colocation-influence.xml b/cts/scheduler/colocation-influence.xml
|
|
new file mode 100644
|
|
index 0000000..5962cd2
|
|
--- /dev/null
|
|
+++ b/cts/scheduler/colocation-influence.xml
|
|
@@ -0,0 +1,1298 @@
|
|
+<cib crm_feature_set="3.6.3" validate-with="pacemaker-3.6" epoch="45" num_updates="44" admin_epoch="1" cib-last-written="Tue Dec 22 14:11:12 2020" update-origin="rhel7-1" update-client="cibadmin" update-user="root" have-quorum="1" dc-uuid="4">
|
|
+ <configuration>
|
|
+ <!-- This is a large combination test for colocation influence. The default migration-threshold
|
|
+ is 2, and default stickiness is 10 (so nothing should move unless due to colocations).
|
|
+ The dependent resources all have a fail count of 2 on their current node. Failed dependent
|
|
+ resources should not cause an active "with" resource to move when influence is false. Tests:
|
|
+ - Colocation constraint (rsc1a with rsc1b) with invalid value for influence (should default,
|
|
+ and both resources should move to a different node)
|
|
+ - Colocation constraint (rsc2a with rsc2b) between two active primitives with influence=false
|
|
+ - Colocation constraint (rsc3a with rsc3b) where influence=false and "with" resource is inactive
|
|
+ but able to start (influence should be ignored)
|
|
+ - Colocation constraint (rsc4a with rsc4b) where rsc4a has critical=false
|
|
+ - Colocation constraint (rsc5a with group5a) where rsc5a has critical=true
|
|
+ but constraint has influence=false (influence should win, and rsc5a should stop)
|
|
+ - Colocation constraint (group6a with rsc6a) with influence=false
|
|
+ - Group (group7a) of two resources where second has critical=false
|
|
+ - Colocation constraint (rsc8a-clone with rsc8b-clone) between two clones with influence=false
|
|
+ - Colocation constraint with set (rsc9a, rsc9b, and failed rsc9c) and influence=false
|
|
+ - Colocation constraint (rsc10a with bundle10) between primitive and bundle with influence=false
|
|
+ - Colocation constraint (bundle11 with rsc11a) between bundle and primitive with influence=false
|
|
+ - Colocation constraint between tag (applying to rsc12a and failed rsc12b) and primitive (rsc12c)
|
|
+ with influence=false
|
|
+ - Colocation constraint (rsc13a with rsc13b-clone master) between primitive and
|
|
+ promoted role of clone with influence=false
|
|
+ - Colocation constraint (rsc14a-clone master with rsc14b) between promoted role of clone
|
|
+ and primitive with influence=false
|
|
+ -->
|
|
+ <crm_config>
|
|
+ <cluster_property_set id="cib-bootstrap-options">
|
|
+ <nvpair id="cts-stonith-enabled" name="stonith-enabled" value="1"/>
|
|
+ <nvpair id="cts-start-failure-is-fatal" name="start-failure-is-fatal" value="false"/>
|
|
+ <nvpair id="cts-pe-input-series-max" name="pe-input-series-max" value="5000"/>
|
|
+ <nvpair id="cts-shutdown-escalation" name="shutdown-escalation" value="5min"/>
|
|
+ <nvpair id="cts-batch-limit" name="batch-limit" value="10"/>
|
|
+ <nvpair id="cts-dc-deadtime" name="dc-deadtime" value="5s"/>
|
|
+ <nvpair id="cts-no-quorum-policy" name="no-quorum-policy" value="stop"/>
|
|
+ <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-672.534afa7.git.el7_9-534afa7"/>
|
|
+ <nvpair id="cib-bootstrap-options-cluster-infrastructure" name="cluster-infrastructure" value="corosync"/>
|
|
+ <nvpair id="cib-bootstrap-options-cluster-name" name="cluster-name" value="mycluster"/>
|
|
+ <nvpair id="cib-bootstrap-options-last-lrm-refresh" name="last-lrm-refresh" value="1608667771"/>
|
|
+ </cluster_property_set>
|
|
+ </crm_config>
|
|
+ <nodes>
|
|
+ <node id="1" uname="rhel7-1"/>
|
|
+ <node id="2" uname="rhel7-2"/>
|
|
+ <node id="3" uname="rhel7-3"/>
|
|
+ <node id="4" uname="rhel7-4"/>
|
|
+ <node id="5" uname="rhel7-5"/>
|
|
+ </nodes>
|
|
+ <resources>
|
|
+ <primitive class="stonith" id="Fencing" type="fence_xvm">
|
|
+ <instance_attributes id="Fencing-params">
|
|
+ <nvpair id="Fencing-key_file" name="key_file" value="/etc/pacemaker/fence_xvm.key"/>
|
|
+ <nvpair id="Fencing-multicast_address" name="multicast_address" value="239.255.100.100"/>
|
|
+ <nvpair id="Fencing-pcmk_host_list" name="pcmk_host_list" value="rhel7-1 rhel7-2 rhel7-3 rhel7-4 rhel7-5"/>
|
|
+ </instance_attributes>
|
|
+ <operations>
|
|
+ <op id="Fencing-monitor-120s" interval="120s" name="monitor" timeout="120s"/>
|
|
+ <op id="Fencing-stop-0" interval="0" name="stop" timeout="60s"/>
|
|
+ <op id="Fencing-start-0" interval="0" name="start" timeout="60s"/>
|
|
+ </operations>
|
|
+ </primitive>
|
|
+ <primitive class="ocf" id="rsc1a" provider="pacemaker" type="Dummy">
|
|
+ <operations>
|
|
+ <op id="rsc1a-migrate_from-interval-0s" interval="0s" name="migrate_from" timeout="20s"/>
|
|
+ <op id="rsc1a-migrate_to-interval-0s" interval="0s" name="migrate_to" timeout="20s"/>
|
|
+ <op id="rsc1a-monitor-interval-10s" interval="10s" name="monitor" timeout="20s"/>
|
|
+ <op id="rsc1a-reload-interval-0s" interval="0s" name="reload" timeout="20s"/>
|
|
+ <op id="rsc1a-start-interval-0s" interval="0s" name="start" timeout="20s"/>
|
|
+ <op id="rsc1a-stop-interval-0s" interval="0s" name="stop" timeout="20s"/>
|
|
+ </operations>
|
|
+ </primitive>
|
|
+ <primitive class="ocf" id="rsc1b" provider="pacemaker" type="Dummy">
|
|
+ <operations>
|
|
+ <op id="rsc1b-migrate_from-interval-0s" interval="0s" name="migrate_from" timeout="20s"/>
|
|
+ <op id="rsc1b-migrate_to-interval-0s" interval="0s" name="migrate_to" timeout="20s"/>
|
|
+ <op id="rsc1b-monitor-interval-10s" interval="10s" name="monitor" timeout="20s"/>
|
|
+ <op id="rsc1b-reload-interval-0s" interval="0s" name="reload" timeout="20s"/>
|
|
+ <op id="rsc1b-start-interval-0s" interval="0s" name="start" timeout="20s"/>
|
|
+ <op id="rsc1b-stop-interval-0s" interval="0s" name="stop" timeout="20s"/>
|
|
+ </operations>
|
|
+ </primitive>
|
|
+ <primitive class="ocf" id="rsc2a" provider="pacemaker" type="Dummy">
|
|
+ <operations>
|
|
+ <op id="rsc2a-migrate_from-interval-0s" interval="0s" name="migrate_from" timeout="20s"/>
|
|
+ <op id="rsc2a-migrate_to-interval-0s" interval="0s" name="migrate_to" timeout="20s"/>
|
|
+ <op id="rsc2a-monitor-interval-10s" interval="10s" name="monitor" timeout="20s"/>
|
|
+ <op id="rsc2a-reload-interval-0s" interval="0s" name="reload" timeout="20s"/>
|
|
+ <op id="rsc2a-start-interval-0s" interval="0s" name="start" timeout="20s"/>
|
|
+ <op id="rsc2a-stop-interval-0s" interval="0s" name="stop" timeout="20s"/>
|
|
+ </operations>
|
|
+ </primitive>
|
|
+ <primitive class="ocf" id="rsc2b" provider="pacemaker" type="Dummy">
|
|
+ <operations>
|
|
+ <op id="rsc2b-migrate_from-interval-0s" interval="0s" name="migrate_from" timeout="20s"/>
|
|
+ <op id="rsc2b-migrate_to-interval-0s" interval="0s" name="migrate_to" timeout="20s"/>
|
|
+ <op id="rsc2b-monitor-interval-10s" interval="10s" name="monitor" timeout="20s"/>
|
|
+ <op id="rsc2b-reload-interval-0s" interval="0s" name="reload" timeout="20s"/>
|
|
+ <op id="rsc2b-start-interval-0s" interval="0s" name="start" timeout="20s"/>
|
|
+ <op id="rsc2b-stop-interval-0s" interval="0s" name="stop" timeout="20s"/>
|
|
+ </operations>
|
|
+ </primitive>
|
|
+ <primitive class="ocf" id="rsc3a" provider="pacemaker" type="Dummy">
|
|
+ <operations>
|
|
+ <op id="rsc3a-migrate_from-interval-0s" interval="0s" name="migrate_from" timeout="20s"/>
|
|
+ <op id="rsc3a-migrate_to-interval-0s" interval="0s" name="migrate_to" timeout="20s"/>
|
|
+ <op id="rsc3a-monitor-interval-10s" interval="10s" name="monitor" timeout="20s"/>
|
|
+ <op id="rsc3a-reload-interval-0s" interval="0s" name="reload" timeout="20s"/>
|
|
+ <op id="rsc3a-start-interval-0s" interval="0s" name="start" timeout="20s"/>
|
|
+ <op id="rsc3a-stop-interval-0s" interval="0s" name="stop" timeout="20s"/>
|
|
+ </operations>
|
|
+ </primitive>
|
|
+ <primitive class="ocf" id="rsc3b" provider="pacemaker" type="Dummy">
|
|
+ <operations>
|
|
+ <op id="rsc3b-migrate_from-interval-0s" interval="0s" name="migrate_from" timeout="20s"/>
|
|
+ <op id="rsc3b-migrate_to-interval-0s" interval="0s" name="migrate_to" timeout="20s"/>
|
|
+ <op id="rsc3b-monitor-interval-10s" interval="10s" name="monitor" timeout="20s"/>
|
|
+ <op id="rsc3b-reload-interval-0s" interval="0s" name="reload" timeout="20s"/>
|
|
+ <op id="rsc3b-start-interval-0s" interval="0s" name="start" timeout="20s"/>
|
|
+ <op id="rsc3b-stop-interval-0s" interval="0s" name="stop" timeout="20s"/>
|
|
+ </operations>
|
|
+ </primitive>
|
|
+ <primitive class="ocf" id="rsc4a" provider="pacemaker" type="Dummy">
|
|
+ <meta_attributes id="rsc4a-meta_attributes">
|
|
+ <nvpair id="rsc4a-meta_attributes-critical" name="critical" value="false"/>
|
|
+ </meta_attributes>
|
|
+ <operations>
|
|
+ <op id="rsc4a-migrate_from-interval-0s" interval="0s" name="migrate_from" timeout="20s"/>
|
|
+ <op id="rsc4a-migrate_to-interval-0s" interval="0s" name="migrate_to" timeout="20s"/>
|
|
+ <op id="rsc4a-monitor-interval-10s" interval="10s" name="monitor" timeout="20s"/>
|
|
+ <op id="rsc4a-reload-interval-0s" interval="0s" name="reload" timeout="20s"/>
|
|
+ <op id="rsc4a-start-interval-0s" interval="0s" name="start" timeout="20s"/>
|
|
+ <op id="rsc4a-stop-interval-0s" interval="0s" name="stop" timeout="20s"/>
|
|
+ </operations>
|
|
+ </primitive>
|
|
+ <primitive class="ocf" id="rsc4b" provider="pacemaker" type="Dummy">
|
|
+ <operations>
|
|
+ <op id="rsc4b-migrate_from-interval-0s" interval="0s" name="migrate_from" timeout="20s"/>
|
|
+ <op id="rsc4b-migrate_to-interval-0s" interval="0s" name="migrate_to" timeout="20s"/>
|
|
+ <op id="rsc4b-monitor-interval-10s" interval="10s" name="monitor" timeout="20s"/>
|
|
+ <op id="rsc4b-reload-interval-0s" interval="0s" name="reload" timeout="20s"/>
|
|
+ <op id="rsc4b-start-interval-0s" interval="0s" name="start" timeout="20s"/>
|
|
+ <op id="rsc4b-stop-interval-0s" interval="0s" name="stop" timeout="20s"/>
|
|
+ </operations>
|
|
+ </primitive>
|
|
+ <primitive class="ocf" id="rsc5a" provider="pacemaker" type="Dummy">
|
|
+ <meta_attributes id="rsc5a-meta_attributes">
|
|
+ <nvpair id="rsc5a-meta_attributes-critical" name="critical" value="true"/>
|
|
+ </meta_attributes>
|
|
+ <operations>
|
|
+ <op id="rsc5a-migrate_from-interval-0s" interval="0s" name="migrate_from" timeout="20s"/>
|
|
+ <op id="rsc5a-migrate_to-interval-0s" interval="0s" name="migrate_to" timeout="20s"/>
|
|
+ <op id="rsc5a-monitor-interval-10s" interval="10s" name="monitor" timeout="20s"/>
|
|
+ <op id="rsc5a-reload-interval-0s" interval="0s" name="reload" timeout="20s"/>
|
|
+ <op id="rsc5a-start-interval-0s" interval="0s" name="start" timeout="20s"/>
|
|
+ <op id="rsc5a-stop-interval-0s" interval="0s" name="stop" timeout="20s"/>
|
|
+ </operations>
|
|
+ </primitive>
|
|
+ <group id="group5a">
|
|
+ <primitive class="ocf" id="rsc5a1" provider="pacemaker" type="Dummy">
|
|
+ <operations>
|
|
+ <op id="rsc5a1-migrate_from-interval-0s" interval="0s" name="migrate_from" timeout="20s"/>
|
|
+ <op id="rsc5a1-migrate_to-interval-0s" interval="0s" name="migrate_to" timeout="20s"/>
|
|
+ <op id="rsc5a1-monitor-interval-10s" interval="10s" name="monitor" timeout="20s"/>
|
|
+ <op id="rsc5a1-reload-interval-0s" interval="0s" name="reload" timeout="20s"/>
|
|
+ <op id="rsc5a1-start-interval-0s" interval="0s" name="start" timeout="20s"/>
|
|
+ <op id="rsc5a1-stop-interval-0s" interval="0s" name="stop" timeout="20s"/>
|
|
+ </operations>
|
|
+ </primitive>
|
|
+ <primitive class="ocf" id="rsc5a2" provider="pacemaker" type="Dummy">
|
|
+ <operations>
|
|
+ <op id="rsc5a2-migrate_from-interval-0s" interval="0s" name="migrate_from" timeout="20s"/>
|
|
+ <op id="rsc5a2-migrate_to-interval-0s" interval="0s" name="migrate_to" timeout="20s"/>
|
|
+ <op id="rsc5a2-monitor-interval-10s" interval="10s" name="monitor" timeout="20s"/>
|
|
+ <op id="rsc5a2-reload-interval-0s" interval="0s" name="reload" timeout="20s"/>
|
|
+ <op id="rsc5a2-start-interval-0s" interval="0s" name="start" timeout="20s"/>
|
|
+ <op id="rsc5a2-stop-interval-0s" interval="0s" name="stop" timeout="20s"/>
|
|
+ </operations>
|
|
+ </primitive>
|
|
+ </group>
|
|
+ <group id="group6a">
|
|
+ <primitive class="ocf" id="rsc6a1" provider="pacemaker" type="Dummy">
|
|
+ <operations>
|
|
+ <op id="rsc6a1-migrate_from-interval-0s" interval="0s" name="migrate_from" timeout="20s"/>
|
|
+ <op id="rsc6a1-migrate_to-interval-0s" interval="0s" name="migrate_to" timeout="20s"/>
|
|
+ <op id="rsc6a1-monitor-interval-10s" interval="10s" name="monitor" timeout="20s"/>
|
|
+ <op id="rsc6a1-reload-interval-0s" interval="0s" name="reload" timeout="20s"/>
|
|
+ <op id="rsc6a1-start-interval-0s" interval="0s" name="start" timeout="20s"/>
|
|
+ <op id="rsc6a1-stop-interval-0s" interval="0s" name="stop" timeout="20s"/>
|
|
+ </operations>
|
|
+ </primitive>
|
|
+ <primitive class="ocf" id="rsc6a2" provider="pacemaker" type="Dummy">
|
|
+ <operations>
|
|
+ <op id="rsc6a2-migrate_from-interval-0s" interval="0s" name="migrate_from" timeout="20s"/>
|
|
+ <op id="rsc6a2-migrate_to-interval-0s" interval="0s" name="migrate_to" timeout="20s"/>
|
|
+ <op id="rsc6a2-monitor-interval-10s" interval="10s" name="monitor" timeout="20s"/>
|
|
+ <op id="rsc6a2-reload-interval-0s" interval="0s" name="reload" timeout="20s"/>
|
|
+ <op id="rsc6a2-start-interval-0s" interval="0s" name="start" timeout="20s"/>
|
|
+ <op id="rsc6a2-stop-interval-0s" interval="0s" name="stop" timeout="20s"/>
|
|
+ </operations>
|
|
+ </primitive>
|
|
+ </group>
|
|
+ <primitive class="ocf" id="rsc6a" provider="pacemaker" type="Dummy">
|
|
+ <operations>
|
|
+ <op id="rsc6a-migrate_from-interval-0s" interval="0s" name="migrate_from" timeout="20s"/>
|
|
+ <op id="rsc6a-migrate_to-interval-0s" interval="0s" name="migrate_to" timeout="20s"/>
|
|
+ <op id="rsc6a-monitor-interval-10s" interval="10s" name="monitor" timeout="20s"/>
|
|
+ <op id="rsc6a-reload-interval-0s" interval="0s" name="reload" timeout="20s"/>
|
|
+ <op id="rsc6a-start-interval-0s" interval="0s" name="start" timeout="20s"/>
|
|
+ <op id="rsc6a-stop-interval-0s" interval="0s" name="stop" timeout="20s"/>
|
|
+ </operations>
|
|
+ </primitive>
|
|
+ <group id="group7a">
|
|
+ <primitive class="ocf" id="rsc7a1" provider="pacemaker" type="Dummy">
|
|
+ <operations>
|
|
+ <op id="rsc7a1-migrate_from-interval-0s" interval="0s" name="migrate_from" timeout="20s"/>
|
|
+ <op id="rsc7a1-migrate_to-interval-0s" interval="0s" name="migrate_to" timeout="20s"/>
|
|
+ <op id="rsc7a1-monitor-interval-10s" interval="10s" name="monitor" timeout="20s"/>
|
|
+ <op id="rsc7a1-reload-interval-0s" interval="0s" name="reload" timeout="20s"/>
|
|
+ <op id="rsc7a1-start-interval-0s" interval="0s" name="start" timeout="20s"/>
|
|
+ <op id="rsc7a1-stop-interval-0s" interval="0s" name="stop" timeout="20s"/>
|
|
+ </operations>
|
|
+ </primitive>
|
|
+ <primitive class="ocf" id="rsc7a2" provider="pacemaker" type="Dummy">
|
|
+ <meta_attributes id="rsc7a2-meta_attributes">
|
|
+ <nvpair id="rsc7a2-meta_attributes-critical" name="critical" value="false"/>
|
|
+ </meta_attributes>
|
|
+ <operations>
|
|
+ <op id="rsc7a2-migrate_from-interval-0s" interval="0s" name="migrate_from" timeout="20s"/>
|
|
+ <op id="rsc7a2-migrate_to-interval-0s" interval="0s" name="migrate_to" timeout="20s"/>
|
|
+ <op id="rsc7a2-monitor-interval-10s" interval="10s" name="monitor" timeout="20s"/>
|
|
+ <op id="rsc7a2-reload-interval-0s" interval="0s" name="reload" timeout="20s"/>
|
|
+ <op id="rsc7a2-start-interval-0s" interval="0s" name="start" timeout="20s"/>
|
|
+ <op id="rsc7a2-stop-interval-0s" interval="0s" name="stop" timeout="20s"/>
|
|
+ </operations>
|
|
+ </primitive>
|
|
+ </group>
|
|
+ <clone id="rsc8a-clone">
|
|
+ <primitive class="ocf" id="rsc8a" provider="pacemaker" type="Dummy">
|
|
+ <operations>
|
|
+ <op id="rsc8a-migrate_from-interval-0s" interval="0s" name="migrate_from" timeout="20s"/>
|
|
+ <op id="rsc8a-migrate_to-interval-0s" interval="0s" name="migrate_to" timeout="20s"/>
|
|
+ <op id="rsc8a-monitor-interval-10s" interval="10s" name="monitor" timeout="20s"/>
|
|
+ <op id="rsc8a-reload-interval-0s" interval="0s" name="reload" timeout="20s"/>
|
|
+ <op id="rsc8a-start-interval-0s" interval="0s" name="start" timeout="20s"/>
|
|
+ <op id="rsc8a-stop-interval-0s" interval="0s" name="stop" timeout="20s"/>
|
|
+ </operations>
|
|
+ </primitive>
|
|
+ <meta_attributes id="rsc8a-clone-meta_attributes">
|
|
+ <nvpair id="rsc8a-clone-meta_attributes-interleave" name="interleave" value="true"/>
|
|
+ <nvpair id="rsc8a-clone-meta_attributes-clone-max" name="clone-max" value="3"/>
|
|
+ </meta_attributes>
|
|
+ </clone>
|
|
+ <clone id="rsc8b-clone">
|
|
+ <primitive class="ocf" id="rsc8b" provider="pacemaker" type="Dummy">
|
|
+ <operations>
|
|
+ <op id="rsc8b-migrate_from-interval-0s" interval="0s" name="migrate_from" timeout="20s"/>
|
|
+ <op id="rsc8b-migrate_to-interval-0s" interval="0s" name="migrate_to" timeout="20s"/>
|
|
+ <op id="rsc8b-monitor-interval-10s" interval="10s" name="monitor" timeout="20s"/>
|
|
+ <op id="rsc8b-reload-interval-0s" interval="0s" name="reload" timeout="20s"/>
|
|
+ <op id="rsc8b-start-interval-0s" interval="0s" name="start" timeout="20s"/>
|
|
+ <op id="rsc8b-stop-interval-0s" interval="0s" name="stop" timeout="20s"/>
|
|
+ </operations>
|
|
+ </primitive>
|
|
+ <meta_attributes id="rsc8b-clone-meta_attributes">
|
|
+ <nvpair id="rsc8b-clone-meta_attributes-interleave" name="interleave" value="true"/>
|
|
+ <nvpair id="rsc8b-clone-meta_attributes-clone-max" name="clone-max" value="3"/>
|
|
+ </meta_attributes>
|
|
+ </clone>
|
|
+ <primitive class="ocf" id="rsc9a" provider="pacemaker" type="Dummy">
|
|
+ <operations>
|
|
+ <op id="rsc9a-migrate_from-interval-0s" interval="0s" name="migrate_from" timeout="20s"/>
|
|
+ <op id="rsc9a-migrate_to-interval-0s" interval="0s" name="migrate_to" timeout="20s"/>
|
|
+ <op id="rsc9a-monitor-interval-10s" interval="10s" name="monitor" timeout="20s"/>
|
|
+ <op id="rsc9a-reload-interval-0s" interval="0s" name="reload" timeout="20s"/>
|
|
+ <op id="rsc9a-start-interval-0s" interval="0s" name="start" timeout="20s"/>
|
|
+ <op id="rsc9a-stop-interval-0s" interval="0s" name="stop" timeout="20s"/>
|
|
+ </operations>
|
|
+ </primitive>
|
|
+ <primitive class="ocf" id="rsc9b" provider="pacemaker" type="Dummy">
|
|
+ <operations>
|
|
+ <op id="rsc9b-migrate_from-interval-0s" interval="0s" name="migrate_from" timeout="20s"/>
|
|
+ <op id="rsc9b-migrate_to-interval-0s" interval="0s" name="migrate_to" timeout="20s"/>
|
|
+ <op id="rsc9b-monitor-interval-10s" interval="10s" name="monitor" timeout="20s"/>
|
|
+ <op id="rsc9b-reload-interval-0s" interval="0s" name="reload" timeout="20s"/>
|
|
+ <op id="rsc9b-start-interval-0s" interval="0s" name="start" timeout="20s"/>
|
|
+ <op id="rsc9b-stop-interval-0s" interval="0s" name="stop" timeout="20s"/>
|
|
+ </operations>
|
|
+ </primitive>
|
|
+ <primitive class="ocf" id="rsc9c" provider="pacemaker" type="Dummy">
|
|
+ <operations>
|
|
+ <op id="rsc9c-migrate_from-interval-0s" interval="0s" name="migrate_from" timeout="20s"/>
|
|
+ <op id="rsc9c-migrate_to-interval-0s" interval="0s" name="migrate_to" timeout="20s"/>
|
|
+ <op id="rsc9c-monitor-interval-10s" interval="10s" name="monitor" timeout="20s"/>
|
|
+ <op id="rsc9c-reload-interval-0s" interval="0s" name="reload" timeout="20s"/>
|
|
+ <op id="rsc9c-start-interval-0s" interval="0s" name="start" timeout="20s"/>
|
|
+ <op id="rsc9c-stop-interval-0s" interval="0s" name="stop" timeout="20s"/>
|
|
+ </operations>
|
|
+ </primitive>
|
|
+ <primitive class="ocf" id="rsc10a" provider="pacemaker" type="Dummy">
|
|
+ <operations>
|
|
+ <op id="rsc10a-migrate_from-interval-0s" interval="0s" name="migrate_from" timeout="20s"/>
|
|
+ <op id="rsc10a-migrate_to-interval-0s" interval="0s" name="migrate_to" timeout="20s"/>
|
|
+ <op id="rsc10a-monitor-interval-10s" interval="10s" name="monitor" timeout="20s"/>
|
|
+ <op id="rsc10a-reload-interval-0s" interval="0s" name="reload" timeout="20s"/>
|
|
+ <op id="rsc10a-start-interval-0s" interval="0s" name="start" timeout="20s"/>
|
|
+ <op id="rsc10a-stop-interval-0s" interval="0s" name="stop" timeout="20s"/>
|
|
+ </operations>
|
|
+ </primitive>
|
|
+ <primitive class="ocf" id="rsc11a" provider="pacemaker" type="Dummy">
|
|
+ <operations>
|
|
+ <op id="rsc11a-migrate_from-interval-0s" interval="0s" name="migrate_from" timeout="20s"/>
|
|
+ <op id="rsc11a-migrate_to-interval-0s" interval="0s" name="migrate_to" timeout="20s"/>
|
|
+ <op id="rsc11a-monitor-interval-10s" interval="10s" name="monitor" timeout="20s"/>
|
|
+ <op id="rsc11a-reload-interval-0s" interval="0s" name="reload" timeout="20s"/>
|
|
+ <op id="rsc11a-start-interval-0s" interval="0s" name="start" timeout="20s"/>
|
|
+ <op id="rsc11a-stop-interval-0s" interval="0s" name="stop" timeout="20s"/>
|
|
+ </operations>
|
|
+ </primitive>
|
|
+ <primitive class="ocf" id="rsc12a" provider="pacemaker" type="Dummy">
|
|
+ <operations>
|
|
+ <op id="rsc12a-migrate_from-interval-0s" interval="0s" name="migrate_from" timeout="20s"/>
|
|
+ <op id="rsc12a-migrate_to-interval-0s" interval="0s" name="migrate_to" timeout="20s"/>
|
|
+ <op id="rsc12a-monitor-interval-10s" interval="10s" name="monitor" timeout="20s"/>
|
|
+ <op id="rsc12a-reload-interval-0s" interval="0s" name="reload" timeout="20s"/>
|
|
+ <op id="rsc12a-start-interval-0s" interval="0s" name="start" timeout="20s"/>
|
|
+ <op id="rsc12a-stop-interval-0s" interval="0s" name="stop" timeout="20s"/>
|
|
+ </operations>
|
|
+ </primitive>
|
|
+ <primitive class="ocf" id="rsc12b" provider="pacemaker" type="Dummy">
|
|
+ <operations>
|
|
+ <op id="rsc12b-migrate_from-interval-0s" interval="0s" name="migrate_from" timeout="20s"/>
|
|
+ <op id="rsc12b-migrate_to-interval-0s" interval="0s" name="migrate_to" timeout="20s"/>
|
|
+ <op id="rsc12b-monitor-interval-10s" interval="10s" name="monitor" timeout="20s"/>
|
|
+ <op id="rsc12b-reload-interval-0s" interval="0s" name="reload" timeout="20s"/>
|
|
+ <op id="rsc12b-start-interval-0s" interval="0s" name="start" timeout="20s"/>
|
|
+ <op id="rsc12b-stop-interval-0s" interval="0s" name="stop" timeout="20s"/>
|
|
+ </operations>
|
|
+ </primitive>
|
|
+ <primitive class="ocf" id="rsc12c" provider="pacemaker" type="Dummy">
|
|
+ <operations>
|
|
+ <op id="rsc12c-migrate_from-interval-0s" interval="0s" name="migrate_from" timeout="20s"/>
|
|
+ <op id="rsc12c-migrate_to-interval-0s" interval="0s" name="migrate_to" timeout="20s"/>
|
|
+ <op id="rsc12c-monitor-interval-10s" interval="10s" name="monitor" timeout="20s"/>
|
|
+ <op id="rsc12c-reload-interval-0s" interval="0s" name="reload" timeout="20s"/>
|
|
+ <op id="rsc12c-start-interval-0s" interval="0s" name="start" timeout="20s"/>
|
|
+ <op id="rsc12c-stop-interval-0s" interval="0s" name="stop" timeout="20s"/>
|
|
+ </operations>
|
|
+ </primitive>
|
|
+ <bundle id="bundle10">
|
|
+ <docker image="pcmktest:http" options="--log-driver=journald" replicas="2"/>
|
|
+ <network control-port="9999" host-interface="eth0" host-netmask="24" ip-range-start="192.168.122.131">
|
|
+ <port-mapping id="httpd-port" port="80"/>
|
|
+ </network>
|
|
+ <storage>
|
|
+ <storage-mapping id="httpd-syslog" options="rw,Z" source-dir="/dev/log" target-dir="/dev/log"/>
|
|
+ <storage-mapping id="httpd-root" options="rw,Z" source-dir-root="/var/local/containers" target-dir="/var/www/html"/>
|
|
+ <storage-mapping id="httpd-logs" options="rw,Z" source-dir-root="/var/log/pacemaker/bundles" target-dir="/etc/httpd/logs"/>
|
|
+ </storage>
|
|
+ <primitive class="ocf" id="httpd" provider="heartbeat" type="apache">
|
|
+ <operations>
|
|
+ <op id="httpd-monitor-15s" interval="15s" name="monitor" timeout="15s"/>
|
|
+ </operations>
|
|
+ </primitive>
|
|
+ </bundle>
|
|
+ <bundle id="bundle11">
|
|
+ <docker image="pcmktest:http" options="--log-driver=journald" replicas="2"/>
|
|
+ <network control-port="3121" host-interface="eth0" host-netmask="24" ip-range-start="192.168.122.134"/>
|
|
+ <primitive class="ocf" id="bundle11a" provider="pacemaker" type="Dummy">
|
|
+ <operations>
|
|
+ <op id="bundle11a-monitor-15s" interval="15s" name="monitor" timeout="15s"/>
|
|
+ </operations>
|
|
+ </primitive>
|
|
+ </bundle>
|
|
+ <primitive class="ocf" id="rsc13a" provider="pacemaker" type="Dummy">
|
|
+ <operations>
|
|
+ <op id="rsc13a-migrate_from-interval-0s" interval="0s" name="migrate_from" timeout="20s"/>
|
|
+ <op id="rsc13a-migrate_to-interval-0s" interval="0s" name="migrate_to" timeout="20s"/>
|
|
+ <op id="rsc13a-monitor-interval-10s" interval="10s" name="monitor" timeout="20s"/>
|
|
+ <op id="rsc13a-reload-interval-0s" interval="0s" name="reload" timeout="20s"/>
|
|
+ <op id="rsc13a-start-interval-0s" interval="0s" name="start" timeout="20s"/>
|
|
+ <op id="rsc13a-stop-interval-0s" interval="0s" name="stop" timeout="20s"/>
|
|
+ </operations>
|
|
+ </primitive>
|
|
+ <clone id="rsc13b-clone">
|
|
+ <primitive class="ocf" id="rsc13b" provider="pacemaker" type="Stateful">
|
|
+ <operations>
|
|
+ <op id="rsc13b-migrate_from-interval-0s" interval="0s" name="migrate_from" timeout="20s"/>
|
|
+ <op id="rsc13b-migrate_to-interval-0s" interval="0s" name="migrate_to" timeout="20s"/>
|
|
+ <op id="rsc13b-monitor-interval-10s" interval="10s" name="monitor" timeout="20s" role="Slave"/>
|
|
+ <op id="rsc13b-monitor-interval-11s" interval="11s" name="monitor" timeout="20s" role="Master"/>
|
|
+ <op id="rsc13b-reload-interval-0s" interval="0s" name="reload" timeout="20s"/>
|
|
+ <op id="rsc13b-start-interval-0s" interval="0s" name="start" timeout="20s"/>
|
|
+ <op id="rsc13b-stop-interval-0s" interval="0s" name="stop" timeout="20s"/>
|
|
+ </operations>
|
|
+ </primitive>
|
|
+ <meta_attributes id="rsc13b-clone-meta_attributes">
|
|
+ <nvpair id="rsc13b-clone-meta_attributes-promotable" name="promotable" value="true"/>
|
|
+ </meta_attributes>
|
|
+ </clone>
|
|
+ <primitive class="ocf" id="rsc14b" provider="pacemaker" type="Dummy">
|
|
+ <operations>
|
|
+ <op id="rsc14b-migrate_from-interval-0s" interval="0s" name="migrate_from" timeout="20s"/>
|
|
+ <op id="rsc14b-migrate_to-interval-0s" interval="0s" name="migrate_to" timeout="20s"/>
|
|
+ <op id="rsc14b-monitor-interval-10s" interval="10s" name="monitor" timeout="20s"/>
|
|
+ <op id="rsc14b-reload-interval-0s" interval="0s" name="reload" timeout="20s"/>
|
|
+ <op id="rsc14b-start-interval-0s" interval="0s" name="start" timeout="20s"/>
|
|
+ <op id="rsc14b-stop-interval-0s" interval="0s" name="stop" timeout="20s"/>
|
|
+ </operations>
|
|
+ </primitive>
|
|
+ <clone id="rsc14a-clone">
|
|
+ <primitive class="ocf" id="rsc14a" provider="pacemaker" type="Stateful">
|
|
+ <meta_attributes id="rsc14a-meta_attributes">
|
|
+ <nvpair id="rsc14a-meta_attributes-migration-threshold" name="migration-threshold" value="3"/>
|
|
+ </meta_attributes>
|
|
+ <operations>
|
|
+ <op id="rsc14a-migrate_from-interval-0s" interval="0s" name="migrate_from" timeout="20s"/>
|
|
+ <op id="rsc14a-migrate_to-interval-0s" interval="0s" name="migrate_to" timeout="20s"/>
|
|
+ <op id="rsc14a-monitor-interval-10s" interval="10s" name="monitor" timeout="20s" role="Slave"/>
|
|
+ <op id="rsc14a-monitor-interval-11s" interval="11s" name="monitor" timeout="20s" role="Master"/>
|
|
+ <op id="rsc14a-reload-interval-0s" interval="0s" name="reload" timeout="20s"/>
|
|
+ <op id="rsc14a-start-interval-0s" interval="0s" name="start" timeout="20s"/>
|
|
+ <op id="rsc14a-stop-interval-0s" interval="0s" name="stop" timeout="20s"/>
|
|
+ </operations>
|
|
+ </primitive>
|
|
+ <meta_attributes id="rsc14a-clone-meta_attributes">
|
|
+ <nvpair id="rsc14a-clone-meta_attributes-promotable" name="promotable" value="true"/>
|
|
+ </meta_attributes>
|
|
+ </clone>
|
|
+ </resources>
|
|
+ <constraints>
|
|
+ <rsc_colocation id="colocation-rsc1a-rsc1b-INFINITY" rsc="rsc1a" score="INFINITY" with-rsc="rsc1b" influence="invalid"/>
|
|
+ <rsc_colocation id="colocation-rsc2a-rsc2b-INFINITY" rsc="rsc2a" score="INFINITY" with-rsc="rsc2b" influence="false"/>
|
|
+ <rsc_colocation id="colocation-rsc3a-rsc3b-INFINITY" rsc="rsc3a" score="INFINITY" with-rsc="rsc3b" influence="false"/>
|
|
+ <rsc_colocation id="colocation-rsc4a-rsc4b-INFINITY" rsc="rsc4a" score="INFINITY" with-rsc="rsc4b"/>
|
|
+ <rsc_colocation id="colocation-rsc5a-group5a-INFINITY" rsc="rsc5a" score="INFINITY" with-rsc="group5a" influence="false"/>
|
|
+ <rsc_colocation id="colocation-group6a-rsc6a-INFINITY" rsc="group6a" score="INFINITY" with-rsc="rsc6a" influence="false"/>
|
|
+ <rsc_colocation id="colocation-rsc8a-clone-rsc8b-clone-INFINITY" rsc="rsc8a-clone" score="INFINITY" with-rsc="rsc8b-clone" influence="false"/>
|
|
+ <rsc_colocation id="colocation_set_rarbrc" score="INFINITY" influence="false">
|
|
+ <resource_set id="colocation_set_rarbrc_set">
|
|
+ <resource_ref id="rsc9a"/>
|
|
+ <resource_ref id="rsc9b"/>
|
|
+ <resource_ref id="rsc9c"/>
|
|
+ </resource_set>
|
|
+ </rsc_colocation>
|
|
+ <rsc_colocation id="colocation-rsc10a-bundle10-INFINITY" rsc="rsc10a" score="INFINITY" with-rsc="bundle10" influence="false"/>
|
|
+ <rsc_colocation id="colocation-bundle11-rsc11a-INFINITY" rsc="bundle11" score="INFINITY" with-rsc="rsc11a" influence="false"/>
|
|
+ <rsc_colocation id="colocation-rsc12a-rsc12c-INFINITY" rsc="tag12" score="INFINITY" with-rsc="rsc12c" influence="false"/>
|
|
+ <rsc_colocation id="colocation-rsc13a-rsc13b-clone-INFINITY" rsc="rsc13a" rsc-role="Started" score="INFINITY" with-rsc="rsc13b-clone" with-rsc-role="Master" influence="false"/>
|
|
+ <rsc_colocation id="colocation-rsc14a-clone-rsc14b-INFINITY" rsc="rsc14a-clone" rsc-role="Master" score="INFINITY" with-rsc="rsc14b" with-rsc-role="Started" influence="false"/>
|
|
+ <rsc_location id="location-rsc3b-rhel7-5-INFINITY" node="rhel7-5" rsc="rsc3b" score="INFINITY"/>
|
|
+ <rsc_location id="location-ban" node="rhel7-5" rsc-pattern="!rsc3.*" score="-INFINITY"/>
|
|
+ </constraints>
|
|
+ <fencing-topology/>
|
|
+ <tags>
|
|
+ <tag id="tag12">
|
|
+ <obj_ref id="rsc12a"/>
|
|
+ <obj_ref id="rsc12b"/>
|
|
+ </tag>
|
|
+ </tags>
|
|
+ <op_defaults>
|
|
+ <meta_attributes id="cts-op_defaults-meta">
|
|
+ <nvpair id="cts-op_defaults-timeout" name="timeout" value="90s"/>
|
|
+ </meta_attributes>
|
|
+ </op_defaults>
|
|
+ <alerts>
|
|
+ <alert id="alert-1" path="/var/lib/pacemaker/notify.sh">
|
|
+ <recipient id="alert-1-recipient-1" value="/run/crm/alert.log"/>
|
|
+ </alert>
|
|
+ </alerts>
|
|
+ <rsc_defaults>
|
|
+ <meta_attributes id="rsc_defaults-options">
|
|
+ <nvpair id="rsc_defaults-options-migration-threshold" name="migration-threshold" value="2"/>
|
|
+ <nvpair id="rsc_defaults-options-resource-stickiness" name="resource-stickiness" value="10"/>
|
|
+ </meta_attributes>
|
|
+ </rsc_defaults>
|
|
+ </configuration>
|
|
+ <status>
|
|
+ <node_state id="3" uname="rhel7-3" in_ccm="true" crmd="online" crm-debug-origin="do_state_transition" join="member" expected="member">
|
|
+ <transient_attributes id="3">
|
|
+ <instance_attributes id="status-3">
|
|
+ <nvpair id="status-3-master-rsc13b" name="master-rsc13b" value="10"/>
|
|
+ <nvpair id="status-3-master-rsc14a" name="master-rsc14a" value="5"/>
|
|
+ <nvpair id="status-3-fail-count-rsc7a2.asyncmon_0" name="fail-count-rsc7a2#asyncmon_0" value="2"/>
|
|
+ <nvpair id="status-3-last-failure-rsc7a2.asyncmon_0" name="last-failure-rsc7a2#asyncmon_0" value="1608666508"/>
|
|
+ <nvpair id="status-3-fail-count-rsc4a.asyncmon_0" name="fail-count-rsc4a#asyncmon_0" value="2"/>
|
|
+ <nvpair id="status-3-last-failure-rsc4a.asyncmon_0" name="last-failure-rsc4a#asyncmon_0" value="1608666700"/>
|
|
+ <nvpair id="status-3-fail-count-rsc13a.asyncmon_0" name="fail-count-rsc13a#asyncmon_0" value="2"/>
|
|
+ <nvpair id="status-3-last-failure-rsc13a.asyncmon_0" name="last-failure-rsc13a#asyncmon_0" value="1608667124"/>
|
|
+ </instance_attributes>
|
|
+ </transient_attributes>
|
|
+ <lrm id="3">
|
|
+ <lrm_resources>
|
|
+ <lrm_resource id="rsc1a" type="Dummy" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc1a_last_0" operation_key="rsc1a_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="88:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;88:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-3" call-id="9" rc-code="7" op-status="0" interval="0" last-rc-change="1608662177" last-run="1608662177" exec-time="73" 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_resource>
|
|
+ <lrm_resource id="rsc1b" type="Dummy" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc1b_last_0" operation_key="rsc1b_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="89:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;89:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-3" call-id="13" rc-code="7" op-status="0" interval="0" last-rc-change="1608662177" last-run="1608662177" exec-time="71" 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_resource>
|
|
+ <lrm_resource id="rsc3b" type="Dummy" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc3b_last_0" operation_key="rsc3b_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="93:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;93:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-3" call-id="33" rc-code="7" op-status="0" interval="0" last-rc-change="1608662177" last-run="1608662177" exec-time="35" 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_resource>
|
|
+ <lrm_resource id="rsc5a" type="Dummy" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc5a_last_0" operation_key="rsc5a_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="96:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;96:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-3" call-id="45" rc-code="7" op-status="0" interval="0" last-rc-change="1608662178" last-run="1608662178" exec-time="35" 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_resource>
|
|
+ <lrm_resource id="rsc3a" type="Dummy" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc3a_last_0" operation_key="rsc3a_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="92:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;92:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-3" call-id="29" rc-code="7" op-status="0" interval="0" last-rc-change="1608662177" last-run="1608662177" exec-time="34" 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_resource>
|
|
+ <lrm_resource id="rsc9a" type="Dummy" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc9a_last_0" operation_key="rsc9a_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="106:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;106:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-3" call-id="91" rc-code="7" op-status="0" interval="0" last-rc-change="1608662179" last-run="1608662179" exec-time="68" 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_resource>
|
|
+ <lrm_resource id="rsc9c" type="Dummy" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc9c_last_0" operation_key="rsc9c_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="108:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;108:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-3" call-id="99" rc-code="7" op-status="0" interval="0" last-rc-change="1608662179" last-run="1608662179" exec-time="56" 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_resource>
|
|
+ <lrm_resource id="bundle11-0" type="remote" class="ocf" provider="pacemaker" container="bundle11-docker-0">
|
|
+ <lrm_rsc_op id="bundle11-0_last_0" operation_key="bundle11-0_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="48:2:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;48:2:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-3" call-id="3" rc-code="7" op-status="0" interval="0" last-rc-change="1608662184" last-run="1608662184" exec-time="0" queue-time="0" op-digest="269547ac0372340e5394c2e0ae418d1b" op-force-restart=" server " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
|
|
+ </lrm_resource>
|
|
+ <lrm_resource id="rsc9b" type="Dummy" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc9b_last_0" operation_key="rsc9b_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="107:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;107:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-3" call-id="95" rc-code="7" op-status="0" interval="0" last-rc-change="1608662179" last-run="1608662179" exec-time="61" 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_resource>
|
|
+ <lrm_resource id="rsc11a" type="Dummy" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc11a_last_0" operation_key="rsc11a_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="110:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;110:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-3" call-id="107" rc-code="7" op-status="0" interval="0" last-rc-change="1608662179" last-run="1608662179" exec-time="38" 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_resource>
|
|
+ <lrm_resource id="rsc13a" type="Dummy" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc13a_last_failure_0" operation_key="rsc13a_asyncmon_0" operation="asyncmon" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="204:-1:0:xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx" transition-magic="0:1;204:-1:0:xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx" exit-reason="Simulated failure" on_node="rhel7-3" call-id="204" rc-code="1" op-status="0" interval="0" last-rc-change="1608667124" last-run="1608667124" exec-time="0" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
|
|
+ <lrm_rsc_op id="rsc13a_last_0" operation_key="rsc13a_start_0" operation="start" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="178:54:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;178:54:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-3" call-id="267" rc-code="0" op-status="0" interval="0" last-rc-change="1608667125" last-run="1608667125" exec-time="25" 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="rsc13a_monitor_10000" operation_key="rsc13a_monitor_10000" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="1:54:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;1:54:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-3" call-id="269" rc-code="0" op-status="0" interval="10000" last-rc-change="1608667125" exec-time="23" queue-time="0" op-digest="4811cef7f7f94e3a35a70be7916cb2fd" op-secure-params=" passwd " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
|
|
+ </lrm_resource>
|
|
+ <lrm_resource id="rsc13b" type="Stateful" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc13b_last_0" operation_key="rsc13b_promote_0" operation="promote" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="184:7:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;184:7:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-3" call-id="208" rc-code="0" op-status="0" interval="0" last-rc-change="1608662188" last-run="1608662188" exec-time="57" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
|
|
+ <lrm_rsc_op id="rsc13b_monitor_11000" operation_key="rsc13b_monitor_11000" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="183:55:8:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:8;183:55:8:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-3" call-id="271" rc-code="8" op-status="0" interval="11000" last-rc-change="1608667440" exec-time="24" queue-time="0" op-digest="4811cef7f7f94e3a35a70be7916cb2fd"/>
|
|
+ </lrm_resource>
|
|
+ <lrm_resource id="bundle10-0" type="remote" class="ocf" provider="pacemaker" container="bundle10-docker-0">
|
|
+ <lrm_rsc_op id="bundle10-0_last_0" operation_key="bundle10-0_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="46:1:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;46:1:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-3" call-id="1" rc-code="7" op-status="0" interval="0" last-rc-change="1608662183" last-run="1608662183" exec-time="0" queue-time="0" op-digest="bd3b59fd6cf7aabf0f8a6eed8a0e2a71" op-force-restart=" server " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
|
|
+ </lrm_resource>
|
|
+ <lrm_resource id="rsc7a1" type="Dummy" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc7a1_last_0" operation_key="rsc7a1_start_0" operation="start" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="250:0:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;250:0:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-3" call-id="124" rc-code="0" op-status="0" interval="0" last-rc-change="1608662179" last-run="1608662179" exec-time="76" 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="rsc7a1_monitor_10000" operation_key="rsc7a1_monitor_10000" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="251:0:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;251:0:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-3" call-id="126" rc-code="0" op-status="0" interval="10000" last-rc-change="1608662179" exec-time="68" queue-time="0" op-digest="4811cef7f7f94e3a35a70be7916cb2fd" op-secure-params=" passwd " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
|
|
+ </lrm_resource>
|
|
+ <lrm_resource id="rsc7a2" type="Dummy" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc7a2_last_failure_0" operation_key="rsc7a2_asyncmon_0" operation="asyncmon" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="131:-1:0:xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx" transition-magic="0:1;131:-1:0:xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx" exit-reason="Simulated failure" on_node="rhel7-3" call-id="131" rc-code="1" op-status="0" interval="0" last-rc-change="1608666508" last-run="1608666508" exec-time="0" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
|
|
+ <lrm_rsc_op id="rsc7a2_last_0" operation_key="rsc7a2_start_0" operation="start" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="94:26:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;94:26:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-3" call-id="244" rc-code="0" op-status="0" interval="0" last-rc-change="1608666508" last-run="1608666508" exec-time="29" 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="rsc7a2_monitor_10000" operation_key="rsc7a2_monitor_10000" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="4:26:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;4:26:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-3" call-id="246" rc-code="0" op-status="0" interval="10000" last-rc-change="1608666508" exec-time="28" queue-time="0" op-digest="4811cef7f7f94e3a35a70be7916cb2fd" op-secure-params=" passwd " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
|
|
+ </lrm_resource>
|
|
+ <lrm_resource id="bundle10-1" type="remote" class="ocf" provider="pacemaker" container="bundle10-docker-1">
|
|
+ <lrm_rsc_op id="bundle10-1_last_0" operation_key="bundle10-1_start_0" operation="start" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="142:5:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;142:5:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-3" call-id="4" rc-code="0" op-status="0" interval="0" last-rc-change="1608662186" last-run="1608662186" exec-time="0" queue-time="0" op-digest="98c4879a95dbe1b4a991ce576dd25733" op-force-restart=" server " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
|
|
+ <lrm_rsc_op id="bundle10-1_monitor_30000" operation_key="bundle10-1_monitor_30000" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="146:7:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;146:7:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-3" call-id="5" rc-code="0" op-status="0" interval="30000" last-rc-change="1608662188" exec-time="0" queue-time="0" op-digest="3ad2e1d8539d1e6893d4a32eaae0c4de"/>
|
|
+ </lrm_resource>
|
|
+ <lrm_resource id="bundle10-ip-192.168.122.131" type="IPaddr2" class="ocf" provider="heartbeat">
|
|
+ <lrm_rsc_op id="bundle10-ip-192.168.122.131_last_0" operation_key="bundle10-ip-192.168.122.131_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="114:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;114:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-3" call-id="123" rc-code="7" op-status="0" interval="0" last-rc-change="1608662179" last-run="1608662179" exec-time="242" queue-time="0" op-digest="8656419d4ed26465c724189832393477"/>
|
|
+ </lrm_resource>
|
|
+ <lrm_resource id="bundle10-ip-192.168.122.132" type="IPaddr2" class="ocf" provider="heartbeat">
|
|
+ <lrm_rsc_op id="bundle10-ip-192.168.122.132_last_0" operation_key="bundle10-ip-192.168.122.132_start_0" operation="start" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="304:0:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;304:0:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-3" call-id="177" rc-code="0" op-status="0" interval="0" last-rc-change="1608662181" last-run="1608662181" exec-time="317" queue-time="0" op-digest="c3d96a2922c2946905f760df9a177cd1"/>
|
|
+ <lrm_rsc_op id="bundle10-ip-192.168.122.132_monitor_60000" operation_key="bundle10-ip-192.168.122.132_monitor_60000" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="305:0:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;305:0:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-3" call-id="179" rc-code="0" op-status="0" interval="60000" last-rc-change="1608662182" exec-time="168" queue-time="0" op-digest="d35d9d188df006e76b4a9cc497a32049"/>
|
|
+ </lrm_resource>
|
|
+ <lrm_resource id="rsc2a" type="Dummy" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc2a_last_0" operation_key="rsc2a_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="52:30:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;52:30:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-3" call-id="252" rc-code="7" op-status="0" interval="0" last-rc-change="1608666667" last-run="1608666667" exec-time="22" 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_resource>
|
|
+ <lrm_resource id="rsc2b" type="Dummy" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc2b_last_0" operation_key="rsc2b_stop_0" operation="stop" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="66:16:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;66:16:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-3" call-id="219" rc-code="0" op-status="0" interval="0" last-rc-change="1608666404" last-run="1608666404" exec-time="53" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
|
|
+ </lrm_resource>
|
|
+ <lrm_resource id="rsc4a" type="Dummy" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc4a_last_failure_0" operation_key="rsc4a_asyncmon_0" operation="asyncmon" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="238:-1:0:xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx" transition-magic="0:1;238:-1:0:xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx" exit-reason="Simulated failure" on_node="rhel7-3" call-id="238" rc-code="1" op-status="0" interval="0" last-rc-change="1608666700" last-run="1608666700" exec-time="0" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
|
|
+ <lrm_rsc_op id="rsc4a_last_0" operation_key="rsc4a_start_0" operation="start" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="66:35:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;66:35:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-3" call-id="258" rc-code="0" op-status="0" interval="0" last-rc-change="1608666700" last-run="1608666700" exec-time="29" 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="rsc4a_monitor_10000" operation_key="rsc4a_monitor_10000" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="6:35:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;6:35:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-3" call-id="260" rc-code="0" op-status="0" interval="10000" last-rc-change="1608666700" exec-time="23" queue-time="0" op-digest="4811cef7f7f94e3a35a70be7916cb2fd" op-secure-params=" passwd " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
|
|
+ </lrm_resource>
|
|
+ <lrm_resource id="rsc8a" type="Dummy" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc8a_last_0" operation_key="rsc8a_start_0" operation="start" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="262:0:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;262:0:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-3" call-id="132" rc-code="0" op-status="0" interval="0" last-rc-change="1608662180" last-run="1608662180" exec-time="75" 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="rsc8a_monitor_10000" operation_key="rsc8a_monitor_10000" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="263:0:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;263:0:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-3" call-id="134" rc-code="0" op-status="0" interval="10000" last-rc-change="1608662180" exec-time="62" queue-time="0" op-digest="4811cef7f7f94e3a35a70be7916cb2fd" op-secure-params=" passwd " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
|
|
+ </lrm_resource>
|
|
+ <lrm_resource id="bundle10-docker-0" type="docker" class="ocf" provider="heartbeat">
|
|
+ <lrm_rsc_op id="bundle10-docker-0_last_0" operation_key="bundle10-docker-0_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="115:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;115:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-3" call-id="143" rc-code="7" op-status="0" interval="0" last-rc-change="1608662180" last-run="1608662180" exec-time="305" queue-time="0" op-digest="2c1359b7f24998fceaacce59586cfde8"/>
|
|
+ </lrm_resource>
|
|
+ <lrm_resource id="bundle10-docker-1" type="docker" class="ocf" provider="heartbeat">
|
|
+ <lrm_rsc_op id="bundle10-docker-1_last_0" operation_key="bundle10-docker-1_start_0" operation="start" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="306:0:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;306:0:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-3" call-id="181" rc-code="0" op-status="0" interval="0" last-rc-change="1608662182" last-run="1608662182" exec-time="1165" queue-time="0" op-digest="5dbf2069db92246c65ac9d645a9d431d"/>
|
|
+ <lrm_rsc_op id="bundle10-docker-1_monitor_60000" operation_key="bundle10-docker-1_monitor_60000" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="154:1:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;154:1:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-3" call-id="184" rc-code="0" op-status="0" interval="60000" last-rc-change="1608662183" exec-time="242" queue-time="0" op-digest="6f623154f20a0518c385f28967eb507a"/>
|
|
+ </lrm_resource>
|
|
+ <lrm_resource id="rsc6a2" type="Dummy" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc6a2_last_0" operation_key="rsc6a2_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="100:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;100:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-3" call-id="65" rc-code="7" op-status="0" interval="0" last-rc-change="1608662178" last-run="1608662178" exec-time="72" 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_resource>
|
|
+ <lrm_resource id="rsc8b" type="Dummy" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc8b_last_0" operation_key="rsc8b_start_0" operation="start" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="274:0:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;274:0:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-3" call-id="136" rc-code="0" op-status="0" interval="0" last-rc-change="1608662180" last-run="1608662180" exec-time="107" 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="rsc8b_monitor_10000" operation_key="rsc8b_monitor_10000" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="275:0:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;275:0:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-3" call-id="138" rc-code="0" op-status="0" interval="10000" last-rc-change="1608662180" exec-time="46" queue-time="0" op-digest="4811cef7f7f94e3a35a70be7916cb2fd" op-secure-params=" passwd " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
|
|
+ </lrm_resource>
|
|
+ <lrm_resource id="rsc4b" type="Dummy" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc4b_last_0" operation_key="rsc4b_start_0" operation="start" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="73:16:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;73:16:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-3" call-id="223" rc-code="0" op-status="0" interval="0" last-rc-change="1608666404" last-run="1608666404" exec-time="66" 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="rsc4b_monitor_10000" operation_key="rsc4b_monitor_10000" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="74:16:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;74:16:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-3" call-id="226" rc-code="0" op-status="0" interval="10000" last-rc-change="1608666404" exec-time="100" queue-time="0" op-digest="4811cef7f7f94e3a35a70be7916cb2fd" op-secure-params=" passwd " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
|
|
+ </lrm_resource>
|
|
+ <lrm_resource id="Fencing" type="fence_xvm" class="stonith">
|
|
+ <lrm_rsc_op id="Fencing_last_0" operation_key="Fencing_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="87:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;87:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-3" call-id="5" rc-code="7" op-status="0" interval="0" last-rc-change="1608662177" last-run="1608662177" exec-time="10" queue-time="0" op-digest="422e90c96b7732222706b322138f43c8"/>
|
|
+ </lrm_resource>
|
|
+ <lrm_resource id="rsc6a1" type="Dummy" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc6a1_last_0" operation_key="rsc6a1_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="99:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;99:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-3" call-id="61" rc-code="7" op-status="0" interval="0" last-rc-change="1608662178" last-run="1608662178" exec-time="71" 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_resource>
|
|
+ <lrm_resource id="rsc10a" type="Dummy" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc10a_last_0" operation_key="rsc10a_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="109:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;109:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-3" call-id="103" rc-code="7" op-status="0" interval="0" last-rc-change="1608662179" last-run="1608662179" exec-time="43" 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_resource>
|
|
+ <lrm_resource id="rsc12a" type="Dummy" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc12a_last_0" operation_key="rsc12a_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="111:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;111:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-3" call-id="111" rc-code="7" op-status="0" interval="0" last-rc-change="1608662179" last-run="1608662179" exec-time="39" 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_resource>
|
|
+ <lrm_resource id="rsc12b" type="Dummy" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc12b_last_0" operation_key="rsc12b_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="112:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;112:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-3" call-id="115" rc-code="7" op-status="0" interval="0" last-rc-change="1608662179" last-run="1608662179" exec-time="49" 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_resource>
|
|
+ <lrm_resource id="rsc12c" type="Dummy" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc12c_last_0" operation_key="rsc12c_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="113:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;113:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-3" call-id="119" rc-code="7" op-status="0" interval="0" last-rc-change="1608662179" last-run="1608662179" exec-time="67" 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_resource>
|
|
+ <lrm_resource id="rsc14b" type="Dummy" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc14b_last_0" operation_key="rsc14b_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="48:3:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;48:3:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-3" call-id="193" rc-code="7" op-status="0" interval="0" last-rc-change="1608662185" last-run="1608662185" exec-time="21" 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_resource>
|
|
+ <lrm_resource id="rsc14a" type="Stateful" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc14a_last_0" operation_key="rsc14a_start_0" operation="start" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="202:3:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;202:3:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-3" call-id="199" rc-code="0" op-status="0" interval="0" last-rc-change="1608662185" last-run="1608662185" exec-time="64" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
|
|
+ <lrm_rsc_op id="rsc14a_monitor_10000" operation_key="rsc14a_monitor_10000" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="205:8:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;205:8:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-3" call-id="210" rc-code="0" op-status="0" interval="10000" last-rc-change="1608662188" exec-time="25" queue-time="0" op-digest="4811cef7f7f94e3a35a70be7916cb2fd"/>
|
|
+ </lrm_resource>
|
|
+ <lrm_resource id="rsc6a" type="Dummy" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc6a_last_0" operation_key="rsc6a_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="101:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;101:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-3" call-id="69" rc-code="7" op-status="0" interval="0" last-rc-change="1608662178" last-run="1608662178" exec-time="76" 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_resource>
|
|
+ <lrm_resource id="bundle11-docker-1" type="docker" class="ocf" provider="heartbeat">
|
|
+ <lrm_rsc_op id="bundle11-docker-1_last_0" operation_key="bundle11-docker-1_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="124:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;124:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-3" call-id="167" rc-code="7" op-status="0" interval="0" last-rc-change="1608662181" last-run="1608662181" exec-time="137" queue-time="0" op-digest="8d3651c56ba0fdc98d0b45ffb590226e"/>
|
|
+ </lrm_resource>
|
|
+ <lrm_resource id="rsc5a1" type="Dummy" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc5a1_last_0" operation_key="rsc5a1_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="97:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;97:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-3" call-id="49" rc-code="7" op-status="0" interval="0" last-rc-change="1608662178" last-run="1608662178" exec-time="39" 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_resource>
|
|
+ <lrm_resource id="rsc5a2" type="Dummy" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc5a2_last_0" operation_key="rsc5a2_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="98:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;98:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-3" call-id="57" rc-code="7" op-status="0" interval="0" last-rc-change="1608662178" last-run="1608662178" exec-time="84" 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_resource>
|
|
+ <lrm_resource id="bundle11-docker-0" type="docker" class="ocf" provider="heartbeat">
|
|
+ <lrm_rsc_op id="bundle11-docker-0_last_0" operation_key="bundle11-docker-0_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="121:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;121:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-3" call-id="159" rc-code="7" op-status="0" interval="0" last-rc-change="1608662181" last-run="1608662181" exec-time="102" queue-time="0" op-digest="f1b936bf51a44fa14e140fa5c05411d3"/>
|
|
+ </lrm_resource>
|
|
+ <lrm_resource id="bundle11-ip-192.168.122.134" type="IPaddr2" class="ocf" provider="heartbeat">
|
|
+ <lrm_rsc_op id="bundle11-ip-192.168.122.134_last_0" operation_key="bundle11-ip-192.168.122.134_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="120:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;120:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-3" call-id="155" rc-code="7" op-status="0" interval="0" last-rc-change="1608662181" last-run="1608662181" exec-time="83" queue-time="0" op-digest="4b105bfe443dd9dd577360067aa8ab0f"/>
|
|
+ </lrm_resource>
|
|
+ <lrm_resource id="bundle11-ip-192.168.122.135" type="IPaddr2" class="ocf" provider="heartbeat">
|
|
+ <lrm_rsc_op id="bundle11-ip-192.168.122.135_last_0" operation_key="bundle11-ip-192.168.122.135_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="123:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;123:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-3" call-id="163" rc-code="7" op-status="0" interval="0" last-rc-change="1608662181" last-run="1608662181" exec-time="95" queue-time="0" op-digest="d41ab06b142cfb1ec4fb12415f81ff48"/>
|
|
+ </lrm_resource>
|
|
+ </lrm_resources>
|
|
+ </lrm>
|
|
+ </node_state>
|
|
+ <node_state id="4" uname="rhel7-4" in_ccm="true" crmd="online" crm-debug-origin="do_update_resource" join="member" expected="member">
|
|
+ <transient_attributes id="4">
|
|
+ <instance_attributes id="status-4">
|
|
+ <nvpair id="status-4-master-rsc13b" name="master-rsc13b" value="5"/>
|
|
+ <nvpair id="status-4-fail-count-rsc2a.asyncmon_0" name="fail-count-rsc2a#asyncmon_0" value="2"/>
|
|
+ <nvpair id="status-4-last-failure-rsc2a.asyncmon_0" name="last-failure-rsc2a#asyncmon_0" value="1608666673"/>
|
|
+ <nvpair id="status-4-fail-count-rsc8a.monitor_10000" name="fail-count-rsc8a#monitor_10000" value="2"/>
|
|
+ <nvpair id="status-4-last-failure-rsc8a.monitor_10000" name="last-failure-rsc8a#monitor_10000" value="1608666848"/>
|
|
+ <nvpair id="status-4-fail-count-rsc9c.asyncmon_0" name="fail-count-rsc9c#asyncmon_0" value="2"/>
|
|
+ <nvpair id="status-4-last-failure-rsc9c.asyncmon_0" name="last-failure-rsc9c#asyncmon_0" value="1608666876"/>
|
|
+ <nvpair id="status-4-fail-count-rsc14a.monitor_11000" name="fail-count-rsc14a#monitor_11000" value="2"/>
|
|
+ <nvpair id="status-4-last-failure-rsc14a.monitor_11000" name="last-failure-rsc14a#monitor_11000" value="1608667795"/>
|
|
+ <nvpair id="status-4-fail-count-rsc14a.demote_0" name="fail-count-rsc14a#demote_0" value="2"/>
|
|
+ <nvpair id="status-4-last-failure-rsc14a.demote_0" name="last-failure-rsc14a#demote_0" value="1608667796"/>
|
|
+ <nvpair id="status-4-master-rsc14a" name="master-rsc14a" value="10"/>
|
|
+ </instance_attributes>
|
|
+ </transient_attributes>
|
|
+ <lrm id="4">
|
|
+ <lrm_resources>
|
|
+ <lrm_resource id="rsc1a" type="Dummy" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc1a_last_0" operation_key="rsc1a_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="131:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;131:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-4" call-id="9" rc-code="7" op-status="0" interval="0" last-rc-change="1608662177" last-run="1608662177" exec-time="32" 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_resource>
|
|
+ <lrm_resource id="rsc1b" type="Dummy" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc1b_last_0" operation_key="rsc1b_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="132:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;132:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-4" call-id="13" rc-code="7" op-status="0" interval="0" last-rc-change="1608662177" last-run="1608662177" exec-time="26" 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_resource>
|
|
+ <lrm_resource id="rsc3b" type="Dummy" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc3b_last_0" operation_key="rsc3b_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="136:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;136:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-4" call-id="29" rc-code="7" op-status="0" interval="0" last-rc-change="1608662177" last-run="1608662177" exec-time="27" 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_resource>
|
|
+ <lrm_resource id="rsc5a" type="Dummy" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc5a_last_0" operation_key="rsc5a_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="139:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;139:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-4" call-id="41" rc-code="7" op-status="0" interval="0" last-rc-change="1608662177" last-run="1608662177" exec-time="37" 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_resource>
|
|
+ <lrm_resource id="rsc3a" type="Dummy" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc3a_last_0" operation_key="rsc3a_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="135:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;135:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-4" call-id="25" rc-code="7" op-status="0" interval="0" last-rc-change="1608662177" last-run="1608662177" exec-time="43" 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_resource>
|
|
+ <lrm_resource id="rsc9a" type="Dummy" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc9a_last_0" operation_key="rsc9a_start_0" operation="start" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="282:0:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;282:0:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-4" call-id="128" rc-code="0" op-status="0" interval="0" last-rc-change="1608662180" last-run="1608662180" exec-time="88" 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="rsc9a_monitor_10000" operation_key="rsc9a_monitor_10000" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="283:0:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;283:0:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-4" call-id="130" rc-code="0" op-status="0" interval="10000" last-rc-change="1608662180" exec-time="102" queue-time="0" op-digest="4811cef7f7f94e3a35a70be7916cb2fd" op-secure-params=" passwd " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
|
|
+ </lrm_resource>
|
|
+ <lrm_resource id="rsc9c" type="Dummy" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc9c_last_failure_0" operation_key="rsc9c_asyncmon_0" operation="asyncmon" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="139:-1:0:xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx" transition-magic="0:1;139:-1:0:xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx" exit-reason="Simulated failure" on_node="rhel7-4" call-id="139" rc-code="1" op-status="0" interval="0" last-rc-change="1608666876" last-run="1608666876" exec-time="0" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
|
|
+ <lrm_rsc_op id="rsc9c_last_0" operation_key="rsc9c_start_0" operation="start" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="122:46:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;122:46:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-4" call-id="291" rc-code="0" op-status="0" interval="0" last-rc-change="1608666876" last-run="1608666876" exec-time="25" 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="rsc9c_monitor_10000" operation_key="rsc9c_monitor_10000" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="13:46:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;13:46:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-4" call-id="293" rc-code="0" op-status="0" interval="10000" last-rc-change="1608666876" exec-time="24" queue-time="0" op-digest="4811cef7f7f94e3a35a70be7916cb2fd" op-secure-params=" passwd " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
|
|
+ </lrm_resource>
|
|
+ <lrm_resource id="bundle11-0" type="remote" class="ocf" provider="pacemaker" container="bundle11-docker-0">
|
|
+ <lrm_rsc_op id="bundle11-0_last_0" operation_key="bundle11-0_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="54:1:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;54:1:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-4" call-id="3" rc-code="7" op-status="0" interval="0" last-rc-change="1608662183" last-run="1608662183" exec-time="0" queue-time="0" op-digest="269547ac0372340e5394c2e0ae418d1b" op-force-restart=" server " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
|
|
+ </lrm_resource>
|
|
+ <lrm_resource id="rsc9b" type="Dummy" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc9b_last_0" operation_key="rsc9b_start_0" operation="start" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="284:0:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;284:0:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-4" call-id="132" rc-code="0" op-status="0" interval="0" last-rc-change="1608662180" last-run="1608662180" exec-time="90" 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="rsc9b_monitor_10000" operation_key="rsc9b_monitor_10000" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="285:0:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;285:0:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-4" call-id="134" rc-code="0" op-status="0" interval="10000" last-rc-change="1608662180" exec-time="108" queue-time="0" op-digest="4811cef7f7f94e3a35a70be7916cb2fd" op-secure-params=" passwd " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
|
|
+ </lrm_resource>
|
|
+ <lrm_resource id="rsc11a" type="Dummy" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc11a_last_0" operation_key="rsc11a_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="153:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;153:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-4" call-id="107" rc-code="7" op-status="0" interval="0" last-rc-change="1608662179" last-run="1608662179" exec-time="62" 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_resource>
|
|
+ <lrm_resource id="rsc13a" type="Dummy" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc13a_last_0" operation_key="rsc13a_stop_0" operation="stop" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="179:3:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;179:3:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-4" call-id="213" rc-code="0" op-status="0" interval="0" last-rc-change="1608662185" last-run="1608662185" exec-time="102" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
|
|
+ </lrm_resource>
|
|
+ <lrm_resource id="rsc13b" type="Stateful" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc13b_last_0" operation_key="rsc13b_start_0" operation="start" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="346:0:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;346:0:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-4" call-id="197" rc-code="0" op-status="0" interval="0" last-rc-change="1608662182" last-run="1608662182" exec-time="70" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
|
|
+ <lrm_rsc_op id="rsc13b_monitor_10000" operation_key="rsc13b_monitor_10000" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="187:3:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;187:3:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-4" call-id="216" rc-code="0" op-status="0" interval="10000" last-rc-change="1608662185" exec-time="56" queue-time="0" op-digest="4811cef7f7f94e3a35a70be7916cb2fd"/>
|
|
+ </lrm_resource>
|
|
+ <lrm_resource id="bundle10-0" type="remote" class="ocf" provider="pacemaker" container="bundle10-docker-0">
|
|
+ <lrm_rsc_op id="bundle10-0_last_0" operation_key="bundle10-0_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="52:1:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;52:1:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-4" call-id="1" rc-code="7" op-status="0" interval="0" last-rc-change="1608662183" last-run="1608662183" exec-time="0" queue-time="0" op-digest="bd3b59fd6cf7aabf0f8a6eed8a0e2a71" op-force-restart=" server " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
|
|
+ </lrm_resource>
|
|
+ <lrm_resource id="rsc7a1" type="Dummy" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc7a1_last_0" operation_key="rsc7a1_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="145:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;145:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-4" call-id="65" rc-code="7" op-status="0" interval="0" last-rc-change="1608662178" last-run="1608662178" exec-time="90" 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_resource>
|
|
+ <lrm_resource id="rsc7a2" type="Dummy" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc7a2_last_0" operation_key="rsc7a2_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="146:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;146:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-4" call-id="77" rc-code="7" op-status="0" interval="0" last-rc-change="1608662179" last-run="1608662179" exec-time="85" 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_resource>
|
|
+ <lrm_resource id="bundle10-1" type="remote" class="ocf" provider="pacemaker" container="bundle10-docker-1">
|
|
+ <lrm_rsc_op id="bundle10-1_last_0" operation_key="bundle10-1_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="53:1:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;53:1:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-4" call-id="2" rc-code="7" op-status="0" interval="0" last-rc-change="1608662183" last-run="1608662183" exec-time="0" queue-time="0" op-digest="98c4879a95dbe1b4a991ce576dd25733" op-force-restart=" server " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
|
|
+ </lrm_resource>
|
|
+ <lrm_resource id="bundle10-ip-192.168.122.131" type="IPaddr2" class="ocf" provider="heartbeat">
|
|
+ <lrm_rsc_op id="bundle10-ip-192.168.122.131_last_0" operation_key="bundle10-ip-192.168.122.131_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="157:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;157:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-4" call-id="155" rc-code="7" op-status="0" interval="0" last-rc-change="1608662181" last-run="1608662181" exec-time="116" queue-time="0" op-digest="8656419d4ed26465c724189832393477"/>
|
|
+ </lrm_resource>
|
|
+ <lrm_resource id="bundle10-ip-192.168.122.132" type="IPaddr2" class="ocf" provider="heartbeat">
|
|
+ <lrm_rsc_op id="bundle10-ip-192.168.122.132_last_0" operation_key="bundle10-ip-192.168.122.132_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="160:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;160:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-4" call-id="163" rc-code="7" op-status="0" interval="0" last-rc-change="1608662181" last-run="1608662181" exec-time="135" queue-time="0" op-digest="c3d96a2922c2946905f760df9a177cd1"/>
|
|
+ </lrm_resource>
|
|
+ <lrm_resource id="rsc2a" type="Dummy" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc2a_last_failure_0" operation_key="rsc2a_asyncmon_0" operation="asyncmon" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="236:-1:0:xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx" transition-magic="0:1;236:-1:0:xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx" exit-reason="Simulated failure" on_node="rhel7-4" call-id="236" rc-code="1" op-status="0" interval="0" last-rc-change="1608666673" last-run="1608666673" exec-time="0" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
|
|
+ <lrm_rsc_op id="rsc2a_last_0" operation_key="rsc2a_start_0" operation="start" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="62:32:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;62:32:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-4" call-id="268" rc-code="0" op-status="0" interval="0" last-rc-change="1608666673" last-run="1608666673" exec-time="24" 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="rsc2a_monitor_10000" operation_key="rsc2a_monitor_10000" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="16:32:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;16:32:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-4" call-id="270" rc-code="0" op-status="0" interval="10000" last-rc-change="1608666673" exec-time="22" queue-time="0" op-digest="4811cef7f7f94e3a35a70be7916cb2fd" op-secure-params=" passwd " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
|
|
+ </lrm_resource>
|
|
+ <lrm_resource id="rsc2b" type="Dummy" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc2b_last_0" operation_key="rsc2b_start_0" operation="start" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="67:16:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;67:16:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-4" call-id="233" rc-code="0" op-status="0" interval="0" last-rc-change="1608666404" last-run="1608666404" exec-time="72" 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="rsc2b_monitor_10000" operation_key="rsc2b_monitor_10000" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="68:16:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;68:16:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-4" call-id="237" rc-code="0" op-status="0" interval="10000" last-rc-change="1608666404" exec-time="66" queue-time="0" op-digest="4811cef7f7f94e3a35a70be7916cb2fd" op-secure-params=" passwd " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
|
|
+ </lrm_resource>
|
|
+ <lrm_resource id="rsc4a" type="Dummy" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc4a_last_0" operation_key="rsc4a_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="53:33:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;53:33:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-4" call-id="276" rc-code="7" op-status="0" interval="0" last-rc-change="1608666695" last-run="1608666695" exec-time="48" 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_resource>
|
|
+ <lrm_resource id="rsc8a" type="Dummy" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc8a_last_failure_0" operation_key="rsc8a_monitor_10000" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="259:0:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;259:0:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-4" call-id="118" rc-code="7" op-status="0" interval="10000" last-rc-change="1608666848" exec-time="0" queue-time="0" op-digest="4811cef7f7f94e3a35a70be7916cb2fd" op-secure-params=" passwd " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
|
|
+ <lrm_rsc_op id="rsc8a_last_0" operation_key="rsc8a_start_0" operation="start" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="100:44:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;100:44:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-4" call-id="282" rc-code="0" op-status="0" interval="0" last-rc-change="1608666849" last-run="1608666849" exec-time="26" 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="rsc8a_monitor_10000" operation_key="rsc8a_monitor_10000" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="18:44:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;18:44:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-4" call-id="284" rc-code="0" op-status="0" interval="10000" last-rc-change="1608666849" exec-time="23" queue-time="0" op-digest="4811cef7f7f94e3a35a70be7916cb2fd" op-secure-params=" passwd " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
|
|
+ </lrm_resource>
|
|
+ <lrm_resource id="bundle10-docker-0" type="docker" class="ocf" provider="heartbeat">
|
|
+ <lrm_rsc_op id="bundle10-docker-0_last_0" operation_key="bundle10-docker-0_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="158:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;158:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-4" call-id="159" rc-code="7" op-status="0" interval="0" last-rc-change="1608662181" last-run="1608662181" exec-time="190" queue-time="0" op-digest="2c1359b7f24998fceaacce59586cfde8"/>
|
|
+ </lrm_resource>
|
|
+ <lrm_resource id="bundle10-docker-1" type="docker" class="ocf" provider="heartbeat">
|
|
+ <lrm_rsc_op id="bundle10-docker-1_last_0" operation_key="bundle10-docker-1_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="161:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;161:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-4" call-id="167" rc-code="7" op-status="0" interval="0" last-rc-change="1608662181" last-run="1608662181" exec-time="172" queue-time="0" op-digest="5dbf2069db92246c65ac9d645a9d431d"/>
|
|
+ </lrm_resource>
|
|
+ <lrm_resource id="rsc6a2" type="Dummy" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc6a2_last_0" operation_key="rsc6a2_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="143:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;143:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-4" call-id="57" rc-code="7" op-status="0" interval="0" last-rc-change="1608662178" last-run="1608662178" exec-time="115" 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_resource>
|
|
+ <lrm_resource id="rsc8b" type="Dummy" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc8b_last_0" operation_key="rsc8b_start_0" operation="start" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="270:0:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;270:0:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-4" call-id="120" rc-code="0" op-status="0" interval="0" last-rc-change="1608662180" last-run="1608662180" exec-time="81" 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="rsc8b_monitor_10000" operation_key="rsc8b_monitor_10000" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="271:0:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;271:0:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-4" call-id="122" rc-code="0" op-status="0" interval="10000" last-rc-change="1608662180" exec-time="88" queue-time="0" op-digest="4811cef7f7f94e3a35a70be7916cb2fd" op-secure-params=" passwd " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
|
|
+ </lrm_resource>
|
|
+ <lrm_resource id="rsc4b" type="Dummy" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc4b_last_0" operation_key="rsc4b_stop_0" operation="stop" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="72:16:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;72:16:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-4" call-id="227" rc-code="0" op-status="0" interval="0" last-rc-change="1608666404" last-run="1608666404" exec-time="83" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
|
|
+ </lrm_resource>
|
|
+ <lrm_resource id="Fencing" type="fence_xvm" class="stonith">
|
|
+ <lrm_rsc_op id="Fencing_last_0" operation_key="Fencing_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="130:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;130:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-4" call-id="5" rc-code="7" op-status="0" interval="0" last-rc-change="1608662177" last-run="1608662177" exec-time="9" queue-time="0" op-digest="422e90c96b7732222706b322138f43c8"/>
|
|
+ </lrm_resource>
|
|
+ <lrm_resource id="rsc6a1" type="Dummy" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc6a1_last_0" operation_key="rsc6a1_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="142:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;142:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-4" call-id="53" rc-code="7" op-status="0" interval="0" last-rc-change="1608662178" last-run="1608662178" exec-time="125" 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_resource>
|
|
+ <lrm_resource id="rsc10a" type="Dummy" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc10a_last_0" operation_key="rsc10a_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="152:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;152:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-4" call-id="103" rc-code="7" op-status="0" interval="0" last-rc-change="1608662179" last-run="1608662179" exec-time="53" 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_resource>
|
|
+ <lrm_resource id="rsc12a" type="Dummy" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc12a_last_0" operation_key="rsc12a_stop_0" operation="stop" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="131:27:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;131:27:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-4" call-id="244" rc-code="0" op-status="0" interval="0" last-rc-change="1608666620" last-run="1608666620" exec-time="200" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
|
|
+ </lrm_resource>
|
|
+ <lrm_resource id="rsc12b" type="Dummy" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc12b_last_0" operation_key="rsc12b_stop_0" operation="stop" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="134:27:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;134:27:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-4" call-id="246" rc-code="0" op-status="0" interval="0" last-rc-change="1608666620" last-run="1608666620" exec-time="182" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
|
|
+ </lrm_resource>
|
|
+ <lrm_resource id="rsc12c" type="Dummy" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc12c_last_0" operation_key="rsc12c_stop_0" operation="stop" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="128:28:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;128:28:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-4" call-id="252" rc-code="0" op-status="0" interval="0" last-rc-change="1608666621" last-run="1608666621" exec-time="135" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
|
|
+ </lrm_resource>
|
|
+ <lrm_resource id="rsc14b" type="Dummy" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc14b_last_0" operation_key="rsc14b_start_0" operation="start" crm-debug-origin="do_update_resource" crm_feature_set="3.6.3" transition-key="199:73:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;199:73:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-4" call-id="338" rc-code="0" op-status="0" interval="0" last-rc-change="1608667874" last-run="1608667874" exec-time="52" 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="rsc14b_monitor_10000" operation_key="rsc14b_monitor_10000" operation="monitor" crm-debug-origin="do_update_resource" crm_feature_set="3.6.3" transition-key="198:74:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;198:74:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-4" call-id="340" rc-code="0" op-status="0" interval="10000" last-rc-change="1608667874" exec-time="74" queue-time="0" op-digest="4811cef7f7f94e3a35a70be7916cb2fd" op-secure-params=" passwd " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
|
|
+ </lrm_resource>
|
|
+ <lrm_resource id="rsc14a" type="Stateful" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc14a_last_failure_0" operation_key="rsc14a_demote_0" operation="demote" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="204:68:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;204:68:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-4" call-id="329" rc-code="7" op-status="0" interval="0" last-rc-change="1608667795" last-run="1608667795" exec-time="50" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
|
|
+ <lrm_rsc_op id="rsc14a_last_0" operation_key="rsc14a_promote_0" operation="promote" crm-debug-origin="do_update_resource" crm_feature_set="3.6.3" transition-key="204:75:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;204:75:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-4" call-id="344" rc-code="0" op-status="0" interval="0" last-rc-change="1608667874" last-run="1608667874" exec-time="72" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
|
|
+ <lrm_rsc_op id="rsc14a_monitor_11000" operation_key="rsc14a_monitor_11000" operation="monitor" crm-debug-origin="do_update_resource" crm_feature_set="3.6.3" transition-key="206:76:8:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:8;206:76:8:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-4" call-id="346" rc-code="8" op-status="0" interval="11000" last-rc-change="1608667874" exec-time="47" queue-time="0" op-digest="4811cef7f7f94e3a35a70be7916cb2fd"/>
|
|
+ </lrm_resource>
|
|
+ <lrm_resource id="rsc6a" type="Dummy" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc6a_last_0" operation_key="rsc6a_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="144:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;144:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-4" call-id="61" rc-code="7" op-status="0" interval="0" last-rc-change="1608662178" last-run="1608662178" exec-time="94" 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_resource>
|
|
+ <lrm_resource id="bundle11-docker-1" type="docker" class="ocf" provider="heartbeat">
|
|
+ <lrm_rsc_op id="bundle11-docker-1_last_0" operation_key="bundle11-docker-1_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="167:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;167:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-4" call-id="183" rc-code="7" op-status="0" interval="0" last-rc-change="1608662182" last-run="1608662182" exec-time="85" queue-time="0" op-digest="8d3651c56ba0fdc98d0b45ffb590226e"/>
|
|
+ </lrm_resource>
|
|
+ <lrm_resource id="rsc5a1" type="Dummy" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc5a1_last_0" operation_key="rsc5a1_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="140:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;140:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-4" call-id="45" rc-code="7" op-status="0" interval="0" last-rc-change="1608662177" last-run="1608662177" exec-time="70" 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_resource>
|
|
+ <lrm_resource id="rsc5a2" type="Dummy" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc5a2_last_0" operation_key="rsc5a2_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="141:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;141:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-4" call-id="49" rc-code="7" op-status="0" interval="0" last-rc-change="1608662177" last-run="1608662177" exec-time="121" 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_resource>
|
|
+ <lrm_resource id="bundle11-docker-0" type="docker" class="ocf" provider="heartbeat">
|
|
+ <lrm_rsc_op id="bundle11-docker-0_last_0" operation_key="bundle11-docker-0_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="164:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;164:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-4" call-id="175" rc-code="7" op-status="0" interval="0" last-rc-change="1608662182" last-run="1608662182" exec-time="76" queue-time="0" op-digest="f1b936bf51a44fa14e140fa5c05411d3"/>
|
|
+ </lrm_resource>
|
|
+ <lrm_resource id="bundle11-ip-192.168.122.134" type="IPaddr2" class="ocf" provider="heartbeat">
|
|
+ <lrm_rsc_op id="bundle11-ip-192.168.122.134_last_0" operation_key="bundle11-ip-192.168.122.134_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="163:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;163:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-4" call-id="171" rc-code="7" op-status="0" interval="0" last-rc-change="1608662182" last-run="1608662182" exec-time="114" queue-time="0" op-digest="4b105bfe443dd9dd577360067aa8ab0f"/>
|
|
+ </lrm_resource>
|
|
+ <lrm_resource id="bundle11-ip-192.168.122.135" type="IPaddr2" class="ocf" provider="heartbeat">
|
|
+ <lrm_rsc_op id="bundle11-ip-192.168.122.135_last_0" operation_key="bundle11-ip-192.168.122.135_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="166:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;166:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-4" call-id="179" rc-code="7" op-status="0" interval="0" last-rc-change="1608662182" last-run="1608662182" exec-time="103" queue-time="0" op-digest="d41ab06b142cfb1ec4fb12415f81ff48"/>
|
|
+ </lrm_resource>
|
|
+ </lrm_resources>
|
|
+ </lrm>
|
|
+ </node_state>
|
|
+ <node_state id="5" uname="rhel7-5" in_ccm="true" crmd="online" crm-debug-origin="do_state_transition" join="member" expected="member">
|
|
+ <transient_attributes id="5">
|
|
+ <instance_attributes id="status-5">
|
|
+ <nvpair id="status-5-fail-count-rsc3a.asyncmon_0" name="fail-count-rsc3a#asyncmon_0" value="2"/>
|
|
+ <nvpair id="status-5-last-failure-rsc3a.asyncmon_0" name="last-failure-rsc3a#asyncmon_0" value="1608666416"/>
|
|
+ </instance_attributes>
|
|
+ </transient_attributes>
|
|
+ <lrm id="5">
|
|
+ <lrm_resources>
|
|
+ <lrm_resource id="rsc1a" type="Dummy" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc1a_last_0" operation_key="rsc1a_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="174:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;174:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-5" call-id="9" rc-code="7" op-status="0" interval="0" last-rc-change="1608662177" last-run="1608662177" exec-time="24" 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_resource>
|
|
+ <lrm_resource id="rsc1b" type="Dummy" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc1b_last_0" operation_key="rsc1b_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="175:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;175:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-5" call-id="13" rc-code="7" op-status="0" interval="0" last-rc-change="1608662177" last-run="1608662177" exec-time="26" 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_resource>
|
|
+ <lrm_resource id="rsc3b" type="Dummy" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc3b_last_0" operation_key="rsc3b_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="179:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;179:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-5" call-id="29" rc-code="7" op-status="0" interval="0" last-rc-change="1608662177" last-run="1608662177" exec-time="27" 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_resource>
|
|
+ <lrm_resource id="rsc5a" type="Dummy" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc5a_last_0" operation_key="rsc5a_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="182:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;182:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-5" call-id="41" rc-code="7" op-status="0" interval="0" last-rc-change="1608662177" last-run="1608662177" exec-time="35" 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_resource>
|
|
+ <lrm_resource id="rsc3a" type="Dummy" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc3a_last_failure_0" operation_key="rsc3a_asyncmon_0" operation="asyncmon" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="26:-1:0:xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx" transition-magic="0:1;26:-1:0:xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx" exit-reason="Simulated failure" on_node="rhel7-5" call-id="26" rc-code="1" op-status="0" interval="0" last-rc-change="1608666416" last-run="1608666416" exec-time="0" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
|
|
+ <lrm_rsc_op id="rsc3a_last_0" operation_key="rsc3a_stop_0" operation="stop" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="24:18:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;24:18:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-5" call-id="166" rc-code="0" op-status="0" interval="0" last-rc-change="1608666417" last-run="1608666417" exec-time="23" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
|
|
+ </lrm_resource>
|
|
+ <lrm_resource id="rsc9a" type="Dummy" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc9a_last_0" operation_key="rsc9a_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="192:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;192:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-5" call-id="83" rc-code="7" op-status="0" interval="0" last-rc-change="1608662178" last-run="1608662178" exec-time="45" 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_resource>
|
|
+ <lrm_resource id="rsc9c" type="Dummy" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc9c_last_0" operation_key="rsc9c_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="194:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;194:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-5" call-id="91" rc-code="7" op-status="0" interval="0" last-rc-change="1608662178" last-run="1608662178" exec-time="75" 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_resource>
|
|
+ <lrm_resource id="bundle11-0" type="remote" class="ocf" provider="pacemaker" container="bundle11-docker-0">
|
|
+ <lrm_rsc_op id="bundle11-0_last_0" operation_key="bundle11-0_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="59:1:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;59:1:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-5" call-id="3" rc-code="7" op-status="0" interval="0" last-rc-change="1608662183" last-run="1608662183" exec-time="0" queue-time="0" op-digest="269547ac0372340e5394c2e0ae418d1b" op-force-restart=" server " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
|
|
+ </lrm_resource>
|
|
+ <lrm_resource id="rsc9b" type="Dummy" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc9b_last_0" operation_key="rsc9b_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="193:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;193:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-5" call-id="87" rc-code="7" op-status="0" interval="0" last-rc-change="1608662178" last-run="1608662178" exec-time="54" 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_resource>
|
|
+ <lrm_resource id="rsc11a" type="Dummy" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc11a_last_0" operation_key="rsc11a_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="196:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;196:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-5" call-id="99" rc-code="7" op-status="0" interval="0" last-rc-change="1608662178" last-run="1608662178" exec-time="76" 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_resource>
|
|
+ <lrm_resource id="rsc13a" type="Dummy" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc13a_last_0" operation_key="rsc13a_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="212:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;212:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-5" call-id="147" rc-code="7" op-status="0" interval="0" last-rc-change="1608662180" last-run="1608662180" exec-time="43" 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_resource>
|
|
+ <lrm_resource id="rsc13b" type="Stateful" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc13b_last_0" operation_key="rsc13b_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="213:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;213:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-5" call-id="152" rc-code="7" op-status="0" interval="0" last-rc-change="1608662180" last-run="1608662180" exec-time="54" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
|
|
+ </lrm_resource>
|
|
+ <lrm_resource id="bundle10-0" type="remote" class="ocf" provider="pacemaker" container="bundle10-docker-0">
|
|
+ <lrm_rsc_op id="bundle10-0_last_0" operation_key="bundle10-0_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="57:1:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;57:1:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-5" call-id="1" rc-code="7" op-status="0" interval="0" last-rc-change="1608662183" last-run="1608662183" exec-time="0" queue-time="0" op-digest="bd3b59fd6cf7aabf0f8a6eed8a0e2a71" op-force-restart=" server " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
|
|
+ </lrm_resource>
|
|
+ <lrm_resource id="rsc7a1" type="Dummy" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc7a1_last_0" operation_key="rsc7a1_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="188:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;188:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-5" call-id="65" rc-code="7" op-status="0" interval="0" last-rc-change="1608662177" last-run="1608662177" exec-time="35" 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_resource>
|
|
+ <lrm_resource id="rsc7a2" type="Dummy" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc7a2_last_0" operation_key="rsc7a2_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="189:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;189:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-5" call-id="69" rc-code="7" op-status="0" interval="0" last-rc-change="1608662178" last-run="1608662178" exec-time="28" 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_resource>
|
|
+ <lrm_resource id="bundle10-1" type="remote" class="ocf" provider="pacemaker" container="bundle10-docker-1">
|
|
+ <lrm_rsc_op id="bundle10-1_last_0" operation_key="bundle10-1_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="58:1:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;58:1:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-5" call-id="2" rc-code="7" op-status="0" interval="0" last-rc-change="1608662183" last-run="1608662183" exec-time="0" queue-time="0" op-digest="98c4879a95dbe1b4a991ce576dd25733" op-force-restart=" server " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
|
|
+ </lrm_resource>
|
|
+ <lrm_resource id="bundle10-ip-192.168.122.131" type="IPaddr2" class="ocf" provider="heartbeat">
|
|
+ <lrm_rsc_op id="bundle10-ip-192.168.122.131_last_0" operation_key="bundle10-ip-192.168.122.131_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="200:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;200:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-5" call-id="115" rc-code="7" op-status="0" interval="0" last-rc-change="1608662178" last-run="1608662178" exec-time="249" queue-time="0" op-digest="8656419d4ed26465c724189832393477"/>
|
|
+ </lrm_resource>
|
|
+ <lrm_resource id="bundle10-ip-192.168.122.132" type="IPaddr2" class="ocf" provider="heartbeat">
|
|
+ <lrm_rsc_op id="bundle10-ip-192.168.122.132_last_0" operation_key="bundle10-ip-192.168.122.132_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="203:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;203:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-5" call-id="123" rc-code="7" op-status="0" interval="0" last-rc-change="1608662179" last-run="1608662179" exec-time="214" queue-time="0" op-digest="c3d96a2922c2946905f760df9a177cd1"/>
|
|
+ </lrm_resource>
|
|
+ <lrm_resource id="rsc2a" type="Dummy" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc2a_last_0" operation_key="rsc2a_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="176:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;176:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-5" call-id="17" rc-code="7" op-status="0" interval="0" last-rc-change="1608662177" last-run="1608662177" exec-time="36" 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_resource>
|
|
+ <lrm_resource id="rsc2b" type="Dummy" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc2b_last_0" operation_key="rsc2b_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="177:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;177:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-5" call-id="21" rc-code="7" op-status="0" interval="0" last-rc-change="1608662177" last-run="1608662177" exec-time="28" 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_resource>
|
|
+ <lrm_resource id="rsc4a" type="Dummy" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc4a_last_0" operation_key="rsc4a_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="180:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;180:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-5" call-id="33" rc-code="7" op-status="0" interval="0" last-rc-change="1608662177" last-run="1608662177" exec-time="38" 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_resource>
|
|
+ <lrm_resource id="rsc8a" type="Dummy" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc8a_last_0" operation_key="rsc8a_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="190:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;190:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-5" call-id="74" rc-code="7" op-status="0" interval="0" last-rc-change="1608662178" last-run="1608662178" exec-time="39" 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_resource>
|
|
+ <lrm_resource id="bundle10-docker-0" type="docker" class="ocf" provider="heartbeat">
|
|
+ <lrm_rsc_op id="bundle10-docker-0_last_0" operation_key="bundle10-docker-0_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="201:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;201:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-5" call-id="119" rc-code="7" op-status="0" interval="0" last-rc-change="1608662179" last-run="1608662179" exec-time="241" queue-time="0" op-digest="2c1359b7f24998fceaacce59586cfde8"/>
|
|
+ </lrm_resource>
|
|
+ <lrm_resource id="bundle10-docker-1" type="docker" class="ocf" provider="heartbeat">
|
|
+ <lrm_rsc_op id="bundle10-docker-1_last_0" operation_key="bundle10-docker-1_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="204:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;204:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-5" call-id="127" rc-code="7" op-status="0" interval="0" last-rc-change="1608662179" last-run="1608662179" exec-time="239" queue-time="0" op-digest="5dbf2069db92246c65ac9d645a9d431d"/>
|
|
+ </lrm_resource>
|
|
+ <lrm_resource id="rsc6a2" type="Dummy" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc6a2_last_0" operation_key="rsc6a2_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="186:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;186:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-5" call-id="57" rc-code="7" op-status="0" interval="0" last-rc-change="1608662177" last-run="1608662177" exec-time="33" 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_resource>
|
|
+ <lrm_resource id="rsc8b" type="Dummy" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc8b_last_0" operation_key="rsc8b_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="191:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;191:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-5" call-id="79" rc-code="7" op-status="0" interval="0" last-rc-change="1608662178" last-run="1608662178" exec-time="36" 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_resource>
|
|
+ <lrm_resource id="rsc4b" type="Dummy" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc4b_last_0" operation_key="rsc4b_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="181:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;181:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-5" call-id="37" rc-code="7" op-status="0" interval="0" last-rc-change="1608662177" last-run="1608662177" exec-time="32" 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_resource>
|
|
+ <lrm_resource id="Fencing" type="fence_xvm" class="stonith">
|
|
+ <lrm_rsc_op id="Fencing_last_0" operation_key="Fencing_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="173:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;173:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-5" call-id="5" rc-code="7" op-status="0" interval="0" last-rc-change="1608662177" last-run="1608662177" exec-time="5" queue-time="0" op-digest="422e90c96b7732222706b322138f43c8"/>
|
|
+ </lrm_resource>
|
|
+ <lrm_resource id="rsc6a1" type="Dummy" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc6a1_last_0" operation_key="rsc6a1_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="185:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;185:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-5" call-id="53" rc-code="7" op-status="0" interval="0" last-rc-change="1608662177" last-run="1608662177" exec-time="44" 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_resource>
|
|
+ <lrm_resource id="rsc10a" type="Dummy" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc10a_last_0" operation_key="rsc10a_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="195:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;195:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-5" call-id="95" rc-code="7" op-status="0" interval="0" last-rc-change="1608662178" last-run="1608662178" exec-time="76" 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_resource>
|
|
+ <lrm_resource id="rsc12a" type="Dummy" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc12a_last_0" operation_key="rsc12a_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="197:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;197:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-5" call-id="103" rc-code="7" op-status="0" interval="0" last-rc-change="1608662178" last-run="1608662178" exec-time="67" 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_resource>
|
|
+ <lrm_resource id="rsc12b" type="Dummy" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc12b_last_0" operation_key="rsc12b_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="198:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;198:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-5" call-id="107" rc-code="7" op-status="0" interval="0" last-rc-change="1608662178" last-run="1608662178" exec-time="70" 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_resource>
|
|
+ <lrm_resource id="rsc12c" type="Dummy" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc12c_last_0" operation_key="rsc12c_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="199:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;199:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-5" call-id="111" rc-code="7" op-status="0" interval="0" last-rc-change="1608662178" last-run="1608662178" exec-time="75" 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_resource>
|
|
+ <lrm_resource id="rsc14b" type="Dummy" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc14b_last_0" operation_key="rsc14b_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="214:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;214:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-5" call-id="156" rc-code="7" op-status="0" interval="0" last-rc-change="1608662181" last-run="1608662181" exec-time="31" 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_resource>
|
|
+ <lrm_resource id="rsc14a" type="Stateful" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc14a_last_0" operation_key="rsc14a_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="215:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;215:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-5" call-id="161" rc-code="7" op-status="0" interval="0" last-rc-change="1608662181" last-run="1608662181" exec-time="45" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
|
|
+ </lrm_resource>
|
|
+ <lrm_resource id="rsc6a" type="Dummy" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc6a_last_0" operation_key="rsc6a_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="187:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;187:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-5" call-id="61" rc-code="7" op-status="0" interval="0" last-rc-change="1608662177" last-run="1608662177" exec-time="42" 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_resource>
|
|
+ <lrm_resource id="bundle11-docker-1" type="docker" class="ocf" provider="heartbeat">
|
|
+ <lrm_rsc_op id="bundle11-docker-1_last_0" operation_key="bundle11-docker-1_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="210:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;210:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-5" call-id="143" rc-code="7" op-status="0" interval="0" last-rc-change="1608662180" last-run="1608662180" exec-time="182" queue-time="0" op-digest="8d3651c56ba0fdc98d0b45ffb590226e"/>
|
|
+ </lrm_resource>
|
|
+ <lrm_resource id="rsc5a1" type="Dummy" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc5a1_last_0" operation_key="rsc5a1_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="183:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;183:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-5" call-id="45" rc-code="7" op-status="0" interval="0" last-rc-change="1608662177" last-run="1608662177" exec-time="23" 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_resource>
|
|
+ <lrm_resource id="rsc5a2" type="Dummy" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc5a2_last_0" operation_key="rsc5a2_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="184:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;184:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-5" call-id="49" rc-code="7" op-status="0" interval="0" last-rc-change="1608662177" last-run="1608662177" exec-time="34" 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_resource>
|
|
+ <lrm_resource id="bundle11-docker-0" type="docker" class="ocf" provider="heartbeat">
|
|
+ <lrm_rsc_op id="bundle11-docker-0_last_0" operation_key="bundle11-docker-0_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="207:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;207:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-5" call-id="135" rc-code="7" op-status="0" interval="0" last-rc-change="1608662180" last-run="1608662180" exec-time="211" queue-time="0" op-digest="f1b936bf51a44fa14e140fa5c05411d3"/>
|
|
+ </lrm_resource>
|
|
+ <lrm_resource id="bundle11-ip-192.168.122.134" type="IPaddr2" class="ocf" provider="heartbeat">
|
|
+ <lrm_rsc_op id="bundle11-ip-192.168.122.134_last_0" operation_key="bundle11-ip-192.168.122.134_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="206:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;206:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-5" call-id="131" rc-code="7" op-status="0" interval="0" last-rc-change="1608662179" last-run="1608662179" exec-time="202" queue-time="0" op-digest="4b105bfe443dd9dd577360067aa8ab0f"/>
|
|
+ </lrm_resource>
|
|
+ <lrm_resource id="bundle11-ip-192.168.122.135" type="IPaddr2" class="ocf" provider="heartbeat">
|
|
+ <lrm_rsc_op id="bundle11-ip-192.168.122.135_last_0" operation_key="bundle11-ip-192.168.122.135_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="209:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;209:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-5" call-id="139" rc-code="7" op-status="0" interval="0" last-rc-change="1608662180" last-run="1608662180" exec-time="235" queue-time="0" op-digest="d41ab06b142cfb1ec4fb12415f81ff48"/>
|
|
+ </lrm_resource>
|
|
+ </lrm_resources>
|
|
+ </lrm>
|
|
+ </node_state>
|
|
+ <node_state id="1" uname="rhel7-1" in_ccm="true" crmd="online" crm-debug-origin="do_state_transition" join="member" expected="member">
|
|
+ <transient_attributes id="1">
|
|
+ <instance_attributes id="status-1">
|
|
+ <nvpair id="status-1-master-rsc13b" name="master-rsc13b" value="5"/>
|
|
+ <nvpair id="status-1-master-rsc14a" name="master-rsc14a" value="5"/>
|
|
+ <nvpair id="status-1-fail-count-rsc5a.asyncmon_0" name="fail-count-rsc5a#asyncmon_0" value="2"/>
|
|
+ <nvpair id="status-1-last-failure-rsc5a.asyncmon_0" name="last-failure-rsc5a#asyncmon_0" value="1608666747"/>
|
|
+ <nvpair id="status-1-fail-count-rsc12b.asyncmon_0" name="fail-count-rsc12b#asyncmon_0" value="2"/>
|
|
+ <nvpair id="status-1-last-failure-rsc12b.asyncmon_0" name="last-failure-rsc12b#asyncmon_0" value="1608667111"/>
|
|
+ </instance_attributes>
|
|
+ </transient_attributes>
|
|
+ <lrm id="1">
|
|
+ <lrm_resources>
|
|
+ <lrm_resource id="rsc1a" type="Dummy" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc1a_last_0" operation_key="rsc1a_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="2:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;2:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-1" call-id="13" rc-code="7" op-status="0" interval="0" last-rc-change="1608662177" last-run="1608662177" exec-time="42" 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_resource>
|
|
+ <lrm_resource id="rsc1b" type="Dummy" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc1b_last_0" operation_key="rsc1b_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="3:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;3:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-1" call-id="17" rc-code="7" op-status="0" interval="0" last-rc-change="1608662177" last-run="1608662177" exec-time="38" 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_resource>
|
|
+ <lrm_resource id="rsc3b" type="Dummy" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc3b_last_0" operation_key="rsc3b_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="7:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;7:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-1" call-id="33" rc-code="7" op-status="0" interval="0" last-rc-change="1608662177" last-run="1608662177" exec-time="36" 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_resource>
|
|
+ <lrm_resource id="rsc5a" type="Dummy" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc5a_last_failure_0" operation_key="rsc5a_asyncmon_0" operation="asyncmon" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="304:-1:0:xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx" transition-magic="0:1;304:-1:0:xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx" exit-reason="Simulated failure" on_node="rhel7-1" call-id="304" rc-code="1" op-status="0" interval="0" last-rc-change="1608666747" last-run="1608666747" exec-time="0" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
|
|
+ <lrm_rsc_op id="rsc5a_last_0" operation_key="rsc5a_start_0" operation="start" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="70:43:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;70:43:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-1" call-id="310" rc-code="0" op-status="0" interval="0" last-rc-change="1608666748" last-run="1608666748" exec-time="26" 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="rsc5a_monitor_10000" operation_key="rsc5a_monitor_10000" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="32:43:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;32:43:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-1" call-id="312" rc-code="0" op-status="0" interval="10000" last-rc-change="1608666748" exec-time="24" queue-time="0" op-digest="4811cef7f7f94e3a35a70be7916cb2fd" op-secure-params=" passwd " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
|
|
+ </lrm_resource>
|
|
+ <lrm_resource id="rsc3a" type="Dummy" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc3a_last_0" operation_key="rsc3a_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="6:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;6:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-1" call-id="29" rc-code="7" op-status="0" interval="0" last-rc-change="1608662177" last-run="1608662177" exec-time="31" 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_resource>
|
|
+ <lrm_resource id="rsc9a" type="Dummy" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc9a_last_0" operation_key="rsc9a_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="20:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;20:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-1" call-id="87" rc-code="7" op-status="0" interval="0" last-rc-change="1608662178" last-run="1608662178" exec-time="26" 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_resource>
|
|
+ <lrm_resource id="rsc9c" type="Dummy" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc9c_last_0" operation_key="rsc9c_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="22:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;22:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-1" call-id="95" rc-code="7" op-status="0" interval="0" last-rc-change="1608662178" last-run="1608662178" exec-time="32" 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_resource>
|
|
+ <lrm_resource id="bundle11-0" type="remote" class="ocf" provider="pacemaker" container="bundle11-docker-0">
|
|
+ <lrm_rsc_op id="bundle11-0_last_0" operation_key="bundle11-0_start_0" operation="start" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="172:48:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;172:48:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-1" call-id="7" rc-code="0" op-status="0" interval="0" last-rc-change="1608666975" last-run="1608666975" exec-time="0" queue-time="0" op-digest="269547ac0372340e5394c2e0ae418d1b" op-force-restart=" server " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
|
|
+ <lrm_rsc_op id="bundle11-0_monitor_30000" operation_key="bundle11-0_monitor_30000" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="160:49:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;160:49:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-1" call-id="8" rc-code="0" op-status="0" interval="30000" last-rc-change="1608666976" exec-time="0" queue-time="0" op-digest="da52cb1b0828f079e099303157e8fc28"/>
|
|
+ </lrm_resource>
|
|
+ <lrm_resource id="rsc9b" type="Dummy" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc9b_last_0" operation_key="rsc9b_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="21:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;21:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-1" call-id="91" rc-code="7" op-status="0" interval="0" last-rc-change="1608662178" last-run="1608662178" exec-time="32" 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_resource>
|
|
+ <lrm_resource id="rsc11a" type="Dummy" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc11a_last_0" operation_key="rsc11a_start_0" operation="start" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="127:48:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;127:48:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-1" call-id="320" rc-code="0" op-status="0" interval="0" last-rc-change="1608666892" last-run="1608666892" exec-time="147" 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="rsc11a_monitor_10000" operation_key="rsc11a_monitor_10000" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="128:48:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;128:48:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-1" call-id="322" rc-code="0" op-status="0" interval="10000" last-rc-change="1608666893" exec-time="55" queue-time="0" op-digest="4811cef7f7f94e3a35a70be7916cb2fd" op-secure-params=" passwd " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
|
|
+ </lrm_resource>
|
|
+ <lrm_resource id="rsc13a" type="Dummy" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc13a_last_0" operation_key="rsc13a_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="40:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;40:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-1" call-id="171" rc-code="7" op-status="0" interval="0" last-rc-change="1608662180" last-run="1608662180" exec-time="30" 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_resource>
|
|
+ <lrm_resource id="rsc13b" type="Stateful" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc13b_last_0" operation_key="rsc13b_start_0" operation="start" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="185:4:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;185:4:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-1" call-id="205" rc-code="0" op-status="0" interval="0" last-rc-change="1608662186" last-run="1608662186" exec-time="83" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
|
|
+ <lrm_rsc_op id="rsc13b_monitor_10000" operation_key="rsc13b_monitor_10000" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="186:5:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;186:5:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-1" call-id="207" rc-code="0" op-status="0" interval="10000" last-rc-change="1608662186" exec-time="35" queue-time="0" op-digest="4811cef7f7f94e3a35a70be7916cb2fd"/>
|
|
+ </lrm_resource>
|
|
+ <lrm_resource id="bundle10-0" type="remote" class="ocf" provider="pacemaker" container="bundle10-docker-0">
|
|
+ <lrm_rsc_op id="bundle10-0_last_0" operation_key="bundle10-0_stop_0" operation="stop" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="144:48:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;144:48:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-1" call-id="6" rc-code="0" op-status="0" interval="0" last-rc-change="1608666894" last-run="1608666894" exec-time="0" queue-time="0" op-digest="bd3b59fd6cf7aabf0f8a6eed8a0e2a71"/>
|
|
+ </lrm_resource>
|
|
+ <lrm_resource id="rsc7a1" type="Dummy" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc7a1_last_0" operation_key="rsc7a1_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="16:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;16:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-1" call-id="69" rc-code="7" op-status="0" interval="0" last-rc-change="1608662178" last-run="1608662178" exec-time="37" 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_resource>
|
|
+ <lrm_resource id="rsc7a2" type="Dummy" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc7a2_last_0" operation_key="rsc7a2_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="17:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;17:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-1" call-id="73" rc-code="7" op-status="0" interval="0" last-rc-change="1608662178" last-run="1608662178" exec-time="29" 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_resource>
|
|
+ <lrm_resource id="bundle10-1" type="remote" class="ocf" provider="pacemaker" container="bundle10-docker-1">
|
|
+ <lrm_rsc_op id="bundle10-1_last_0" operation_key="bundle10-1_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="42:4:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;42:4:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-1" call-id="4" rc-code="7" op-status="0" interval="0" last-rc-change="1608662186" last-run="1608662186" exec-time="0" queue-time="0" op-digest="98c4879a95dbe1b4a991ce576dd25733" op-force-restart=" server " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
|
|
+ </lrm_resource>
|
|
+ <lrm_resource id="bundle10-ip-192.168.122.131" type="IPaddr2" class="ocf" provider="heartbeat">
|
|
+ <lrm_rsc_op id="bundle10-ip-192.168.122.131_last_0" operation_key="bundle10-ip-192.168.122.131_stop_0" operation="stop" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="138:48:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;138:48:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-1" call-id="349" rc-code="0" op-status="0" interval="0" last-rc-change="1608666975" last-run="1608666975" exec-time="282" queue-time="0" op-digest="8656419d4ed26465c724189832393477"/>
|
|
+ </lrm_resource>
|
|
+ <lrm_resource id="bundle10-ip-192.168.122.132" type="IPaddr2" class="ocf" provider="heartbeat">
|
|
+ <lrm_rsc_op id="bundle10-ip-192.168.122.132_last_0" operation_key="bundle10-ip-192.168.122.132_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="31:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;31:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-1" call-id="139" rc-code="7" op-status="0" interval="0" last-rc-change="1608662179" last-run="1608662179" exec-time="115" queue-time="0" op-digest="c3d96a2922c2946905f760df9a177cd1"/>
|
|
+ </lrm_resource>
|
|
+ <lrm_resource id="rsc2a" type="Dummy" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc2a_last_0" operation_key="rsc2a_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="4:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;4:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-1" call-id="21" rc-code="7" op-status="0" interval="0" last-rc-change="1608662177" last-run="1608662177" exec-time="34" 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_resource>
|
|
+ <lrm_resource id="rsc2b" type="Dummy" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc2b_last_0" operation_key="rsc2b_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="5:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;5:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-1" call-id="25" rc-code="7" op-status="0" interval="0" last-rc-change="1608662177" last-run="1608662177" exec-time="41" 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_resource>
|
|
+ <lrm_resource id="rsc4a" type="Dummy" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc4a_last_0" operation_key="rsc4a_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="8:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;8:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-1" call-id="37" rc-code="7" op-status="0" interval="0" last-rc-change="1608662177" last-run="1608662177" exec-time="36" 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_resource>
|
|
+ <lrm_resource id="rsc8a" type="Dummy" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc8a_last_0" operation_key="rsc8a_start_0" operation="start" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="260:0:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;260:0:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-1" call-id="144" rc-code="0" op-status="0" interval="0" last-rc-change="1608662179" last-run="1608662179" exec-time="26" 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="rsc8a_monitor_10000" operation_key="rsc8a_monitor_10000" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="261:0:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;261:0:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-1" call-id="146" rc-code="0" op-status="0" interval="10000" last-rc-change="1608662179" exec-time="36" queue-time="0" op-digest="4811cef7f7f94e3a35a70be7916cb2fd" op-secure-params=" passwd " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
|
|
+ </lrm_resource>
|
|
+ <lrm_resource id="bundle10-docker-0" type="docker" class="ocf" provider="heartbeat">
|
|
+ <lrm_rsc_op id="bundle10-docker-0_last_0" operation_key="bundle10-docker-0_stop_0" operation="stop" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="141:48:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;141:48:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-1" call-id="340" rc-code="0" op-status="0" interval="0" last-rc-change="1608666894" last-run="1608666894" exec-time="80857" queue-time="0" op-digest="2c1359b7f24998fceaacce59586cfde8"/>
|
|
+ </lrm_resource>
|
|
+ <lrm_resource id="bundle10-docker-1" type="docker" class="ocf" provider="heartbeat">
|
|
+ <lrm_rsc_op id="bundle10-docker-1_last_0" operation_key="bundle10-docker-1_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="32:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;32:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-1" call-id="143" rc-code="7" op-status="0" interval="0" last-rc-change="1608662179" last-run="1608662179" exec-time="111" queue-time="0" op-digest="5dbf2069db92246c65ac9d645a9d431d"/>
|
|
+ </lrm_resource>
|
|
+ <lrm_resource id="rsc6a2" type="Dummy" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc6a2_last_0" operation_key="rsc6a2_stop_0" operation="stop" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="86:37:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;86:37:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-1" call-id="274" rc-code="0" op-status="0" interval="0" last-rc-change="1608666716" last-run="1608666716" exec-time="107" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
|
|
+ </lrm_resource>
|
|
+ <lrm_resource id="rsc8b" type="Dummy" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc8b_last_0" operation_key="rsc8b_start_0" operation="start" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="272:0:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;272:0:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-1" call-id="148" rc-code="0" op-status="0" interval="0" last-rc-change="1608662179" last-run="1608662179" exec-time="26" 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="rsc8b_monitor_10000" operation_key="rsc8b_monitor_10000" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="273:0:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;273:0:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-1" call-id="150" rc-code="0" op-status="0" interval="10000" last-rc-change="1608662179" exec-time="39" queue-time="0" op-digest="4811cef7f7f94e3a35a70be7916cb2fd" op-secure-params=" passwd " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
|
|
+ </lrm_resource>
|
|
+ <lrm_resource id="rsc4b" type="Dummy" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc4b_last_0" operation_key="rsc4b_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="9:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;9:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-1" call-id="41" rc-code="7" op-status="0" interval="0" last-rc-change="1608662177" last-run="1608662177" exec-time="37" 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_resource>
|
|
+ <lrm_resource id="Fencing" type="fence_xvm" class="stonith">
|
|
+ <lrm_rsc_op id="Fencing_last_0" operation_key="Fencing_start_0" operation="start" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="216:0:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;216:0:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-1" call-id="6" rc-code="0" op-status="0" interval="0" last-rc-change="1608662177" last-run="1608662177" exec-time="74" queue-time="0" op-digest="422e90c96b7732222706b322138f43c8"/>
|
|
+ <lrm_rsc_op id="Fencing_monitor_120000" operation_key="Fencing_monitor_120000" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="217:0:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;217:0:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-1" call-id="8" rc-code="0" op-status="0" interval="120000" last-rc-change="1608662177" exec-time="82" queue-time="0" op-digest="75eb18cbd607b3b4911f723ab1c89388"/>
|
|
+ </lrm_resource>
|
|
+ <lrm_resource id="rsc6a1" type="Dummy" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc6a1_last_0" operation_key="rsc6a1_stop_0" operation="stop" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="83:37:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;83:37:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-1" call-id="291" rc-code="0" op-status="0" interval="0" last-rc-change="1608666716" last-run="1608666716" exec-time="72" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
|
|
+ </lrm_resource>
|
|
+ <lrm_resource id="rsc10a" type="Dummy" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc10a_last_0" operation_key="rsc10a_stop_0" operation="stop" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="29:48:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;29:48:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-1" call-id="316" rc-code="0" op-status="0" interval="0" last-rc-change="1608666892" last-run="1608666892" exec-time="32" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
|
|
+ </lrm_resource>
|
|
+ <lrm_resource id="rsc12a" type="Dummy" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc12a_last_0" operation_key="rsc12a_start_0" operation="start" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="130:48:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;130:48:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-1" call-id="324" rc-code="0" op-status="0" interval="0" last-rc-change="1608666893" last-run="1608666893" exec-time="32" 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="rsc12a_monitor_10000" operation_key="rsc12a_monitor_10000" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="131:48:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;131:48:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-1" call-id="326" rc-code="0" op-status="0" interval="10000" last-rc-change="1608666893" exec-time="31" queue-time="0" op-digest="4811cef7f7f94e3a35a70be7916cb2fd" op-secure-params=" passwd " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
|
|
+ </lrm_resource>
|
|
+ <lrm_resource id="rsc12b" type="Dummy" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc12b_last_failure_0" operation_key="rsc12b_asyncmon_0" operation="asyncmon" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="331:-1:0:xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx" transition-magic="0:1;331:-1:0:xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx" exit-reason="Simulated failure" on_node="rhel7-1" call-id="331" rc-code="1" op-status="0" interval="0" last-rc-change="1608667111" last-run="1608667111" exec-time="0" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
|
|
+ <lrm_rsc_op id="rsc12b_last_0" operation_key="rsc12b_start_0" operation="start" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="130:52:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;130:52:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-1" call-id="365" rc-code="0" op-status="0" interval="0" last-rc-change="1608667112" last-run="1608667112" exec-time="25" 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="rsc12b_monitor_10000" operation_key="rsc12b_monitor_10000" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="28:52:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;28:52:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-1" call-id="367" rc-code="0" op-status="0" interval="10000" last-rc-change="1608667112" exec-time="22" queue-time="0" op-digest="4811cef7f7f94e3a35a70be7916cb2fd" op-secure-params=" passwd " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
|
|
+ </lrm_resource>
|
|
+ <lrm_resource id="rsc12c" type="Dummy" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc12c_last_0" operation_key="rsc12c_start_0" operation="start" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="136:48:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;136:48:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-1" call-id="332" rc-code="0" op-status="0" interval="0" last-rc-change="1608666893" last-run="1608666893" exec-time="28" 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="rsc12c_monitor_10000" operation_key="rsc12c_monitor_10000" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="137:48:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;137:48:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-1" call-id="334" rc-code="0" op-status="0" interval="10000" last-rc-change="1608666893" exec-time="26" queue-time="0" op-digest="4811cef7f7f94e3a35a70be7916cb2fd" op-secure-params=" passwd " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
|
|
+ </lrm_resource>
|
|
+ <lrm_resource id="rsc14b" type="Dummy" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc14b_last_0" operation_key="rsc14b_stop_0" operation="stop" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="204:27:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;204:27:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-1" call-id="261" rc-code="0" op-status="0" interval="0" last-rc-change="1608666620" last-run="1608666620" exec-time="99" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
|
|
+ </lrm_resource>
|
|
+ <lrm_resource id="rsc14a" type="Stateful" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc14a_last_0" operation_key="rsc14a_demote_0" operation="demote" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="213:27:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;213:27:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-1" call-id="263" rc-code="0" op-status="0" interval="0" last-rc-change="1608666620" last-run="1608666620" exec-time="136" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
|
|
+ <lrm_rsc_op id="rsc14a_monitor_10000" operation_key="rsc14a_monitor_10000" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="204:28:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;204:28:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-1" call-id="266" rc-code="0" op-status="0" interval="10000" last-rc-change="1608666621" exec-time="43" queue-time="0" op-digest="4811cef7f7f94e3a35a70be7916cb2fd"/>
|
|
+ </lrm_resource>
|
|
+ <lrm_resource id="rsc6a" type="Dummy" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc6a_last_0" operation_key="rsc6a_stop_0" operation="stop" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="93:37:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;93:37:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-1" call-id="277" rc-code="0" op-status="0" interval="0" last-rc-change="1608666716" last-run="1608666716" exec-time="97" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
|
|
+ </lrm_resource>
|
|
+ <lrm_resource id="bundle11-docker-1" type="docker" class="ocf" provider="heartbeat">
|
|
+ <lrm_rsc_op id="bundle11-docker-1_last_0" operation_key="bundle11-docker-1_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="38:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;38:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-1" call-id="167" rc-code="7" op-status="0" interval="0" last-rc-change="1608662180" last-run="1608662180" exec-time="125" queue-time="0" op-digest="8d3651c56ba0fdc98d0b45ffb590226e"/>
|
|
+ </lrm_resource>
|
|
+ <lrm_resource id="rsc5a1" type="Dummy" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc5a1_last_0" operation_key="rsc5a1_start_0" operation="start" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="74:37:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;74:37:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-1" call-id="282" rc-code="0" op-status="0" interval="0" last-rc-change="1608666716" last-run="1608666716" exec-time="115" 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="rsc5a1_monitor_10000" operation_key="rsc5a1_monitor_10000" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="75:37:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;75:37:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-1" call-id="286" rc-code="0" op-status="0" interval="10000" last-rc-change="1608666716" exec-time="139" queue-time="0" op-digest="4811cef7f7f94e3a35a70be7916cb2fd" op-secure-params=" passwd " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
|
|
+ </lrm_resource>
|
|
+ <lrm_resource id="rsc5a2" type="Dummy" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc5a2_last_0" operation_key="rsc5a2_start_0" operation="start" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="77:37:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;77:37:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-1" call-id="288" rc-code="0" op-status="0" interval="0" last-rc-change="1608666716" last-run="1608666716" exec-time="165" 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="rsc5a2_monitor_10000" operation_key="rsc5a2_monitor_10000" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="78:37:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;78:37:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-1" call-id="294" rc-code="0" op-status="0" interval="10000" last-rc-change="1608666716" exec-time="46" queue-time="0" op-digest="4811cef7f7f94e3a35a70be7916cb2fd" op-secure-params=" passwd " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
|
|
+ </lrm_resource>
|
|
+ <lrm_resource id="bundle11-docker-0" type="docker" class="ocf" provider="heartbeat">
|
|
+ <lrm_rsc_op id="bundle11-docker-0_last_0" operation_key="bundle11-docker-0_start_0" operation="start" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="169:48:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;169:48:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-1" call-id="346" rc-code="0" op-status="0" interval="0" last-rc-change="1608666973" last-run="1608666973" exec-time="1190" queue-time="3" op-digest="f1b936bf51a44fa14e140fa5c05411d3"/>
|
|
+ <lrm_rsc_op id="bundle11-docker-0_monitor_60000" operation_key="bundle11-docker-0_monitor_60000" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="170:48:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;170:48:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-1" call-id="352" rc-code="0" op-status="0" interval="60000" last-rc-change="1608666975" exec-time="277" queue-time="0" op-digest="5ee875a4a29ae5512114c128d3a53fc5"/>
|
|
+ </lrm_resource>
|
|
+ <lrm_resource id="bundle11-ip-192.168.122.134" type="IPaddr2" class="ocf" provider="heartbeat">
|
|
+ <lrm_rsc_op id="bundle11-ip-192.168.122.134_last_0" operation_key="bundle11-ip-192.168.122.134_start_0" operation="start" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="166:48:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;166:48:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-1" call-id="342" rc-code="0" op-status="0" interval="0" last-rc-change="1608666973" last-run="1608666973" exec-time="83" queue-time="0" op-digest="4b105bfe443dd9dd577360067aa8ab0f"/>
|
|
+ <lrm_rsc_op id="bundle11-ip-192.168.122.134_monitor_60000" operation_key="bundle11-ip-192.168.122.134_monitor_60000" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="167:48:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;167:48:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-1" call-id="344" rc-code="0" op-status="0" interval="60000" last-rc-change="1608666973" exec-time="63" queue-time="0" op-digest="163fded8c72adbcaeb8cbb10515f3d90"/>
|
|
+ </lrm_resource>
|
|
+ <lrm_resource id="bundle11-ip-192.168.122.135" type="IPaddr2" class="ocf" provider="heartbeat">
|
|
+ <lrm_rsc_op id="bundle11-ip-192.168.122.135_last_0" operation_key="bundle11-ip-192.168.122.135_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="37:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;37:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-1" call-id="163" rc-code="7" op-status="0" interval="0" last-rc-change="1608662180" last-run="1608662180" exec-time="107" queue-time="0" op-digest="d41ab06b142cfb1ec4fb12415f81ff48"/>
|
|
+ </lrm_resource>
|
|
+ </lrm_resources>
|
|
+ </lrm>
|
|
+ </node_state>
|
|
+ <node_state id="2" uname="rhel7-2" in_ccm="true" crmd="online" crm-debug-origin="do_update_resource" join="member" expected="member">
|
|
+ <transient_attributes id="2">
|
|
+ <instance_attributes id="status-2">
|
|
+ <nvpair id="status-2-master-rsc13b" name="master-rsc13b" value="5"/>
|
|
+ <nvpair id="status-2-master-rsc14a" name="master-rsc14a" value="5"/>
|
|
+ <nvpair id="status-2-fail-count-rsc1a.asyncmon_0" name="fail-count-rsc1a#asyncmon_0" value="2"/>
|
|
+ <nvpair id="status-2-last-failure-rsc1a.asyncmon_0" name="last-failure-rsc1a#asyncmon_0" value="1608666390"/>
|
|
+ <nvpair id="status-2-fail-count-rsc6a1.asyncmon_0" name="fail-count-rsc6a1#asyncmon_0" value="2"/>
|
|
+ <nvpair id="status-2-last-failure-rsc6a1.asyncmon_0" name="last-failure-rsc6a1#asyncmon_0" value="1608666478"/>
|
|
+ <nvpair id="status-2-fail-count-rsc10a.asyncmon_0" name="fail-count-rsc10a#asyncmon_0" value="2"/>
|
|
+ <nvpair id="status-2-last-failure-rsc10a.asyncmon_0" name="last-failure-rsc10a#asyncmon_0" value="1608666892"/>
|
|
+ </instance_attributes>
|
|
+ </transient_attributes>
|
|
+ <lrm id="2">
|
|
+ <lrm_resources>
|
|
+ <lrm_resource id="rsc1a" type="Dummy" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc1a_last_failure_0" operation_key="rsc1a_asyncmon_0" operation="asyncmon" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="21:-1:0:xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx" transition-magic="0:1;21:-1:0:xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx" exit-reason="Simulated failure" on_node="rhel7-2" call-id="21" rc-code="1" op-status="0" interval="0" last-rc-change="1608666390" last-run="1608666390" exec-time="0" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
|
|
+ <lrm_rsc_op id="rsc1a_last_0" operation_key="rsc1a_start_0" operation="start" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="60:14:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;60:14:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-2" call-id="223" rc-code="0" op-status="0" interval="0" last-rc-change="1608666390" last-run="1608666390" exec-time="28" 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="rsc1a_monitor_10000" operation_key="rsc1a_monitor_10000" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="36:14:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;36:14:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-2" call-id="225" rc-code="0" op-status="0" interval="10000" last-rc-change="1608666390" exec-time="34" queue-time="0" op-digest="4811cef7f7f94e3a35a70be7916cb2fd" op-secure-params=" passwd " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
|
|
+ </lrm_resource>
|
|
+ <lrm_resource id="rsc1b" type="Dummy" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc1b_last_0" operation_key="rsc1b_start_0" operation="start" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="220:0:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;220:0:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-2" call-id="22" rc-code="0" op-status="0" interval="0" last-rc-change="1608662177" last-run="1608662177" exec-time="108" 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="rsc1b_monitor_10000" operation_key="rsc1b_monitor_10000" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="221:0:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;221:0:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-2" call-id="24" rc-code="0" op-status="0" interval="10000" last-rc-change="1608662177" exec-time="100" queue-time="0" op-digest="4811cef7f7f94e3a35a70be7916cb2fd" op-secure-params=" passwd " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
|
|
+ </lrm_resource>
|
|
+ <lrm_resource id="rsc3b" type="Dummy" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc3b_last_0" operation_key="rsc3b_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="50:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;50:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-2" call-id="37" rc-code="7" op-status="0" interval="0" last-rc-change="1608662178" last-run="1608662178" exec-time="74" 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_resource>
|
|
+ <lrm_resource id="rsc5a" type="Dummy" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc5a_last_0" operation_key="rsc5a_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="51:41:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;51:41:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-2" call-id="305" rc-code="7" op-status="0" interval="0" last-rc-change="1608666741" last-run="1608666741" exec-time="19" 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_resource>
|
|
+ <lrm_resource id="rsc3a" type="Dummy" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc3a_last_0" operation_key="rsc3a_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="49:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;49:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-2" call-id="33" rc-code="7" op-status="0" interval="0" last-rc-change="1608662178" last-run="1608662178" exec-time="77" 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_resource>
|
|
+ <lrm_resource id="rsc9a" type="Dummy" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc9a_last_0" operation_key="rsc9a_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="63:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;63:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-2" call-id="111" rc-code="7" op-status="0" interval="0" last-rc-change="1608662180" last-run="1608662180" exec-time="83" 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_resource>
|
|
+ <lrm_resource id="rsc9c" type="Dummy" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc9c_last_0" operation_key="rsc9c_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="65:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;65:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-2" call-id="119" rc-code="7" op-status="0" interval="0" last-rc-change="1608662180" last-run="1608662180" exec-time="53" 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_resource>
|
|
+ <lrm_resource id="bundle11-0" type="remote" class="ocf" provider="pacemaker" container="bundle11-docker-0">
|
|
+ <lrm_rsc_op id="bundle11-0_last_0" operation_key="bundle11-0_stop_0" operation="stop" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="171:48:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;171:48:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-2" call-id="6" rc-code="0" op-status="0" interval="0" last-rc-change="1608666893" last-run="1608666893" exec-time="0" queue-time="0" op-digest="269547ac0372340e5394c2e0ae418d1b"/>
|
|
+ </lrm_resource>
|
|
+ <lrm_resource id="rsc9b" type="Dummy" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc9b_last_0" operation_key="rsc9b_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="64:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;64:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-2" call-id="115" rc-code="7" op-status="0" interval="0" last-rc-change="1608662180" last-run="1608662180" exec-time="45" 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_resource>
|
|
+ <lrm_resource id="rsc11a" type="Dummy" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc11a_last_0" operation_key="rsc11a_stop_0" operation="stop" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="126:48:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;126:48:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-2" call-id="307" rc-code="0" op-status="0" interval="0" last-rc-change="1608666892" last-run="1608666892" exec-time="87" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
|
|
+ </lrm_resource>
|
|
+ <lrm_resource id="rsc13a" type="Dummy" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc13a_last_0" operation_key="rsc13a_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="83:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;83:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-2" call-id="179" rc-code="7" op-status="0" interval="0" last-rc-change="1608662181" last-run="1608662181" exec-time="23" 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_resource>
|
|
+ <lrm_resource id="rsc13b" type="Stateful" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc13b_last_0" operation_key="rsc13b_start_0" operation="start" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="199:1:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;199:1:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-2" call-id="205" rc-code="0" op-status="0" interval="0" last-rc-change="1608662184" last-run="1608662184" exec-time="43" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
|
|
+ <lrm_rsc_op id="rsc13b_monitor_10000" operation_key="rsc13b_monitor_10000" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="187:2:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;187:2:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-2" call-id="207" rc-code="0" op-status="0" interval="10000" last-rc-change="1608662184" exec-time="38" queue-time="0" op-digest="4811cef7f7f94e3a35a70be7916cb2fd"/>
|
|
+ </lrm_resource>
|
|
+ <lrm_resource id="bundle10-0" type="remote" class="ocf" provider="pacemaker" container="bundle10-docker-0">
|
|
+ <lrm_rsc_op id="bundle10-0_last_0" operation_key="bundle10-0_start_0" operation="start" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="134:49:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;134:49:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-2" call-id="7" rc-code="0" op-status="0" interval="0" last-rc-change="1608666976" last-run="1608666976" exec-time="0" queue-time="0" op-digest="bd3b59fd6cf7aabf0f8a6eed8a0e2a71" op-force-restart=" server " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
|
|
+ <lrm_rsc_op id="bundle10-0_monitor_30000" operation_key="bundle10-0_monitor_30000" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="138:50:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;138:50:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-2" call-id="8" rc-code="0" op-status="0" interval="30000" last-rc-change="1608666979" exec-time="0" queue-time="0" op-digest="039dfa92620d65de0a455ebf46bf1bb6"/>
|
|
+ </lrm_resource>
|
|
+ <lrm_resource id="rsc7a1" type="Dummy" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc7a1_last_0" operation_key="rsc7a1_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="59:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;59:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-2" call-id="85" rc-code="7" op-status="0" interval="0" last-rc-change="1608662179" last-run="1608662179" exec-time="54" 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_resource>
|
|
+ <lrm_resource id="rsc7a2" type="Dummy" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc7a2_last_0" operation_key="rsc7a2_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="60:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;60:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-2" call-id="89" rc-code="7" op-status="0" interval="0" last-rc-change="1608662179" last-run="1608662179" exec-time="55" 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_resource>
|
|
+ <lrm_resource id="bundle10-1" type="remote" class="ocf" provider="pacemaker" container="bundle10-docker-1">
|
|
+ <lrm_rsc_op id="bundle10-1_last_0" operation_key="bundle10-1_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="43:1:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;43:1:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-2" call-id="2" rc-code="7" op-status="0" interval="0" last-rc-change="1608662183" last-run="1608662183" exec-time="0" queue-time="0" op-digest="98c4879a95dbe1b4a991ce576dd25733" op-force-restart=" server " op-restart-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
|
|
+ </lrm_resource>
|
|
+ <lrm_resource id="bundle10-ip-192.168.122.131" type="IPaddr2" class="ocf" provider="heartbeat">
|
|
+ <lrm_rsc_op id="bundle10-ip-192.168.122.131_last_0" operation_key="bundle10-ip-192.168.122.131_start_0" operation="start" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="139:48:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;139:48:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-2" call-id="338" rc-code="0" op-status="0" interval="0" last-rc-change="1608666975" last-run="1608666975" exec-time="100" queue-time="0" op-digest="8656419d4ed26465c724189832393477"/>
|
|
+ <lrm_rsc_op id="bundle10-ip-192.168.122.131_monitor_60000" operation_key="bundle10-ip-192.168.122.131_monitor_60000" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="140:48:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;140:48:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-2" call-id="340" rc-code="0" op-status="0" interval="60000" last-rc-change="1608666975" exec-time="173" queue-time="0" op-digest="fc520faa5d1d11c458a6d451e0e08a0e"/>
|
|
+ </lrm_resource>
|
|
+ <lrm_resource id="bundle10-ip-192.168.122.132" type="IPaddr2" class="ocf" provider="heartbeat">
|
|
+ <lrm_rsc_op id="bundle10-ip-192.168.122.132_last_0" operation_key="bundle10-ip-192.168.122.132_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="74:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;74:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-2" call-id="155" rc-code="7" op-status="0" interval="0" last-rc-change="1608662181" last-run="1608662181" exec-time="91" queue-time="0" op-digest="c3d96a2922c2946905f760df9a177cd1"/>
|
|
+ </lrm_resource>
|
|
+ <lrm_resource id="rsc2a" type="Dummy" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc2a_last_0" operation_key="rsc2a_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="47:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;47:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-2" call-id="17" rc-code="7" op-status="0" interval="0" last-rc-change="1608662177" last-run="1608662177" exec-time="46" 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_resource>
|
|
+ <lrm_resource id="rsc2b" type="Dummy" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc2b_last_0" operation_key="rsc2b_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="48:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;48:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-2" call-id="29" rc-code="7" op-status="0" interval="0" last-rc-change="1608662178" last-run="1608662178" exec-time="90" 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_resource>
|
|
+ <lrm_resource id="rsc4a" type="Dummy" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc4a_last_0" operation_key="rsc4a_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="51:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;51:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-2" call-id="41" rc-code="7" op-status="0" interval="0" last-rc-change="1608662178" last-run="1608662178" exec-time="69" 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_resource>
|
|
+ <lrm_resource id="rsc8a" type="Dummy" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc8a_last_0" operation_key="rsc8a_stop_0" operation="stop" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="105:27:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;105:27:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-2" call-id="255" rc-code="0" op-status="0" interval="0" last-rc-change="1608666620" last-run="1608666620" exec-time="62" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
|
|
+ </lrm_resource>
|
|
+ <lrm_resource id="bundle10-docker-0" type="docker" class="ocf" provider="heartbeat">
|
|
+ <lrm_rsc_op id="bundle10-docker-0_last_0" operation_key="bundle10-docker-0_start_0" operation="start" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="142:48:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;142:48:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-2" call-id="341" rc-code="0" op-status="0" interval="0" last-rc-change="1608666975" last-run="1608666975" exec-time="1066" queue-time="0" op-digest="2c1359b7f24998fceaacce59586cfde8"/>
|
|
+ <lrm_rsc_op id="bundle10-docker-0_monitor_60000" operation_key="bundle10-docker-0_monitor_60000" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="133:49:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;133:49:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-2" call-id="344" rc-code="0" op-status="0" interval="60000" last-rc-change="1608666976" exec-time="229" queue-time="0" op-digest="1aa94c0f78c956043270ed19d83c1ee5"/>
|
|
+ </lrm_resource>
|
|
+ <lrm_resource id="bundle10-docker-1" type="docker" class="ocf" provider="heartbeat">
|
|
+ <lrm_rsc_op id="bundle10-docker-1_last_0" operation_key="bundle10-docker-1_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="75:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;75:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-2" call-id="159" rc-code="7" op-status="0" interval="0" last-rc-change="1608662181" last-run="1608662181" exec-time="81" queue-time="0" op-digest="5dbf2069db92246c65ac9d645a9d431d"/>
|
|
+ </lrm_resource>
|
|
+ <lrm_resource id="rsc6a2" type="Dummy" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc6a2_last_0" operation_key="rsc6a2_start_0" operation="start" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="87:37:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;87:37:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-2" call-id="293" rc-code="0" op-status="0" interval="0" last-rc-change="1608666716" last-run="1608666716" exec-time="53" 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="rsc6a2_monitor_10000" operation_key="rsc6a2_monitor_10000" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="88:37:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;88:37:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-2" call-id="296" rc-code="0" op-status="0" interval="10000" last-rc-change="1608666716" exec-time="22" queue-time="0" op-digest="4811cef7f7f94e3a35a70be7916cb2fd" op-secure-params=" passwd " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
|
|
+ </lrm_resource>
|
|
+ <lrm_resource id="rsc8b" type="Dummy" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc8b_last_0" operation_key="rsc8b_stop_0" operation="stop" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="116:27:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;116:27:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-2" call-id="258" rc-code="0" op-status="0" interval="0" last-rc-change="1608666620" last-run="1608666620" exec-time="67" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
|
|
+ </lrm_resource>
|
|
+ <lrm_resource id="rsc4b" type="Dummy" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc4b_last_0" operation_key="rsc4b_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="52:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;52:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-2" call-id="45" rc-code="7" op-status="0" interval="0" last-rc-change="1608662178" last-run="1608662178" exec-time="69" 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_resource>
|
|
+ <lrm_resource id="Fencing" type="fence_xvm" class="stonith">
|
|
+ <lrm_rsc_op id="Fencing_last_0" operation_key="Fencing_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="44:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;44:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-2" call-id="5" rc-code="7" op-status="0" interval="0" last-rc-change="1608662177" last-run="1608662177" exec-time="12" queue-time="0" op-digest="422e90c96b7732222706b322138f43c8"/>
|
|
+ </lrm_resource>
|
|
+ <lrm_resource id="rsc6a1" type="Dummy" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc6a1_last_failure_0" operation_key="rsc6a1_asyncmon_0" operation="asyncmon" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="246:-1:0:xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx" transition-magic="0:1;246:-1:0:xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx" exit-reason="Simulated failure" on_node="rhel7-2" call-id="246" rc-code="1" op-status="0" interval="0" last-rc-change="1608666478" last-run="1608666478" exec-time="0" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
|
|
+ <lrm_rsc_op id="rsc6a1_last_0" operation_key="rsc6a1_start_0" operation="start" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="84:37:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;84:37:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-2" call-id="290" rc-code="0" op-status="0" interval="0" last-rc-change="1608666716" last-run="1608666716" exec-time="23" 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="rsc6a1_monitor_10000" operation_key="rsc6a1_monitor_10000" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="85:37:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;85:37:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-2" call-id="292" rc-code="0" op-status="0" interval="10000" last-rc-change="1608666716" exec-time="39" queue-time="0" op-digest="4811cef7f7f94e3a35a70be7916cb2fd" op-secure-params=" passwd " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
|
|
+ </lrm_resource>
|
|
+ <lrm_resource id="rsc10a" type="Dummy" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc10a_last_0" operation_key="rsc10a_start_0" operation="start" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="124:48:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;124:48:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-2" call-id="321" rc-code="0" op-status="0" interval="0" last-rc-change="1608666892" last-run="1608666892" exec-time="63" 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="rsc10a_last_failure_0" operation_key="rsc10a_asyncmon_0" operation="asyncmon" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="175:-1:0:xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx" transition-magic="0:1;175:-1:0:xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx" exit-reason="Simulated failure" on_node="rhel7-2" call-id="175" rc-code="1" op-status="0" interval="0" last-rc-change="1608666892" last-run="1608666892" exec-time="0" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
|
|
+ <lrm_rsc_op id="rsc10a_monitor_10000" operation_key="rsc10a_monitor_10000" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="125:48:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;125:48:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-2" call-id="328" rc-code="0" op-status="0" interval="10000" last-rc-change="1608666893" exec-time="123" queue-time="0" op-digest="4811cef7f7f94e3a35a70be7916cb2fd" op-secure-params=" passwd " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
|
|
+ </lrm_resource>
|
|
+ <lrm_resource id="rsc12a" type="Dummy" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc12a_last_0" operation_key="rsc12a_stop_0" operation="stop" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="129:48:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;129:48:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-2" call-id="310" rc-code="0" op-status="0" interval="0" last-rc-change="1608666892" last-run="1608666892" exec-time="50" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
|
|
+ </lrm_resource>
|
|
+ <lrm_resource id="rsc12b" type="Dummy" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc12b_last_0" operation_key="rsc12b_stop_0" operation="stop" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="132:48:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;132:48:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-2" call-id="314" rc-code="0" op-status="0" interval="0" last-rc-change="1608666892" last-run="1608666892" exec-time="68" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
|
|
+ </lrm_resource>
|
|
+ <lrm_resource id="rsc12c" type="Dummy" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc12c_last_0" operation_key="rsc12c_stop_0" operation="stop" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="135:48:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;135:48:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-2" call-id="318" rc-code="0" op-status="0" interval="0" last-rc-change="1608666892" last-run="1608666892" exec-time="86" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
|
|
+ </lrm_resource>
|
|
+ <lrm_resource id="rsc14b" type="Dummy" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc14b_last_0" operation_key="rsc14b_stop_0" operation="stop" crm-debug-origin="do_update_resource" crm_feature_set="3.6.3" transition-key="198:73:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;198:73:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-2" call-id="382" rc-code="0" op-status="0" interval="0" last-rc-change="1608667874" last-run="1608667874" exec-time="59" 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="rsc14b_monitor_10000" operation_key="rsc14b_monitor_10000" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="198:71:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;198:71:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-2" call-id="375" rc-code="0" op-status="0" interval="10000" last-rc-change="1608667796" exec-time="35" queue-time="0" op-digest="4811cef7f7f94e3a35a70be7916cb2fd" op-secure-params=" passwd " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
|
|
+ </lrm_resource>
|
|
+ <lrm_resource id="rsc14a" type="Stateful" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc14a_last_0" operation_key="rsc14a_demote_0" operation="demote" crm-debug-origin="do_update_resource" crm_feature_set="3.6.3" transition-key="206:73:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;206:73:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-2" call-id="386" rc-code="0" op-status="0" interval="0" last-rc-change="1608667874" last-run="1608667874" exec-time="70" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
|
|
+ <lrm_rsc_op id="rsc14a_monitor_10000" operation_key="rsc14a_monitor_10000" operation="monitor" crm-debug-origin="do_update_resource" crm_feature_set="3.6.3" transition-key="205:74:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;205:74:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-2" call-id="389" rc-code="0" op-status="0" interval="10000" last-rc-change="1608667874" exec-time="29" queue-time="0" op-digest="4811cef7f7f94e3a35a70be7916cb2fd"/>
|
|
+ </lrm_resource>
|
|
+ <lrm_resource id="rsc6a" type="Dummy" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc6a_last_0" operation_key="rsc6a_start_0" operation="start" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="94:37:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;94:37:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-2" call-id="286" rc-code="0" op-status="0" interval="0" last-rc-change="1608666716" last-run="1608666716" exec-time="29" 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="rsc6a_monitor_10000" operation_key="rsc6a_monitor_10000" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="95:37:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;95:37:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-2" call-id="288" rc-code="0" op-status="0" interval="10000" last-rc-change="1608666716" exec-time="31" queue-time="0" op-digest="4811cef7f7f94e3a35a70be7916cb2fd" op-secure-params=" passwd " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
|
|
+ </lrm_resource>
|
|
+ <lrm_resource id="bundle11-docker-1" type="docker" class="ocf" provider="heartbeat">
|
|
+ <lrm_rsc_op id="bundle11-docker-1_last_0" operation_key="bundle11-docker-1_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="81:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;81:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-2" call-id="175" rc-code="7" op-status="0" interval="0" last-rc-change="1608662181" last-run="1608662181" exec-time="107" queue-time="0" op-digest="8d3651c56ba0fdc98d0b45ffb590226e"/>
|
|
+ </lrm_resource>
|
|
+ <lrm_resource id="rsc5a1" type="Dummy" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc5a1_last_0" operation_key="rsc5a1_stop_0" operation="stop" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="73:37:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;73:37:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-2" call-id="283" rc-code="0" op-status="0" interval="0" last-rc-change="1608666716" last-run="1608666716" exec-time="39" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
|
|
+ </lrm_resource>
|
|
+ <lrm_resource id="rsc5a2" type="Dummy" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="rsc5a2_last_0" operation_key="rsc5a2_stop_0" operation="stop" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="76:37:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;76:37:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-2" call-id="278" rc-code="0" op-status="0" interval="0" last-rc-change="1608666715" last-run="1608666715" exec-time="71" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
|
|
+ </lrm_resource>
|
|
+ <lrm_resource id="bundle11-docker-0" type="docker" class="ocf" provider="heartbeat">
|
|
+ <lrm_rsc_op id="bundle11-docker-0_last_0" operation_key="bundle11-docker-0_stop_0" operation="stop" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="168:48:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;168:48:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-2" call-id="330" rc-code="0" op-status="0" interval="0" last-rc-change="1608666893" last-run="1608666893" exec-time="80542" queue-time="0" op-digest="f1b936bf51a44fa14e140fa5c05411d3"/>
|
|
+ </lrm_resource>
|
|
+ <lrm_resource id="bundle11-ip-192.168.122.134" type="IPaddr2" class="ocf" provider="heartbeat">
|
|
+ <lrm_rsc_op id="bundle11-ip-192.168.122.134_last_0" operation_key="bundle11-ip-192.168.122.134_stop_0" operation="stop" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="165:48:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;165:48:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-2" call-id="335" rc-code="0" op-status="0" interval="0" last-rc-change="1608666973" last-run="1608666973" exec-time="77" queue-time="0" op-digest="4b105bfe443dd9dd577360067aa8ab0f"/>
|
|
+ </lrm_resource>
|
|
+ <lrm_resource id="bundle11-ip-192.168.122.135" type="IPaddr2" class="ocf" provider="heartbeat">
|
|
+ <lrm_rsc_op id="bundle11-ip-192.168.122.135_last_0" operation_key="bundle11-ip-192.168.122.135_monitor_0" operation="monitor" crm-debug-origin="build_active_RAs" crm_feature_set="3.6.3" transition-key="80:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:7;80:0:7:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-2" call-id="171" rc-code="7" op-status="0" interval="0" last-rc-change="1608662181" last-run="1608662181" exec-time="97" queue-time="0" op-digest="d41ab06b142cfb1ec4fb12415f81ff48"/>
|
|
+ </lrm_resource>
|
|
+ </lrm_resources>
|
|
+ </lrm>
|
|
+ </node_state>
|
|
+ <node_state remote_node="true" id="bundle10-0" uname="bundle10-0" in_ccm="true" crm-debug-origin="do_state_transition" node_fenced="0">
|
|
+ <lrm id="bundle10-0">
|
|
+ <lrm_resources>
|
|
+ <lrm_resource id="httpd" type="apache" class="ocf" provider="heartbeat">
|
|
+ <lrm_rsc_op id="httpd_last_0" operation_key="httpd_start_0" operation="start" crm-debug-origin="do_update_resource" crm_feature_set="3.6.3" transition-key="151:50:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;151:50:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-2" call-id="8" rc-code="0" op-status="0" interval="0" last-rc-change="1608666979" last-run="1608666979" exec-time="370" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
|
|
+ <lrm_rsc_op id="httpd_monitor_15000" operation_key="httpd_monitor_15000" operation="monitor" crm-debug-origin="do_update_resource" crm_feature_set="3.6.3" transition-key="152:50:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;152:50:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-2" call-id="9" rc-code="0" op-status="0" interval="15000" last-rc-change="1608666979" exec-time="102" queue-time="0" op-digest="3ef575c5f050ae086f0f31bc8f085fdc"/>
|
|
+ </lrm_resource>
|
|
+ </lrm_resources>
|
|
+ </lrm>
|
|
+ <transient_attributes id="bundle10-0">
|
|
+ <instance_attributes id="status-bundle10-0"/>
|
|
+ </transient_attributes>
|
|
+ </node_state>
|
|
+ <node_state remote_node="true" id="bundle11-0" uname="bundle11-0" in_ccm="true" crm-debug-origin="do_state_transition" node_fenced="0">
|
|
+ <lrm id="bundle11-0">
|
|
+ <lrm_resources>
|
|
+ <lrm_resource id="bundle11a" type="Dummy" class="ocf" provider="pacemaker">
|
|
+ <lrm_rsc_op id="bundle11a_last_0" operation_key="bundle11a_start_0" operation="start" crm-debug-origin="do_update_resource" crm_feature_set="3.6.3" transition-key="167:49:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;167:49:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-1" call-id="8" rc-code="0" op-status="0" interval="0" last-rc-change="1608666977" last-run="1608666977" exec-time="45" 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="bundle11a_monitor_15000" operation_key="bundle11a_monitor_15000" operation="monitor" crm-debug-origin="do_update_resource" crm_feature_set="3.6.3" transition-key="168:49:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;168:49:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-1" call-id="9" rc-code="0" op-status="0" interval="15000" last-rc-change="1608666977" exec-time="12" queue-time="0" op-digest="3ef575c5f050ae086f0f31bc8f085fdc" op-secure-params=" passwd " op-secure-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
|
|
+ </lrm_resource>
|
|
+ </lrm_resources>
|
|
+ </lrm>
|
|
+ <transient_attributes id="bundle11-0">
|
|
+ <instance_attributes id="status-bundle11-0"/>
|
|
+ </transient_attributes>
|
|
+ </node_state>
|
|
+ <node_state remote_node="true" id="bundle10-1" uname="bundle10-1" in_ccm="true" crm-debug-origin="do_state_transition" node_fenced="0">
|
|
+ <lrm id="bundle10-1">
|
|
+ <lrm_resources>
|
|
+ <lrm_resource id="httpd" type="apache" class="ocf" provider="heartbeat">
|
|
+ <lrm_rsc_op id="httpd_last_0" operation_key="httpd_start_0" operation="start" crm-debug-origin="do_update_resource" crm_feature_set="3.6.3" transition-key="155:8:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;155:8:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-3" call-id="8" rc-code="0" op-status="0" interval="0" last-rc-change="1608662188" last-run="1608662188" exec-time="311" queue-time="0" op-digest="f2317cad3d54cec5d7d7aa7d0bf35cf8"/>
|
|
+ <lrm_rsc_op id="httpd_monitor_15000" operation_key="httpd_monitor_15000" operation="monitor" crm-debug-origin="do_update_resource" crm_feature_set="3.6.3" transition-key="156:8:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" transition-magic="0:0;156:8:0:e60a9d33-43b6-479c-9d03-d6d1639f0412" exit-reason="" on_node="rhel7-3" call-id="9" rc-code="0" op-status="0" interval="15000" last-rc-change="1608662189" exec-time="78" queue-time="0" op-digest="3ef575c5f050ae086f0f31bc8f085fdc"/>
|
|
+ </lrm_resource>
|
|
+ </lrm_resources>
|
|
+ </lrm>
|
|
+ <transient_attributes id="bundle10-1">
|
|
+ <instance_attributes id="status-bundle10-1"/>
|
|
+ </transient_attributes>
|
|
+ </node_state>
|
|
+ </status>
|
|
+</cib>
|
|
--
|
|
1.8.3.1
|
|
|