diff --git a/doc/sphinx/Pacemaker_Explained/advanced-resources.rst b/doc/sphinx/Pacemaker_Explained/advanced-resources.rst
index 4e6a5c6d47..5d32685a3c 100644
--- a/doc/sphinx/Pacemaker_Explained/advanced-resources.rst
+++ b/doc/sphinx/Pacemaker_Explained/advanced-resources.rst
@@ -1,1643 +1,1643 @@
 Advanced Resource Types
 -----------------------
 
 .. index:
    single: group resource
    single: resource; group
 
 .. _group-resources:
 
 Groups - A Syntactic Shortcut
 #############################
 
 One of the most common elements of a cluster is a set of resources
 that need to be located together, start sequentially, and stop in the
 reverse order.  To simplify this configuration, we support the concept
 of groups.
    
 .. topic:: A group of two primitive resources
 
    .. code-block:: xml
 
       <group id="shortcut">
          <primitive id="Public-IP" class="ocf" type="IPaddr" provider="heartbeat">
           <instance_attributes id="params-public-ip">
              <nvpair id="public-ip-addr" name="ip" value="192.0.2.2"/>
           </instance_attributes>
          </primitive>
          <primitive id="Email" class="lsb" type="exim"/>
       </group> 
    
 Although the example above contains only two resources, there is no
 limit to the number of resources a group can contain.  The example is
 also sufficient to explain the fundamental properties of a group:
    
 * Resources are started in the order they appear in (**Public-IP** first,
   then **Email**)
 * Resources are stopped in the reverse order to which they appear in
   (**Email** first, then **Public-IP**)
    
 If a resource in the group can't run anywhere, then nothing after that
 is allowed to run, too.
    
 * If **Public-IP** can't run anywhere, neither can **Email**;
 * but if **Email** can't run anywhere, this does not affect **Public-IP**
   in any way
    
 The group above is logically equivalent to writing:
    
 .. topic:: How the cluster sees a group resource
 
    .. code-block:: xml
 
       <configuration>
          <resources>
           <primitive id="Public-IP" class="ocf" type="IPaddr" provider="heartbeat">
            <instance_attributes id="params-public-ip">
               <nvpair id="public-ip-addr" name="ip" value="192.0.2.2"/>
            </instance_attributes>
           </primitive>
           <primitive id="Email" class="lsb" type="exim"/>
          </resources>
          <constraints>
             <rsc_colocation id="xxx" rsc="Email" with-rsc="Public-IP" score="INFINITY"/>
             <rsc_order id="yyy" first="Public-IP" then="Email"/>
          </constraints>
       </configuration> 
 
 Obviously as the group grows bigger, the reduced configuration effort
 can become significant.
 
 Another (typical) example of a group is a DRBD volume, the filesystem
 mount, an IP address, and an application that uses them.
 
 .. index::
    pair: XML element; group
 
 Group Properties
 ________________
 
 .. table:: **Properties of a Group Resource**
 
    +-------+--------------------------------------+
    | Field | Description                          |
    +=======+======================================+
    | id    | .. index::                           |
    |       |    single: group; property, id       |
    |       |    single: property; id (group)      |
    |       |    single: id; group property        |
    |       |                                      |
    |       | A unique name for the group          |
    +-------+--------------------------------------+
 
 Group Options
 _____________
 
 Groups inherit the ``priority``, ``target-role``, and ``is-managed`` properties
 from primitive resources. See :ref:`resource_options` for information about
 those properties.
    
 Group Instance Attributes
 _________________________
 
 Groups have no instance attributes. However, any that are set for the group
 object will be inherited by the group's children.
    
 Group Contents
 ______________
 
 Groups may only contain a collection of cluster resources (see
 :ref:`primitive-resource`).  To refer to a child of a group resource, just use
 the child's ``id`` instead of the group's.
    
 Group Constraints
 _________________
    
 Although it is possible to reference a group's children in
 constraints, it is usually preferable to reference the group itself.
    
 .. topic:: Some constraints involving groups
 
    .. code-block:: xml
 
       <constraints>
           <rsc_location id="group-prefers-node1" rsc="shortcut" node="node1" score="500"/>
           <rsc_colocation id="webserver-with-group" rsc="Webserver" with-rsc="shortcut"/>
           <rsc_order id="start-group-then-webserver" first="Webserver" then="shortcut"/>
       </constraints> 
 
 .. index::
    pair: resource-stickiness; group
 
 Group Stickiness
 ________________
    
 Stickiness, the measure of how much a resource wants to stay where it
 is, is additive in groups.  Every active resource of the group will
 contribute its stickiness value to the group's total.  So if the
 default ``resource-stickiness`` is 100, and a group has seven members,
 five of which are active, then the group as a whole will prefer its
 current location with a score of 500.
 
 .. index::
    single: clone resource
    single: resource; clone
    
 .. _s-resource-clone:
 
 Clones - Resources That Can Have Multiple Active Instances
 ##########################################################
 
 *Clone* resources are resources that can have more than one copy active at the
 same time. This allows you, for example, to run a copy of a daemon on every
 node. You can clone any primitive or group resource [#]_.
    
 Anonymous versus Unique Clones
 ______________________________
    
 A clone resource is configured to be either *anonymous* or *globally unique*.
    
 Anonymous clones are the simplest. These behave completely identically
 everywhere they are running. Because of this, there can be only one instance of
 an anonymous clone active per node.
          
 The instances of globally unique clones are distinct entities. All instances
 are launched identically, but one instance of the clone is not identical to any
 other instance, whether running on the same node or a different node. As an
 example, a cloned IP address can use special kernel functionality such that
 each instance handles a subset of requests for the same IP address.
 
 .. index::
    single: Promotable Clone Resources
    single: resource; promotable
 
 .. _s-resource-promotable:
 
 Promotable clones
 _________________
 
 If a clone is *promotable*, its instances can perform a special role that
 Pacemaker will manage via the ``promote`` and ``demote`` actions of the resource
 agent.
 
 Services that support such a special role have various terms for the special
 role and the default role: primary and secondary, master and replica,
 controller and worker, etc. Pacemaker uses the terms *master* and *slave* [#]_,
 but is agnostic to what the service calls them or what they do.
    
 All that Pacemaker cares about is that an instance comes up in the default role
 when started, and the resource agent supports the ``promote`` and ``demote`` actions
 to manage entering and exiting the special role.
 
 .. index::
    pair: XML element; clone
    
 Clone Properties
 ________________
    
 .. table:: **Properties of a Clone Resource**
 
    +-------+--------------------------------------+
    | Field | Description                          |
    +=======+======================================+
    | id    | .. index::                           |
    |       |    single: clone; property, id       |
    |       |    single: property; id (clone)      |
    |       |    single: id; clone property        |
    |       |                                      |
    |       | A unique name for the clone          |
    +-------+--------------------------------------+
 
 .. index::
    pair: options; clone
 
 Clone Options
 _____________
 
 :ref:`Options <resource_options>` inherited from primitive resources:
 ``priority, target-role, is-managed``
    
 .. table:: **Clone-specific configuration options**
 
    +-------------------+-----------------+-------------------------------------------------------+
    | Field             | Default         | Description                                           |
    +===================+=================+=======================================================+
    | globally-unique   | false           |  .. index::                                           |
    |                   |                 |     single: clone; option, globally-unique            |
    |                   |                 |     single: option; globally-unique (clone)           |
    |                   |                 |     single: globally-unique; clone option             |
    |                   |                 |                                                       |
    |                   |                 | If **true**, each clone instance performs a           |
    |                   |                 | distinct function                                     |
    +-------------------+-----------------+-------------------------------------------------------+
    | clone-max         | number of nodes | .. index::                                            |
    |                   | in the cluster  |    single: clone; option, clone-max                   |
    |                   |                 |    single: option; clone-max (clone)                  |
    |                   |                 |    single: clone-max; clone option                    |
    |                   |                 |                                                       |
    |                   |                 | The maximum number of clone instances that can        |
    |                   |                 | be started across the entire cluster                  |
    +-------------------+-----------------+-------------------------------------------------------+
    | clone-node-max    | 1               | .. index::                                            |
    |                   |                 |    single: clone; option, clone-node-max              |
    |                   |                 |    single: option; clone-node-max (clone)             |
    |                   |                 |    single: clone-node-max; clone option               |
    |                   |                 |                                                       |
    |                   |                 | If ``globally-unique`` is **true**, the maximum       |
    |                   |                 | number of clone instances that can be started         |
    |                   |                 | on a single node                                      |
    +-------------------+-----------------+-------------------------------------------------------+
    | clone-min         | 0               | .. index::                                            |
    |                   |                 |    single: clone; option, clone-min                   |
    |                   |                 |    single: option; clone-min (clone)                  |
    |                   |                 |    single: clone-min; clone option                    |
    |                   |                 |                                                       |
    |                   |                 | Require at least this number of clone instances       |
    |                   |                 | to be runnable before allowing resources              |
    |                   |                 | depending on the clone to be runnable. A value        |
    |                   |                 | of 0 means require all clone instances to be          |
    |                   |                 | runnable.                                             |
    +-------------------+-----------------+-------------------------------------------------------+
    | notify            | false           | .. index::                                            |
    |                   |                 |    single: clone; option, notify                      |
    |                   |                 |    single: option; notify (clone)                     |
    |                   |                 |    single: notify; clone option                       |
    |                   |                 |                                                       |
    |                   |                 | Call the resource agent's **notify** action for       |
    |                   |                 | all active instances, before and after starting       |
    |                   |                 | or stopping any clone instance. The resource          |
    |                   |                 | agent must support this action.                       |
    |                   |                 | Allowed values: **false**, **true**                   |
    +-------------------+-----------------+-------------------------------------------------------+
    | ordered           | false           | .. index::                                            |
    |                   |                 |    single: clone; option, ordered                     |
    |                   |                 |    single: option; ordered (clone)                    |
    |                   |                 |    single: ordered; clone option                      |
    |                   |                 |                                                       |
    |                   |                 | If **true**, clone instances must be started          |
    |                   |                 | sequentially instead of in parallel.                  |
    |                   |                 | Allowed values: **false**, **true**                   |
    +-------------------+-----------------+-------------------------------------------------------+
    | interleave        | false           | .. index::                                            |
    |                   |                 |    single: clone; option, interleave                  |
    |                   |                 |    single: option; interleave (clone)                 |
    |                   |                 |    single: interleave; clone option                   |
    |                   |                 |                                                       |
    |                   |                 | When this clone is ordered relative to another        |
    |                   |                 | clone, if this option is **false** (the default),     |
    |                   |                 | the ordering is relative to *all* instances of        |
    |                   |                 | the other clone, whereas if this option is            |
    |                   |                 | **true**, the ordering is relative only to            |
    |                   |                 | instances on the same node.                           |
    |                   |                 | Allowed values: **false**, **true**                   |
    +-------------------+-----------------+-------------------------------------------------------+
    | promotable        | false           | .. index::                                            |
    |                   |                 |    single: clone; option, promotable                  |
    |                   |                 |    single: option; promotable (clone)                 |
    |                   |                 |    single: promotable; clone option                   |
    |                   |                 |                                                       |
    |                   |                 | If **true**, clone instances can perform a            |
    |                   |                 | special role that Pacemaker will manage via the       |
    |                   |                 | resource agent's **promote** and **demote**           |
    |                   |                 | actions. The resource agent must support these        |
    |                   |                 | actions.                                              |
    |                   |                 | Allowed values: **false**, **true**                   |
    +-------------------+-----------------+-------------------------------------------------------+
    | promoted-max      | 1               | .. index::                                            |
    |                   |                 |    single: clone; option, promoted-max                |
    |                   |                 |    single: option; promoted-max (clone)               |
    |                   |                 |    single: promoted-max; clone option                 |
    |                   |                 |                                                       |
    |                   |                 | If ``promotable`` is **true**, the number of          |
    |                   |                 | instances that can be promoted at one time            |
    |                   |                 | across the entire cluster                             |
    +-------------------+-----------------+-------------------------------------------------------+
    | promoted-node-max | 1               | .. index::                                            |
    |                   |                 |    single: clone; option, promoted-node-max           |
    |                   |                 |    single: option; promoted-node-max (clone)          |
    |                   |                 |    single: promoted-node-max; clone option            |
    |                   |                 |                                                       |
    |                   |                 | If ``promotable`` is **true** and ``globally-unique`` |
    |                   |                 | is **false**, the number of clone instances can be    |
    |                   |                 | promoted at one time on a single node                 |
    +-------------------+-----------------+-------------------------------------------------------+
    
 For backward compatibility, ``master-max`` and ``master-node-max`` are accepted as
 aliases for ``promoted-max`` and ``promoted-node-max``, but are deprecated since
 2.0.0, and support for them will be removed in a future version.
    
 Clone Contents
 ______________
    
 Clones must contain exactly one primitive or group resource.
    
 .. topic:: A clone that runs a web server on all nodes
 
    .. code-block:: xml
 
       <clone id="apache-clone">
           <primitive id="apache" class="lsb" type="apache">
               <operations>
                  <op id="apache-monitor" name="monitor" interval="30"/>
               </operations>
           </primitive>
       </clone> 
 
 .. warning::
 
    You should never reference the name of a clone's child (the primitive or group
    resource being cloned). If you think you need to do this, you probably need to
    re-evaluate your design.
    
 Clone Instance Attribute
 ________________________
    
 Clones have no instance attributes; however, any that are set here will be
 inherited by the clone's child.
    
 Clone Constraints
 _________________
    
 In most cases, a clone will have a single instance on each active cluster
 node.  If this is not the case, you can indicate which nodes the
 cluster should preferentially assign copies to with resource location
 constraints.  These constraints are written no differently from those
 for primitive resources except that the clone's **id** is used.
    
 .. topic:: Some constraints involving clones
 
    .. code-block:: xml
 
       <constraints>
           <rsc_location id="clone-prefers-node1" rsc="apache-clone" node="node1" score="500"/>
           <rsc_colocation id="stats-with-clone" rsc="apache-stats" with="apache-clone"/>
           <rsc_order id="start-clone-then-stats" first="apache-clone" then="apache-stats"/>
       </constraints> 
    
 Ordering constraints behave slightly differently for clones.  In the
 example above, ``apache-stats`` will wait until all copies of ``apache-clone``
 that need to be started have done so before being started itself.
 Only if *no* copies can be started will ``apache-stats`` be prevented
 from being active.  Additionally, the clone will wait for
 ``apache-stats`` to be stopped before stopping itself.
 
 Colocation of a primitive or group resource with a clone means that
 the resource can run on any node with an active instance of the clone.
 The cluster will choose an instance based on where the clone is running and
 the resource's own location preferences.
 
 Colocation between clones is also possible.  If one clone **A** is colocated
 with another clone **B**, the set of allowed locations for **A** is limited to
 nodes on which **B** is (or will be) active.  Placement is then performed
 normally.
    
 Promotable Clone Constraints
 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    
 For promotable clone resources, the ``first-action`` and/or ``then-action`` fields
 for ordering constraints may be set to ``promote`` or ``demote`` to constrain the
 master role, and colocation constraints may contain ``rsc-role`` and/or
 ``with-rsc-role`` fields.
 
 .. index::
    single: constraint; colocation
              
 .. table:: **Additional colocation constraint options for promotable clone resources**
 
    +---------------+---------+-------------------------------------------------------+
    | Field         | Default | Description                                           |
    +===============+=========+=======================================================+
    | rsc-role      | Started | .. index::                                            |
    |               |         |    single: clone; ordering constraint, rsc-role       |
    |               |         |    single: ordering constraint; rsc-role (clone)      |
    |               |         |    single: rsc-role; clone ordering constraint        |
    |               |         |                                                       |
    |               |         | An additional attribute of colocation constraints     |
    |               |         | that specifies the role that ``rsc`` must be in.      |
    |               |         | Allowed values: **Started**, **Master**, **Slave**.   |
    +---------------+---------+-------------------------------------------------------+
    | with-rsc-role | Started | .. index::                                            |
    |               |         |    single: clone; ordering constraint, with-rsc-role  |
    |               |         |    single: ordering constraint; with-rsc-role (clone) |
    |               |         |    single: with-rsc-role; clone ordering constraint   |
    |               |         |                                                       |
    |               |         | An additional attribute of colocation constraints     |
    |               |         | that specifies the role that ``with-rsc`` must be in. |
    |               |         | Allowed values: **Started**, **Master**, **Slave**.   |
    +---------------+---------+-------------------------------------------------------+
    
 .. topic:: Constraints involving promotable clone resources       
 
    .. code-block:: xml
 
       <constraints>
          <rsc_location id="db-prefers-node1" rsc="database" node="node1" score="500"/>
          <rsc_colocation id="backup-with-db-slave" rsc="backup"
            with-rsc="database" with-rsc-role="Slave"/>
          <rsc_colocation id="myapp-with-db-master" rsc="myApp"
            with-rsc="database" with-rsc-role="Master"/>
          <rsc_order id="start-db-before-backup" first="database" then="backup"/>
          <rsc_order id="promote-db-then-app" first="database" first-action="promote"
            then="myApp" then-action="start"/>
       </constraints> 
 
 In the example above, **myApp** will wait until one of the database
 copies has been started and promoted to master before being started
 itself on the same node.  Only if no copies can be promoted will **myApp** be
 prevented from being active.  Additionally, the cluster will wait for
 **myApp** to be stopped before demoting the database.
 
 Colocation of a primitive or group resource with a promotable clone
 resource means that it can run on any node with an active instance of
 the promotable clone resource that has the specified role (**master** or
 **slave**).  In the example above, the cluster will choose a location based on
 where database is running as a **master**, and if there are multiple
 **master** instances it will also factor in **myApp**'s own location
 preferences when deciding which location to choose.
 
 Colocation with regular clones and other promotable clone resources is also
 possible.  In such cases, the set of allowed locations for the **rsc**
 clone is (after role filtering) limited to nodes on which the
 ``with-rsc`` promotable clone resource is (or will be) in the specified role.
 Placement is then performed as normal.
    
 Using Promotable Clone Resources in Colocation Sets
 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 
 .. index::
    single: constraint; colocation
    single: constraint; resource set
    
 .. table:: **Additional colocation set options relevant to promotable clone resources**
 
    +-------+---------+-----------------------------------------------------+
    | Field | Default | Description                                         |
    +=======+=========+=====================================================+
    | role  | Started | .. index::                                          |
    |       |         |    single: clone; ordering constraint; role         |
    |       |         |    single: ordering constraint; role (clone)        |
    |       |         |    single: role; clone ordering constraint          |
    |       |         |                                                     |
    |       |         | The role that *all members* of the set must be in.  |
    |       |         | Allowed values: **Started**, **Master**, **Slave**. |
    +-------+---------+-----------------------------------------------------+
 
 In the following example **B**'s master must be located on the same node as **A**'s master.
 Additionally resources **C** and **D** must be located on the same node as **A**'s
 and **B**'s masters.
    
 .. topic:: Colocate C and D with A's and B's master instances
 
    .. code-block:: xml
 
       <constraints>
           <rsc_colocation id="coloc-1" score="INFINITY" >
             <resource_set id="colocated-set-example-1" sequential="true" role="Master">
               <resource_ref id="A"/>
               <resource_ref id="B"/>
             </resource_set>
             <resource_set id="colocated-set-example-2" sequential="true">
               <resource_ref id="C"/>
               <resource_ref id="D"/>
             </resource_set>
           </rsc_colocation>
       </constraints>
    
 Using Promotable Clone Resources in Ordered Sets
 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 
 .. index::
    single: constraint; colocation
    single: constraint; resource set
    
 .. table:: **Additional ordered set options relevant to promotable clone resources**
    
    +--------+------------------+-----------------------------------------------------+
    | Field  | Default          | Description                                         |
    +=======++==================+=====================================================+
    | action | value of         | .. index::                                          |
    |        | ``first-action`` |    single: clone; ordering constraint; action       |
    |        |                  |    single: ordering constraintl action (clone)      |
    |        |                  |    single: action; clone ordering constraint        |
    |        |                  |                                                     |
    |        |                  | An additional attribute of ordering constraint      |
    |        |                  | sets that specifies the action that applies to      |
    |        |                  | *all members* of the set.                           |
    |        |                  | Allowed values: **start**, **stop**, **promote**,   |
    |        |                  | **demote**.                                         |
    +--------+------------------+-----------------------------------------------------+
    
 .. topic:: Start C and D after first promoting A and B
 
    .. code-block:: xml
 
       <constraints>
           <rsc_order id="order-1" score="INFINITY" >
             <resource_set id="ordered-set-1" sequential="true" action="promote">
               <resource_ref id="A"/>
               <resource_ref id="B"/>
             </resource_set>
             <resource_set id="ordered-set-2" sequential="true" action="start">
               <resource_ref id="C"/>
               <resource_ref id="D"/>
             </resource_set>
           </rsc_order>
       </constraints>
    
 In the above example, **B** cannot be promoted to a master role until **A** has
 been promoted. Additionally, resources **C** and **D** must wait until **A** and **B**
 have been promoted before they can start.
 
 .. index::
    pair: resource-stickiness; clone
    
 .. _s-clone-stickiness:
 
 Clone Stickiness
 ________________
    
 To achieve a stable allocation pattern, clones are slightly sticky by
 default.  If no value for ``resource-stickiness`` is provided, the clone
 will use a value of 1.  Being a small value, it causes minimal
 disturbance to the score calculations of other resources but is enough
 to prevent Pacemaker from needlessly moving copies around the cluster.
    
 .. note::
 
    For globally unique clones, this may result in multiple instances of the
    clone staying on a single node, even after another eligible node becomes
    active (for example, after being put into standby mode then made active again).
    If you do not want this behavior, specify a ``resource-stickiness`` of 0
    for the clone temporarily and let the cluster adjust, then set it back
    to 1 if you want the default behavior to apply again.
    
 .. important::
 
    If ``resource-stickiness`` is set in the ``rsc_defaults`` section, it will
    apply to clone instances as well. This means an explicit ``resource-stickiness``
    of 0 in ``rsc_defaults`` works differently from the implicit default used when
    ``resource-stickiness`` is not specified.
    
 Clone Resource Agent Requirements
 _________________________________
    
 Any resource can be used as an anonymous clone, as it requires no
 additional support from the resource agent.  Whether it makes sense to
 do so depends on your resource and its resource agent.
    
 Resource Agent Requirements for Globally Unique Clones
 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    
 Globally unique clones require additional support in the resource agent. In
 particular, it must only respond with ``${OCF_SUCCESS}`` if the node has that
 exact instance active. All other probes for instances of the clone should
 result in ``${OCF_NOT_RUNNING}`` (or one of the other OCF error codes if
 they are failed).
 
 Individual instances of a clone are identified by appending a colon and a
 numerical offset, e.g. **apache:2**.
 
 Resource agents can find out how many copies there are by examining
 the ``OCF_RESKEY_CRM_meta_clone_max`` environment variable and which
 instance it is by examining ``OCF_RESKEY_CRM_meta_clone``.
 
 The resource agent must not make any assumptions (based on
 ``OCF_RESKEY_CRM_meta_clone``) about which numerical instances are active.  In
 particular, the list of active copies will not always be an unbroken
 sequence, nor always start at 0.
    
 Resource Agent Requirements for Promotable Clones
 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 
 Promotable clone resources require two extra actions, ``demote`` and ``promote``,
 which are responsible for changing the state of the resource. Like **start** and
 **stop**, they should return ``${OCF_SUCCESS}`` if they completed successfully or
 a relevant error code if they did not.
 
 The states can mean whatever you wish, but when the resource is
 started, it must come up in the mode called **slave**.  From there the
 cluster will decide which instances to promote to **master**.
 
 In addition to the clone requirements for monitor actions, agents must
 also *accurately* report which state they are in.  The cluster relies
 on the agent to report its status (including role) accurately and does
 not indicate to the agent what role it currently believes it to be in.
    
 .. table:: **Role implications of OCF return codes**
 
    +---------------------+------------------------------------------------+
    | Monitor Return Code | Description                                    |
    +=====================+================================================+
    | OCF_NOT_RUNNING     | .. index::                                     |
    |                     |    single: OCF_NOT_RUNNING                     |
    |                     |    single: OCF return code; OCF_NOT_RUNNING    |
    |                     |                                                |
    |                     | Stopped                                        |
    +---------------------+------------------------------------------------+
    | OCF_SUCCESS         | .. index::                                     |
    |                     |    single: OCF_SUCCESS                         |
    |                     |    single: OCF return code; OCF_SUCCESS        |
    |                     |                                                |
    |                     | Running (Slave)                                |
    +---------------------+------------------------------------------------+
    | OCF_RUNNING_MASTER  | .. index::                                     |
    |                     |    single: OCF_RUNNING_MASTER                  |
    |                     |    single: OCF return code; OCF_RUNNING_MASTER |
    |                     |                                                |
    |                     | Running (Master)                               |
    +---------------------+------------------------------------------------+
    | OCF_FAILED_MASTER   | .. index::                                     |
    |                     |    single: OCF_FAILED_MASTER                   |
    |                     |    single: OCF return code; OCF_FAILED_MASTER  |
    |                     |                                                |
    |                     | Failed (Master)                                |
    +---------------------+------------------------------------------------+
    | Other               | .. index::                                     |
    |                     |    single: return code                         |
    |                     |                                                |
    |                     | Failed (Slave)                                 |
    +---------------------+------------------------------------------------+
    
 Clone Notifications
 ~~~~~~~~~~~~~~~~~~~
    
 If the clone has the ``notify`` meta-attribute set to **true**, and the resource
 agent supports the ``notify`` action, Pacemaker will call the action when
 appropriate, passing a number of extra variables which, when combined with
 additional context, can be used to calculate the current state of the cluster
 and what is about to happen to it.
 
 .. index::
    single: clone; environment variables
    single: notify; environment variables
    
 .. table:: **Environment variables supplied with Clone notify actions**
 
    +----------------------------------------------+-------------------------------------------------------------------------------+
    | Variable                                     | Description                                                                   |
    +==============================================+===============================================================================+
    | OCF_RESKEY_CRM_meta_notify_type              | .. index::                                                                    |
    |                                              |    single: environment variable; OCF_RESKEY_CRM_meta_notify_type              |
    |                                              |    single: OCF_RESKEY_CRM_meta_notify_type                                    |
    |                                              |                                                                               |
    |                                              | Allowed values: **pre**, **post**                                             |
    +----------------------------------------------+-------------------------------------------------------------------------------+
    | OCF_RESKEY_CRM_meta_notify_operation         | .. index::                                                                    |
    |                                              |    single: environment variable; OCF_RESKEY_CRM_meta_notify_operation         |
    |                                              |    single: OCF_RESKEY_CRM_meta_notify_operation                               |
    |                                              |                                                                               |
    |                                              | Allowed values: **start**, **stop**                                           |
    +----------------------------------------------+-------------------------------------------------------------------------------+
    | OCF_RESKEY_CRM_meta_notify_start_resource    | .. index::                                                                    |
    |                                              |    single: environment variable; OCF_RESKEY_CRM_meta_notify_start_resource    |
    |                                              |    single: OCF_RESKEY_CRM_meta_notify_start_resource                          |
    |                                              |                                                                               |
    |                                              | Resources to be started                                                       |
    +----------------------------------------------+-------------------------------------------------------------------------------+
    | OCF_RESKEY_CRM_meta_notify_stop_resource     | .. index::                                                                    |
    |                                              |    single: environment variable; OCF_RESKEY_CRM_meta_notify_stop_resource     |
    |                                              |    single: OCF_RESKEY_CRM_meta_notify_stop_resource                           |
    |                                              |                                                                               |
    |                                              | Resources to be stopped                                                       |
    +----------------------------------------------+-------------------------------------------------------------------------------+
    | OCF_RESKEY_CRM_meta_notify_active_resource   | .. index::                                                                    |
    |                                              |    single: environment variable; OCF_RESKEY_CRM_meta_notify_active_resource   |
    |                                              |    single: OCF_RESKEY_CRM_meta_notify_active_resource                         |
    |                                              |                                                                               |
    |                                              | Resources that are running                                                    |
    +----------------------------------------------+-------------------------------------------------------------------------------+
    | OCF_RESKEY_CRM_meta_notify_inactive_resource | .. index::                                                                    |
    |                                              |    single: environment variable; OCF_RESKEY_CRM_meta_notify_inactive_resource |
    |                                              |    single: OCF_RESKEY_CRM_meta_notify_inactive_resource                       |
    |                                              |                                                                               |
    |                                              | Resources that are not running                                                |
    +----------------------------------------------+-------------------------------------------------------------------------------+
    | OCF_RESKEY_CRM_meta_notify_start_uname       | .. index::                                                                    |
    |                                              |    single: environment variable; OCF_RESKEY_CRM_meta_notify_start_uname       |
    |                                              |    single: OCF_RESKEY_CRM_meta_notify_start_uname                             |
    |                                              |                                                                               |
    |                                              | Nodes on which resources will be started                                      |
    +----------------------------------------------+-------------------------------------------------------------------------------+
    | OCF_RESKEY_CRM_meta_notify_stop_uname        | .. index::                                                                    |
    |                                              |    single: environment variable; OCF_RESKEY_CRM_meta_notify_stop_uname        |
    |                                              |    single: OCF_RESKEY_CRM_meta_notify_stop_uname                              |
    |                                              |                                                                               |
    |                                              | Nodes on which resources will be stopped                                      |
    +----------------------------------------------+-------------------------------------------------------------------------------+
    | OCF_RESKEY_CRM_meta_notify_active_uname      | .. index::                                                                    |
    |                                              |    single: environment variable; OCF_RESKEY_CRM_meta_notify_active_uname      |
    |                                              |    single: OCF_RESKEY_CRM_meta_notify_active_uname                            |
    |                                              |                                                                               |
    |                                              | Nodes on which resources are running                                          |
    +----------------------------------------------+-------------------------------------------------------------------------------+
 
 The variables come in pairs, such as
 ``OCF_RESKEY_CRM_meta_notify_start_resource`` and
 ``OCF_RESKEY_CRM_meta_notify_start_uname``, and should be treated as an
 array of whitespace-separated elements.
 
 ``OCF_RESKEY_CRM_meta_notify_inactive_resource`` is an exception, as the
 matching **uname** variable does not exist since inactive resources
 are not running on any node.
 
 Thus, in order to indicate that **clone:0** will be started on **sles-1**,
 **clone:2** will be started on **sles-3**, and **clone:3** will be started
 on **sles-2**, the cluster would set:
    
 .. topic:: Notification variables
 
    .. code-block:: none
 
       OCF_RESKEY_CRM_meta_notify_start_resource="clone:0 clone:2 clone:3"
       OCF_RESKEY_CRM_meta_notify_start_uname="sles-1 sles-3 sles-2"
 
 .. note::
 
    Pacemaker will log but otherwise ignore failures of notify actions.
    
 Interpretation of Notification Variables
 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    
 **Pre-notification (stop):**
    
 * Active resources: ``$OCF_RESKEY_CRM_meta_notify_active_resource``
 * Inactive resources: ``$OCF_RESKEY_CRM_meta_notify_inactive_resource``
 * Resources to be started: ``$OCF_RESKEY_CRM_meta_notify_start_resource``
 * Resources to be stopped: ``$OCF_RESKEY_CRM_meta_notify_stop_resource``
    
 **Post-notification (stop) / Pre-notification (start):**
    
 * Active resources
 
     * ``$OCF_RESKEY_CRM_meta_notify_active_resource``
     * minus ``$OCF_RESKEY_CRM_meta_notify_stop_resource``
 
 * Inactive resources
 
     * ``$OCF_RESKEY_CRM_meta_notify_inactive_resource``
     * plus ``$OCF_RESKEY_CRM_meta_notify_stop_resource`` 
 
 * Resources that were started: ``$OCF_RESKEY_CRM_meta_notify_start_resource``
 * Resources that were stopped: ``$OCF_RESKEY_CRM_meta_notify_stop_resource``
    
 **Post-notification (start):**
    
 * Active resources:
 
     * ``$OCF_RESKEY_CRM_meta_notify_active_resource``
     * minus ``$OCF_RESKEY_CRM_meta_notify_stop_resource``
     * plus ``$OCF_RESKEY_CRM_meta_notify_start_resource``
 
 * Inactive resources:
 
     * ``$OCF_RESKEY_CRM_meta_notify_inactive_resource``
     * plus ``$OCF_RESKEY_CRM_meta_notify_stop_resource``
     * minus ``$OCF_RESKEY_CRM_meta_notify_start_resource``
 
 * Resources that were started: ``$OCF_RESKEY_CRM_meta_notify_start_resource``
 * Resources that were stopped: ``$OCF_RESKEY_CRM_meta_notify_stop_resource``
    
 Extra Notifications for Promotable Clones
 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 
 .. index::
    single: clone; environment variables
    single: promotable; environment variables
    
 .. table:: **Extra environment variables supplied for promotable clones**
 
    +---------------------------------------------+------------------------------------------------------------------------------+
    | Variable                                    | Description                                                                  |
    +=============================================+==============================================================================+
    | OCF_RESKEY_CRM_meta_notify_master_resource  | .. index::                                                                   |
    |                                             |    single: environment variable; OCF_RESKEY_CRM_meta_notify_master_resource  |
    |                                             |    single: OCF_RESKEY_CRM_meta_notify_master_resource                        |
    |                                             |                                                                              |
    |                                             | Resources that are running in **Master** mode                                |
    +---------------------------------------------+------------------------------------------------------------------------------+
    | OCF_RESKEY_CRM_meta_notify_slave_resource   | .. index::                                                                   |
    |                                             |    single: environment variable; OCF_RESKEY_CRM_meta_notify_slave_resource   |
    |                                             |    single: OCF_RESKEY_CRM_meta_notify_slave_resource                         |
    |                                             |                                                                              |
    |                                             | Resources that are running in **Slave** mode                                 |
    +---------------------------------------------+------------------------------------------------------------------------------+
    | OCF_RESKEY_CRM_meta_notify_promote_resource | .. index::                                                                   |
    |                                             |    single: environment variable; OCF_RESKEY_CRM_meta_notify_promote_resource |
    |                                             |    single: OCF_RESKEY_CRM_meta_notify_promote_resource                       |
    |                                             |                                                                              |
    |                                             | Resources to be promoted                                                     |
    +---------------------------------------------+------------------------------------------------------------------------------+
    | OCF_RESKEY_CRM_meta_notify_demote_resource  | .. index::                                                                   |
    |                                             |    single: environment variable; OCF_RESKEY_CRM_meta_notify_demote_resource  |
    |                                             |    single: OCF_RESKEY_CRM_meta_notify_demote_resource                        |
    |                                             |                                                                              |
    |                                             | Resources to be demoted                                                      |
    +---------------------------------------------+------------------------------------------------------------------------------+
    | OCF_RESKEY_CRM_meta_notify_promote_uname    | .. index::                                                                   |
    |                                             |    single: environment variable; OCF_RESKEY_CRM_meta_notify_promote_uname    |
    |                                             |    single: OCF_RESKEY_CRM_meta_notify_promote_uname                          |
    |                                             |                                                                              |
    |                                             | Nodes on which resources will be promoted                                    |
    +---------------------------------------------+------------------------------------------------------------------------------+
    | OCF_RESKEY_CRM_meta_notify_demote_uname     | .. index::                                                                   |
    |                                             |    single: environment variable; OCF_RESKEY_CRM_meta_notify_demote_uname     |
    |                                             |    single: OCF_RESKEY_CRM_meta_notify_demote_uname                           |
    |                                             |                                                                              |
    |                                             | Nodes on which resources will be demoted                                     |
    +---------------------------------------------+------------------------------------------------------------------------------+
    | OCF_RESKEY_CRM_meta_notify_master_uname     | .. index::                                                                   |
    |                                             |    single: environment variable; OCF_RESKEY_CRM_meta_notify_master_uname     |
    |                                             |    single: OCF_RESKEY_CRM_meta_notify_master_uname                           |
    |                                             |                                                                              |
    |                                             | Nodes on which resources are running in **Master** mode                      |
    +---------------------------------------------+------------------------------------------------------------------------------+
    | OCF_RESKEY_CRM_meta_notify_slave_uname      | .. index::                                                                   |
    |                                             |    single: environment variable; OCF_RESKEY_CRM_meta_notify_slave_uname      |
    |                                             |    single: OCF_RESKEY_CRM_meta_notify_slave_uname                            |
    |                                             |                                                                              |
    |                                             | Nodes on which resources are running in **Slave** mode                       |
    +---------------------------------------------+------------------------------------------------------------------------------+
    
 Interpretation of Promotable Notification Variables
 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 
 **Pre-notification (demote):**
 
 * **Active** resources: ``$OCF_RESKEY_CRM_meta_notify_active_resource``
 * **Master** resources: ``$OCF_RESKEY_CRM_meta_notify_master_resource``
 * **Slave** resources: ``$OCF_RESKEY_CRM_meta_notify_slave_resource``
 * Inactive resources: ``$OCF_RESKEY_CRM_meta_notify_inactive_resource``
 * Resources to be started: ``$OCF_RESKEY_CRM_meta_notify_start_resource``
 * Resources to be promoted: ``$OCF_RESKEY_CRM_meta_notify_promote_resource``
 * Resources to be demoted: ``$OCF_RESKEY_CRM_meta_notify_demote_resource``
 * Resources to be stopped: ``$OCF_RESKEY_CRM_meta_notify_stop_resource``
 
 **Post-notification (demote) / Pre-notification (stop):**
 
 * **Active** resources: ``$OCF_RESKEY_CRM_meta_notify_active_resource``
 * **Master** resources:
 
     * ``$OCF_RESKEY_CRM_meta_notify_master_resource``
     * minus ``$OCF_RESKEY_CRM_meta_notify_demote_resource`` 
 
 * **Slave** resources: ``$OCF_RESKEY_CRM_meta_notify_slave_resource``
 * Inactive resources: ``$OCF_RESKEY_CRM_meta_notify_inactive_resource``
 * Resources to be started: ``$OCF_RESKEY_CRM_meta_notify_start_resource``
 * Resources to be promoted: ``$OCF_RESKEY_CRM_meta_notify_promote_resource``
 * Resources to be demoted: ``$OCF_RESKEY_CRM_meta_notify_demote_resource``
 * Resources to be stopped: ``$OCF_RESKEY_CRM_meta_notify_stop_resource``
 * Resources that were demoted: ``$OCF_RESKEY_CRM_meta_notify_demote_resource``
    
 **Post-notification (stop) / Pre-notification (start)**
    
 * **Active** resources:
 
     * ``$OCF_RESKEY_CRM_meta_notify_active_resource``
     * minus ``$OCF_RESKEY_CRM_meta_notify_stop_resource`` 
 
 * **Master** resources:
 
     * ``$OCF_RESKEY_CRM_meta_notify_master_resource``
     * minus ``$OCF_RESKEY_CRM_meta_notify_demote_resource`` 
 
 * **Slave** resources:
 
     * ``$OCF_RESKEY_CRM_meta_notify_slave_resource``
     * minus ``$OCF_RESKEY_CRM_meta_notify_stop_resource`` 
 
 * Inactive resources:
 
     * ``$OCF_RESKEY_CRM_meta_notify_inactive_resource``
     * plus ``$OCF_RESKEY_CRM_meta_notify_stop_resource`` 
 
 * Resources to be started: ``$OCF_RESKEY_CRM_meta_notify_start_resource``
 * Resources to be promoted: ``$OCF_RESKEY_CRM_meta_notify_promote_resource``
 * Resources to be demoted: ``$OCF_RESKEY_CRM_meta_notify_demote_resource``
 * Resources to be stopped: ``$OCF_RESKEY_CRM_meta_notify_stop_resource``
 * Resources that were demoted: ``$OCF_RESKEY_CRM_meta_notify_demote_resource``
 * Resources that were stopped: ``$OCF_RESKEY_CRM_meta_notify_stop_resource``
 
 **Post-notification (start) / Pre-notification (promote)**
 
 * **Active** resources:
 
     * ``$OCF_RESKEY_CRM_meta_notify_active_resource``
     * minus ``$OCF_RESKEY_CRM_meta_notify_stop_resource``
     * plus ``$OCF_RESKEY_CRM_meta_notify_start_resource`` 
 
 * **Master** resources:
 
     * ``$OCF_RESKEY_CRM_meta_notify_master_resource``
     * minus ``$OCF_RESKEY_CRM_meta_notify_demote_resource`` 
 
 * **Slave** resources:
 
     * ``$OCF_RESKEY_CRM_meta_notify_slave_resource``
     * minus ``$OCF_RESKEY_CRM_meta_notify_stop_resource``
     * plus ``$OCF_RESKEY_CRM_meta_notify_start_resource`` 
 
 * Inactive resources:
 
     * ``$OCF_RESKEY_CRM_meta_notify_inactive_resource``
     * plus ``$OCF_RESKEY_CRM_meta_notify_stop_resource``
     * minus ``$OCF_RESKEY_CRM_meta_notify_start_resource``           
 
 * Resources to be started: ``$OCF_RESKEY_CRM_meta_notify_start_resource``
 * Resources to be promoted: ``$OCF_RESKEY_CRM_meta_notify_promote_resource``
 * Resources to be demoted: ``$OCF_RESKEY_CRM_meta_notify_demote_resource``
 * Resources to be stopped: ``$OCF_RESKEY_CRM_meta_notify_stop_resource``
 * Resources that were started: ``$OCF_RESKEY_CRM_meta_notify_start_resource``
 * Resources that were demoted: ``$OCF_RESKEY_CRM_meta_notify_demote_resource``
 * Resources that were stopped: ``$OCF_RESKEY_CRM_meta_notify_stop_resource``
    
 **Post-notification (promote)**
    
 * **Active** resources:
 
     * ``$OCF_RESKEY_CRM_meta_notify_active_resource``
     * minus ``$OCF_RESKEY_CRM_meta_notify_stop_resource``
     * plus ``$OCF_RESKEY_CRM_meta_notify_start_resource`` 
 
 * **Master** resources:
 
     * ``$OCF_RESKEY_CRM_meta_notify_master_resource``
     * minus ``$OCF_RESKEY_CRM_meta_notify_demote_resource``
     * plus ``$OCF_RESKEY_CRM_meta_notify_promote_resource``
 
 * **Slave** resources:
 
     * ``$OCF_RESKEY_CRM_meta_notify_slave_resource``
     * minus ``$OCF_RESKEY_CRM_meta_notify_stop_resource``
     * plus ``$OCF_RESKEY_CRM_meta_notify_start_resource``
     * minus ``$OCF_RESKEY_CRM_meta_notify_promote_resource`` 
 
 * Inactive resources:
 
     * ``$OCF_RESKEY_CRM_meta_notify_inactive_resource``
     * plus ``$OCF_RESKEY_CRM_meta_notify_stop_resource``
     * minus ``$OCF_RESKEY_CRM_meta_notify_start_resource`` 
 
 * Resources to be started: ``$OCF_RESKEY_CRM_meta_notify_start_resource``
 * Resources to be promoted: ``$OCF_RESKEY_CRM_meta_notify_promote_resource``
 * Resources to be demoted: ``$OCF_RESKEY_CRM_meta_notify_demote_resource``
 * Resources to be stopped: ``$OCF_RESKEY_CRM_meta_notify_stop_resource``
 * Resources that were started: ``$OCF_RESKEY_CRM_meta_notify_start_resource``
 * Resources that were promoted: ``$OCF_RESKEY_CRM_meta_notify_promote_resource``
 * Resources that were demoted: ``$OCF_RESKEY_CRM_meta_notify_demote_resource``
 * Resources that were stopped: ``$OCF_RESKEY_CRM_meta_notify_stop_resource``
    
 Monitoring Promotable Clone Resources
 _____________________________________
 
 The usual monitor actions are insufficient to monitor a promotable clone
 resource, because Pacemaker needs to verify not only that the resource is
 active, but also that its actual role matches its intended one.
 
 Define two monitoring actions: the usual one will cover the slave role,
 and an additional one with ``role="master"`` will cover the master role.
    
 .. topic:: Monitoring both states of a promotable clone resource
 
    .. code-block:: xml
 
       <clone id="myMasterRsc">
          <meta_attributes id="myMasterRsc-meta">
              <nvpair name="promotable" value="true"/>
          </meta_attributes>
          <primitive id="myRsc" class="ocf" type="myApp" provider="myCorp">
           <operations>
            <op id="public-ip-slave-check" name="monitor" interval="60"/>
            <op id="public-ip-master-check" name="monitor" interval="61" role="Master"/>
           </operations>
          </primitive>
       </clone> 
    
 .. important::
 
    It is crucial that *every* monitor operation has a different interval!
    Pacemaker currently differentiates between operations
    only by resource and interval; so if (for example) a promotable clone resource
    had the same monitor interval for both roles, Pacemaker would ignore the
    role when checking the status -- which would cause unexpected return
    codes, and therefore unnecessary complications.
    
 .. _s-promotion-scores:
 
 Determining Which Instance is Promoted
 ______________________________________
 
 Pacemaker can choose a promotable clone instance to be promoted in one of two
 ways:
 
 * Promotion scores: These are node attributes set via the ``crm_master`` utility,
   which generally would be called by the resource agent's start action if it
   supports promotable clones. This tool automatically detects both the resource
   and host, and should be used to set a preference for being promoted. Based on
   this, ``promoted-max``, and ``promoted-node-max``, the instance(s) with the
   highest preference will be promoted.
 
 * Constraints: Location constraints can indicate which nodes are most preferred
   as masters.
    
 .. topic:: Explicitly preferring node1 to be promoted to master
 
    .. code-block:: xml
 
       <rsc_location id="master-location" rsc="myMasterRsc">
           <rule id="master-rule" score="100" role="Master">
             <expression id="master-exp" attribute="#uname" operation="eq" value="node1"/>
           </rule>
       </rsc_location> 
 
 .. index:
    single: bundle resource
    single: resource; bundle
    pair: container; Docker
    pair: container; podman
    pair: container; rkt
    
 .. _s-resource-bundle:
 
 Bundles - Isolated Environments
 ###############################
 
 Pacemaker supports a special syntax for launching a
 `container <https://en.wikipedia.org/wiki/Operating-system-level_virtualization>`_
 with any infrastructure it requires: the *bundle*.
    
 Pacemaker bundles support `Docker <https://www.docker.com/>`_,
 `podman <https://podman.io/>`_ *(since 2.0.1)*, and
 `rkt <https://coreos.com/rkt/>`_ container technologies. [#]_
    
 .. topic:: A bundle for a containerized web server
 
    .. code-block:: xml
 
       <bundle id="httpd-bundle">
          <podman image="pcmk:http" replicas="3"/>
          <network ip-range-start="192.168.122.131"
                   host-netmask="24"
                   host-interface="eth0">
             <port-mapping id="httpd-port" port="80"/>
             </network>
          <storage>
             <storage-mapping id="httpd-syslog"
                              source-dir="/dev/log"
                              target-dir="/dev/log"
                              options="rw"/>
             <storage-mapping id="httpd-root"
                              source-dir="/srv/html"
                              target-dir="/var/www/html"
                              options="rw,Z"/>
             <storage-mapping id="httpd-logs"
                              source-dir-root="/var/log/pacemaker/bundles"
                              target-dir="/etc/httpd/logs"
                              options="rw,Z"/>
          </storage>
          <primitive class="ocf" id="httpd" provider="heartbeat" type="apache"/>
       </bundle>
 
 .. index:
    single: bundle resource
    single: resource; bundle
    
 Bundle Prerequisites
 ____________________
    
 Before configuring a bundle in Pacemaker, the user must install the appropriate
 container launch technology (Docker, podman, or rkt), and supply a fully
 configured container image, on every node allowed to run the bundle.
 
 Pacemaker will create an implicit resource of type **ocf:heartbeat:docker**,
 **ocf:heartbeat:podman**, or **ocf:heartbeat:rkt** to manage a bundle's
 container. The user must ensure that the appropriate resource agent is
 installed on every node allowed to run the bundle.
 
 .. index::
    pair: XML element; bundle
    
 Bundle Properties
 _________________
    
 .. table:: **XML Attributes of a bundle Element**
 
    +-------------+-----------------------------------------------+
    | Attribute   | Description                                   |
    +=============+===============================================+
    | id          | .. index::                                    |
    |             |    single: bundle; attribute, id              |
    |             |    single: attribute; id (bundle)             |
    |             |    single: id; bundle attribute               |
    |             |                                               |
    |             | A unique name for the bundle (required)       |
    +-------------+-----------------------------------------------+
    | description | .. index::                                    |
    |             |    single: bundle; attribute, description     |
    |             |    single: attribute; description (bundle)    |
    |             |    single: description; bundle attribute      |
    |             |                                               |
    |             | Arbitrary text (not used by Pacemaker)        |
    +-------------+-----------------------------------------------+
    
 A bundle must contain exactly one ``docker``, ``podman``, or ``rkt`` element.
 
 .. index::
    pair: XML element; docker
    pair: XML element; podman
    pair: XML element; rkt
    single: resource; bundle
    
 Bundle Container Properties
 ___________________________
    
 .. table:: **XML attributes of a docker, podman, or rkt Element**
    
    +-------------------+------------------------------------+---------------------------------------------------+
    | Attribute         | Default                            | Description                                       |
    +===================+====================================+===================================================+
    | image             |                                    | .. index::                                        |
    |                   |                                    |    single: docker; attribute, image               |
    |                   |                                    |    single: attribute; image (docker)              |
    |                   |                                    |    single: image; docker attribute                |
    |                   |                                    |    single: podman; attribute, image               |
    |                   |                                    |    single: attribute; image (podman)              |
    |                   |                                    |    single: image; podman attribute                |
    |                   |                                    |    single: rkt; attribute, image                  |
    |                   |                                    |    single: attribute; image (rkt)                 |
    |                   |                                    |    single: image; rkt attribute                   |
    |                   |                                    |                                                   |
    |                   |                                    | Container image tag (required)                    |
    +-------------------+------------------------------------+---------------------------------------------------+
    | replicas          | Value of ``promoted-max``          | .. index::                                        |
    |                   | if that is positive, else 1        |    single: docker; attribute, replicas            |
    |                   |                                    |    single: attribute; replicas (docker)           |
    |                   |                                    |    single: replicas; docker attribute             |
    |                   |                                    |    single: podman; attribute, replicas            |
    |                   |                                    |    single: attribute; replicas (podman)           |
    |                   |                                    |    single: replicas; podman attribute             |
    |                   |                                    |    single: rkt; attribute, replicas               |
    |                   |                                    |    single: attribute; replicas (rkt)              |
    |                   |                                    |    single: replicas; rkt attribute                |
    |                   |                                    |                                                   |
    |                   |                                    | A positive integer specifying the number of       |
    |                   |                                    | container instances to launch                     |
    +-------------------+------------------------------------+---------------------------------------------------+
    | replicas-per-host | 1                                  | .. index::                                        |
    |                   |                                    |    single: docker; attribute, replicas-per-host   |
    |                   |                                    |    single: attribute; replicas-per-host (docker)  |
    |                   |                                    |    single: replicas-per-host; docker attribute    |
    |                   |                                    |    single: podman; attribute, replicas-per-host   |
    |                   |                                    |    single: attribute; replicas-per-host (podman)  |
    |                   |                                    |    single: replicas-per-host; podman attribute    |
    |                   |                                    |    single: rkt; attribute, replicas-per-host      |
    |                   |                                    |    single: attribute; replicas-per-host (rkt)     |
    |                   |                                    |    single: replicas-per-host; rkt attribute       |
    |                   |                                    |                                                   |
    |                   |                                    | A positive integer specifying the number of       |
    |                   |                                    | container instances allowed to run on a           |
    |                   |                                    | single node                                       |
    +-------------------+------------------------------------+---------------------------------------------------+
    | promoted-max      | 0                                  | .. index::                                        |
    |                   |                                    |    single: docker; attribute, promoted-max        |
    |                   |                                    |    single: attribute; promoted-max (docker)       |
    |                   |                                    |    single: promoted-max; docker attribute         |
    |                   |                                    |    single: podman; attribute, promoted-max        |
    |                   |                                    |    single: attribute; promoted-max (podman)       |
    |                   |                                    |    single: promoted-max; podman attribute         |
    |                   |                                    |    single: rkt; attribute, promoted-max           |
    |                   |                                    |    single: attribute; promoted-max (rkt)          |
    |                   |                                    |    single: promoted-max; rkt attribute            |
    |                   |                                    |                                                   |
    |                   |                                    | A non-negative integer that, if positive,         |
    |                   |                                    | indicates that the containerized service          |
    |                   |                                    | should be treated as a promotable service,        |
    |                   |                                    | with this many replicas allowed to run the        |
    |                   |                                    | service in the master role                        |
    +-------------------+------------------------------------+---------------------------------------------------+
    | network           |                                    | .. index::                                        |
    |                   |                                    |    single: docker; attribute, network             |
    |                   |                                    |    single: attribute; network (docker)            |
    |                   |                                    |    single: network; docker attribute              |
    |                   |                                    |    single: podman; attribute, network             |
    |                   |                                    |    single: attribute; network (podman)            |
    |                   |                                    |    single: network; podman attribute              |
    |                   |                                    |    single: rkt; attribute, network                |
    |                   |                                    |    single: attribute; network (rkt)               |
    |                   |                                    |    single: network; rkt attribute                 |
    |                   |                                    |                                                   |
    |                   |                                    | If specified, this will be passed to the          |
    |                   |                                    | ``docker run``, ``podman run``, or                |
    |                   |                                    | ``rkt run`` command as the network setting        |
    |                   |                                    | for the container.                                |
    +-------------------+------------------------------------+---------------------------------------------------+
    | run-command       | ``/usr/sbin/pacemaker-remoted`` if | .. index::                                        |
    |                   | bundle contains a **primitive**,   |    single: docker; attribute, run-command         |
    |                   | otherwise none                     |    single: attribute; run-command (docker)        |
    |                   |                                    |    single: run-command; docker attribute          |
    |                   |                                    |    single: podman; attribute, run-command         |
    |                   |                                    |    single: attribute; run-command (podman)        |
    |                   |                                    |    single: run-command; podman attribute          |
    |                   |                                    |    single: rkt; attribute, run-command            |
    |                   |                                    |    single: attribute; run-command (rkt)           |
    |                   |                                    |    single: run-command; rkt attribute             |
    |                   |                                    |                                                   |
    |                   |                                    | This command will be run inside the container     |
    |                   |                                    | when launching it ("PID 1"). If the bundle        |
    |                   |                                    | contains a **primitive**, this command *must*     |
    |                   |                                    | start ``pacemaker-remoted`` (but could, for       |
    |                   |                                    | example, be a script that does other stuff, too). |
    +-------------------+------------------------------------+---------------------------------------------------+
    | options           |                                    | .. index::                                        |
    |                   |                                    |    single: docker; attribute, options             |
    |                   |                                    |    single: attribute; options (docker)            |
    |                   |                                    |    single: options; docker attribute              |
    |                   |                                    |    single: podman; attribute, options             |
    |                   |                                    |    single: attribute; options (podman)            |
    |                   |                                    |    single: options; podman attribute              |
    |                   |                                    |    single: rkt; attribute, options                |
    |                   |                                    |    single: attribute; options (rkt)               |
    |                   |                                    |    single: options; rkt attribute                 |
    |                   |                                    |                                                   |
    |                   |                                    | Extra command-line options to pass to the         |
    |                   |                                    | ``docker run``, ``podman run``, or ``rkt run``    |
    |                   |                                    | command                                           |
    +-------------------+------------------------------------+---------------------------------------------------+
    
 .. note::
 
    Considerations when using cluster configurations or container images from
    Pacemaker 1.1:
    
    * If the container image has a pre-2.0.0 version of Pacemaker, set ``run-command``
      to ``/usr/sbin/pacemaker_remoted`` (note the underbar instead of dash).
    
    * ``masters`` is accepted as an alias for ``promoted-max``, but is deprecated since
      2.0.0, and support for it will be removed in a future version.
 
 Bundle Network Properties
 _________________________
    
 A bundle may optionally contain one ``<network>`` element.
 
 .. index::
    pair: XML element; network
    single: resource; bundle
    single: bundle; networking
    
 .. topic:: **XML attributes of a network Element**
    
    +----------------+---------+------------------------------------------------------------+
    | Attribute      | Default | Description                                                |
    +================+=========+============================================================+
    | add-host       | TRUE    | .. index::                                                 |
    |                |         |    single: network; attribute, add-host                    |
    |                |         |    single: attribute; add-host (network)                   |
    |                |         |    single: add-host; network attribute                     |
    |                |         |                                                            |
    |                |         | If TRUE, and ``ip-range-start`` is used, Pacemaker will    |
    |                |         | automatically ensure that ``/etc/hosts`` inside the        |
    |                |         | containers has entries for each                            |
    |                |         | :ref:`replica name <s-resource-bundle-note-replica-names>` |
    |                |         | and its assigned IP.                                       |
    +----------------+---------+------------------------------------------------------------+
    | ip-range-start |         | .. index::                                                 |
    |                |         |    single: network; attribute, ip-range-start              |
    |                |         |    single: attribute; ip-range-start (network)             |
    |                |         |    single: ip-range-start; network attribute               |
    |                |         |                                                            |
    |                |         | If specified, Pacemaker will create an implicit            |
    |                |         | ``ocf:heartbeat:IPaddr2`` resource for each container      |
    |                |         | instance, starting with this IP address, using up to       |
    |                |         | ``replicas`` sequential addresses. These addresses can be  |
    |                |         | used from the host's network to reach the service inside   |
    |                |         | the container, though it is not visible within the         |
    |                |         | container itself. Only IPv4 addresses are currently        |
    |                |         | supported.                                                 |
    +----------------+---------+------------------------------------------------------------+
    | host-netmask   | 32      | .. index::                                                 |
    |                |         |    single: network; attribute; host-netmask                |
    |                |         |    single: attribute; host-netmask (network)               |
    |                |         |    single: host-netmask; network attribute                 |
    |                |         |                                                            |
    |                |         | If ``ip-range-start`` is specified, the IP addresses       |
    |                |         | are created with this CIDR netmask (as a number of bits).  |
    +----------------+---------+------------------------------------------------------------+
    | host-interface |         | .. index::                                                 |
    |                |         |    single: network; attribute; host-interface              |
    |                |         |    single: attribute; host-interface (network)             |
    |                |         |    single: host-interface; network attribute               |
    |                |         |                                                            |
    |                |         | If ``ip-range-start`` is specified, the IP addresses are   |
    |                |         | created on this host interface (by default, it will be     |
    |                |         | determined from the IP address).                           |
    +----------------+---------+------------------------------------------------------------+
    | control-port   | 3121    | .. index::                                                 |
    |                |         |    single: network; attribute; control-port                |
    |                |         |    single: attribute; control-port (network)               |
    |                |         |    single: control-port; network attribute                 |
    |                |         |                                                            |
    |                |         | If the bundle contains a ``primitive``, the cluster will   |
    |                |         | use this integer TCP port for communication with           |
    |                |         | Pacemaker Remote inside the container. Changing this is    |
    |                |         | useful when the container is unable to listen on the       |
    |                |         | default port, for example, when the container uses the     |
    |                |         | host's network rather than ``ip-range-start`` (in which    |
    |                |         | case ``replicas-per-host`` must be 1), or when the bundle  |
    |                |         | may run on a Pacemaker Remote node that is already         |
    |                |         | listening on the default port. Any ``PCMK_remote_port``    |
    |                |         | environment variable set on the host or in the container   |
    |                |         | is ignored for bundle connections.                         |
    +----------------+---------+------------------------------------------------------------+
    
 .. _s-resource-bundle-note-replica-names:
 
 .. note::
 
    Replicas are named by the bundle id plus a dash and an integer counter starting
    with zero. For example, if a bundle named **httpd-bundle** has **replicas=2**, its
    containers will be named **httpd-bundle-0** and **httpd-bundle-1**.
 
 .. index::
    pair: XML element; port-mapping
    
 Additionally, a ``network`` element may optionally contain one or more
 ``port-mapping`` elements.
    
 .. table:: **Attributes of a port-mapping Element**
    
    +---------------+-------------------+------------------------------------------------------+
    | Attribute     | Default           | Description                                          |
    +===============+===================+======================================================+
    | id            |                   | .. index::                                           |
    |               |                   |    single: port-mapping; attribute, id               |
    |               |                   |    single: attribute; id (port-mapping)              |
    |               |                   |    single: id; port-mapping attribute                |
    |               |                   |                                                      |
    |               |                   | A unique name for the port mapping (required)        |
    +---------------+-------------------+------------------------------------------------------+
    | port          |                   | .. index::                                           |
    |               |                   |    single: port-mapping; attribute, port             |
    |               |                   |    single: attribute; port (port-mapping)            |
    |               |                   |    single: port; port-mapping attribute              |
    |               |                   |                                                      |
    |               |                   | If this is specified, connections to this TCP port   |
    |               |                   | number on the host network (on the container's       |
    |               |                   | assigned IP address, if ``ip-range-start`` is        |
    |               |                   | specified) will be forwarded to the container        |
    |               |                   | network. Exactly one of ``port`` or ``range``        |
    |               |                   | must be specified in a ``port-mapping``.             |
    +---------------+-------------------+------------------------------------------------------+
    | internal-port | value of ``port`` | .. index::                                           |
    |               |                   |    single: port-mapping; attribute, internal-port    |
    |               |                   |    single: attribute; internal-port (port-mapping)   |
    |               |                   |    single: internal-port; port-mapping attribute     |
    |               |                   |                                                      |
    |               |                   | If ``port`` and this are specified, connections      |
    |               |                   | to ``port`` on the host's network will be            |
    |               |                   | forwarded to this port on the container network.     |
    +---------------+-------------------+------------------------------------------------------+
    | range         |                   | .. index::                                           |
    |               |                   |    single: port-mapping; attribute, range            |
    |               |                   |    single: attribute; range (port-mapping)           |
    |               |                   |    single: range; port-mapping attribute             |
    |               |                   |                                                      |
    |               |                   | If this is specified, connections to these TCP       |
    |               |                   | port numbers (expressed as *first_port*-*last_port*) |
    |               |                   | on the host network (on the container's assigned IP  |
    |               |                   | address, if ``ip-range-start`` is specified) will    |
    |               |                   | be forwarded to the same ports in the container      |
    |               |                   | network. Exactly one of ``port`` or ``range``        |
    |               |                   | must be specified in a ``port-mapping``.             |
    +---------------+-------------------+------------------------------------------------------+
 
 .. note::
 
    If the bundle contains a ``primitive``, Pacemaker will automatically map the
    ``control-port``, so it is not necessary to specify that port in a
    ``port-mapping``.
 
 .. index:
    pair: XML element; storage
    pair: XML element; storage-mapping
    single: resource; bundle
    
 .. _s-bundle-storage:
 
 Bundle Storage Properties
 _________________________
    
 A bundle may optionally contain one ``storage`` element. A ``storage`` element
 has no properties of its own, but may contain one or more ``storage-mapping``
 elements.
    
 .. table:: **Attributes of a storage-mapping Element**
    
    +-----------------+---------+-------------------------------------------------------------+
    | Attribute       | Default | Description                                                 |
    +=================+=========+=============================================================+
    | id              |         | .. index::                                                  |
    |                 |         |    single: storage-mapping; attribute, id                   |
    |                 |         |    single: attribute; id (storage-mapping)                  |
    |                 |         |    single: id; storage-mapping attribute                    |
    |                 |         |                                                             |
    |                 |         | A unique name for the storage mapping (required)            |
    +-----------------+---------+-------------------------------------------------------------+
    | source-dir      |         | .. index::                                                  |
    |                 |         |    single: storage-mapping; attribute, source-dir           |
    |                 |         |    single: attribute; source-dir (storage-mapping)          |
    |                 |         |    single: source-dir; storage-mapping attribute            |
    |                 |         |                                                             |
    |                 |         | The absolute path on the host's filesystem that will be     |
    |                 |         | mapped into the container. Exactly one of ``source-dir``    |
    |                 |         | and ``source-dir-root`` must be specified in a              |
    |                 |         | ``storage-mapping``.                                        |
    +-----------------+---------+-------------------------------------------------------------+
    | source-dir-root |         | .. index::                                                  |
    |                 |         |    single: storage-mapping; attribute, source-dir-root      |
    |                 |         |    single: attribute; source-dir-root (storage-mapping)     |
    |                 |         |    single: source-dir-root; storage-mapping attribute       |
    |                 |         |                                                             |
    |                 |         | The start of a path on the host's filesystem that will      |
    |                 |         | be mapped into the container, using a different             |
    |                 |         | subdirectory on the host for each container instance.       |
    |                 |         | The subdirectory will be named the same as the              |
    |                 |         | :ref:`replica name <s-resource-bundle-note-replica-names>`. |
    |                 |         | Exactly one of ``source-dir`` and ``source-dir-root``       |
    |                 |         | must be specified in a ``storage-mapping``.                 |
    +-----------------+---------+-------------------------------------------------------------+
    | target-dir      |         | .. index::                                                  |
    |                 |         |    single: storage-mapping; attribute, target-dir           |
    |                 |         |    single: attribute; target-dir (storage-mapping)          |
    |                 |         |    single: target-dir; storage-mapping attribute            |
    |                 |         |                                                             |
    |                 |         | The path name within the container where the host           |
    |                 |         | storage will be mapped (required)                           |
    +-----------------+---------+-------------------------------------------------------------+
    | options         |         | .. index::                                                  |
    |                 |         |    single: storage-mapping; attribute, options              |
    |                 |         |    single: attribute; options (storage-mapping)             |
    |                 |         |    single: options; storage-mapping attribute               |
    |                 |         |                                                             |
    |                 |         | A comma-separated list of file system mount                 |
    |                 |         | options to use when mapping the storage                     |
    +-----------------+---------+-------------------------------------------------------------+
    
 .. note::
 
    Pacemaker does not define the behavior if the source directory does not already
    exist on the host. However, it is expected that the container technology and/or
    its resource agent will create the source directory in that case.
    
 .. note::
 
    If the bundle contains a ``primitive``,
    Pacemaker will automatically map the equivalent of
    ``source-dir=/etc/pacemaker/authkey target-dir=/etc/pacemaker/authkey``
    and ``source-dir-root=/var/log/pacemaker/bundles target-dir=/var/log`` into the
    container, so it is not necessary to specify those paths in a
    ``storage-mapping``.
    
 .. important::
 
    The ``PCMK_authkey_location`` environment variable must not be set to anything
    other than the default of ``/etc/pacemaker/authkey`` on any node in the cluster.
    
 .. important::
 
    If SELinux is used in enforcing mode on the host, you must ensure the container
    is allowed to use any storage you mount into it. For Docker and podman bundles,
    adding "Z" to the mount options will create a container-specific label for the
    mount that allows the container access.
 
 .. index::
    single: resource; bundle
    
 Bundle Primitive
 ________________
    
 A bundle may optionally contain one :ref:`primitive <primitive-resource>`
 resource. The primitive may have operations, instance attributes, and
 meta-attributes defined, as usual.
 
 If a bundle contains a primitive resource, the container image must include
 the Pacemaker Remote daemon, and at least one of ``ip-range-start`` or
 ``control-port`` must be configured in the bundle. Pacemaker will create an
 implicit **ocf:pacemaker:remote** resource for the connection, launch
 Pacemaker Remote within the container, and monitor and manage the primitive
 resource via Pacemaker Remote.
 
 If the bundle has more than one container instance (replica), the primitive
 resource will function as an implicit :ref:`clone <s-resource-clone>` -- a
 :ref:`promotable clone <s-resource-promotable>` if the bundle has ``promoted-max``
 greater than zero.
     
 .. note::
 
    If you want to pass environment variables to a bundle's Pacemaker Remote
    connection or primitive, you have two options:
    
    * Environment variables whose value is the same regardless of the underlying host
      may be set using the container element's ``options`` attribute.
    * If you want variables to have host-specific values, you can use the
      :ref:`storage-mapping <s-bundle-storage>` element to map a file on the host as
      ``/etc/pacemaker/pcmk-init.env`` in the container *(since 2.0.3)*.
      Pacemaker Remote will parse this file as a shell-like format, with
      variables set as NAME=VALUE, ignoring blank lines and comments starting
      with "#".
    
 .. important::
 
    When a bundle has a ``primitive``, Pacemaker on all cluster nodes must be able to
    contact Pacemaker Remote inside the bundle's containers.
    
    * The containers must have an accessible network (for example, ``network`` should
      not be set to "none" with a ``primitive``).
    * The default, using a distinct network space inside the container, works in
      combination with ``ip-range-start``. Any firewall must allow access from all
      cluster nodes to the ``control-port`` on the container IPs.
    * If the container shares the host's network space (for example, by setting
      ``network`` to "host"), a unique ``control-port`` should be specified for each
      bundle. Any firewall must allow access from all cluster nodes to the
      ``control-port`` on all cluster and remote node IPs.
    
 .. index::
    single: resource; bundle
 
 .. _s-bundle-attributes:
 
 Bundle Node Attributes
 ______________________
    
 If the bundle has a ``primitive``, the primitive's resource agent may want to set
 node attributes such as :ref:`promotion scores <s-promotion-scores>`. However, with
 containers, it is not apparent which node should get the attribute.
 
 If the container uses shared storage that is the same no matter which node the
 container is hosted on, then it is appropriate to use the promotion score on the
 bundle node itself.
 
 On the other hand, if the container uses storage exported from the underlying host,
 then it may be more appropriate to use the promotion score on the underlying host.
 
 Since this depends on the particular situation, the
 ``container-attribute-target`` resource meta-attribute allows the user to specify
 which approach to use. If it is set to ``host``, then user-defined node attributes
 will be checked on the underlying host. If it is anything else, the local node
 (in this case the bundle node) is used as usual.
 
 This only applies to user-defined attributes; the cluster will always check the
 local node for cluster-defined attributes such as ``#uname``.
 
 If ``container-attribute-target`` is ``host``, the cluster will pass additional
 environment variables to the primitive's resource agent that allow it to set
 node attributes appropriately: ``CRM_meta_container_attribute_target`` (identical
 to the meta-attribute value) and ``CRM_meta_physical_host`` (the name of the
 underlying host).
    
 .. note::
 
    When called by a resource agent, the ``attrd_updater`` and ``crm_attribute``
    commands will automatically check those environment variables and set
    attributes appropriately.
    
 .. index::
    single: resource; bundle
 
 Bundle Meta-Attributes
 ______________________
    
 Any meta-attribute set on a bundle will be inherited by the bundle's
 primitive and any resources implicitly created by Pacemaker for the bundle.
 
 This includes options such as ``priority``, ``target-role``, and ``is-managed``. See
 :ref:`resource_options` for more information.
    
 Limitations of Bundles
 ______________________
    
 Restarting pacemaker while a bundle is unmanaged or the cluster is in
 maintenance mode may cause the bundle to fail.
 
 Bundles may not be explicitly cloned or included in groups. This includes the
 bundle's primitive and any resources implicitly created by Pacemaker for the
 bundle. (If ``replicas`` is greater than 1, the bundle will behave like a clone
 implicitly.)
 
 Bundles do not have instance attributes, utilization attributes, or operations,
 though a bundle's primitive may have them.
 
 A bundle with a primitive can run on a Pacemaker Remote node only if the bundle
 uses a distinct ``control-port``.
 
 .. [#] Of course, the service must support running multiple instances.
 
 .. [#] These are historical terms that will eventually be replaced, but the extensive
    use of them and the need for backward compatibility makes it a long process.
    You may see examples using a **master** tag instead of a **clone** tag with the
    **promotable** meta-attribute set to **true**; the **master** tag is supported, but
    deprecated, and will be removed in a future version. You may also see such
-   services referred to as *multi-state* or *stateful*; these means the same thing
+   services referred to as *multi-state* or *stateful*; these mean the same thing
    as *promotable*.
 
 .. [#] Docker is a trademark of Docker, Inc. No endorsement by or association with
    Docker, Inc. is implied.
diff --git a/doc/sphinx/Pacemaker_Explained/reusing-configuration.rst b/doc/sphinx/Pacemaker_Explained/reusing-configuration.rst
index 7256aaa4ba..0f34f84ffc 100644
--- a/doc/sphinx/Pacemaker_Explained/reusing-configuration.rst
+++ b/doc/sphinx/Pacemaker_Explained/reusing-configuration.rst
@@ -1,415 +1,415 @@
 Reusing Parts of the Configuration
 ----------------------------------
 
 Pacemaker provides multiple ways to simplify the configuration XML by reusing
 parts of it in multiple places.
 
 Besides simplifying the XML, this also allows you to manipulate multiple
 configuration elements with a single reference.
 
 Reusing Resource Definitions
 ############################
 
 If you want to create lots of resources with similar configurations, defining a
 *resource template* simplifies the task. Once defined, it can be referenced in
 primitives or in certain types of constraints.
 
 Configuring Resources with Templates
 ____________________________________
 
 The primitives referencing the template will inherit all meta-attributes,
 instance attributes, utilization attributes and operations defined
 in the template. And you can define specific attributes and operations for any
 of the primitives. If any of these are defined in both the template and the
 primitive, the values defined in the primitive will take precedence over the
 ones defined in the template.
 
 Hence, resource templates help to reduce the amount of configuration work.
 If any changes are needed, they can be done to the template definition and
 will take effect globally in all resource definitions referencing that
 template.
 
 Resource templates have a syntax similar to that of primitives.
 
 .. topic:: Resource template for a migratable Xen virtual machine
 
    .. code-block:: xml
 
       <template id="vm-template" class="ocf" provider="heartbeat" type="Xen">
         <meta_attributes id="vm-template-meta_attributes">
           <nvpair id="vm-template-meta_attributes-allow-migrate" name="allow-migrate" value="true"/>
         </meta_attributes>
         <utilization id="vm-template-utilization">
           <nvpair id="vm-template-utilization-memory" name="memory" value="512"/>
         </utilization>
         <operations>
           <op id="vm-template-monitor-15s" interval="15s" name="monitor" timeout="60s"/>
           <op id="vm-template-start-0" interval="0" name="start" timeout="60s"/>
         </operations>
       </template>
 
 Once you define a resource template, you can use it in primitives by specifying the
 ``template`` property.
 
 .. topic:: Xen primitive resource using a resource template
 
    .. code-block:: xml
 
       <primitive id="vm1" template="vm-template">
         <instance_attributes id="vm1-instance_attributes">
           <nvpair id="vm1-instance_attributes-name" name="name" value="vm1"/>
           <nvpair id="vm1-instance_attributes-xmfile" name="xmfile" value="/etc/xen/shared-vm/vm1"/>
         </instance_attributes>
       </primitive>
 
 In the example above, the new primitive ``vm1`` will inherit everything from ``vm-template``. For
 example, the equivalent of the above two examples would be:
 
 .. topic:: Equivalent Xen primitive resource not using a resource template
 
    .. code-block:: xml
 
       <primitive id="vm1" class="ocf" provider="heartbeat" type="Xen">
         <meta_attributes id="vm-template-meta_attributes">
           <nvpair id="vm-template-meta_attributes-allow-migrate" name="allow-migrate" value="true"/>
         </meta_attributes>
         <utilization id="vm-template-utilization">
           <nvpair id="vm-template-utilization-memory" name="memory" value="512"/>
         </utilization>
         <operations>
           <op id="vm-template-monitor-15s" interval="15s" name="monitor" timeout="60s"/>
           <op id="vm-template-start-0" interval="0" name="start" timeout="60s"/>
         </operations>
         <instance_attributes id="vm1-instance_attributes">
           <nvpair id="vm1-instance_attributes-name" name="name" value="vm1"/>
           <nvpair id="vm1-instance_attributes-xmfile" name="xmfile" value="/etc/xen/shared-vm/vm1"/>
         </instance_attributes>
       </primitive>
 
 If you want to overwrite some attributes or operations, add them to the
 particular primitive's definition.
 
 .. topic:: Xen resource overriding template values
 
    .. code-block:: xml
 
       <primitive id="vm2" template="vm-template">
         <meta_attributes id="vm2-meta_attributes">
           <nvpair id="vm2-meta_attributes-allow-migrate" name="allow-migrate" value="false"/>
         </meta_attributes>
         <utilization id="vm2-utilization">
           <nvpair id="vm2-utilization-memory" name="memory" value="1024"/>
         </utilization>
         <instance_attributes id="vm2-instance_attributes">
           <nvpair id="vm2-instance_attributes-name" name="name" value="vm2"/>
           <nvpair id="vm2-instance_attributes-xmfile" name="xmfile" value="/etc/xen/shared-vm/vm2"/>
         </instance_attributes>
         <operations>
           <op id="vm2-monitor-30s" interval="30s" name="monitor" timeout="120s"/>
           <op id="vm2-stop-0" interval="0" name="stop" timeout="60s"/>
         </operations>
       </primitive>
 
 In the example above, the new primitive ``vm2`` has special attribute values.
 Its ``monitor`` operation has a longer ``timeout`` and ``interval``, and
 the primitive has an additional ``stop`` operation.
 
 To see the resulting definition of a resource, run:
 
 .. code-block:: none
 
    # crm_resource --query-xml --resource vm2
 
 To see the raw definition of a resource in the CIB, run:
 
 .. code-block:: none
 
    # crm_resource --query-xml-raw --resource vm2
 
 Using Templates in Constraints
 ______________________________
 
 A resource template can be referenced in the following types of constraints:
 
 - ``order`` constraints (see :ref:`s-resource-ordering`)
 - ``colocation`` constraints (see :ref:`s-resource-colocation`)
 - ``rsc_ticket`` constraints (for multi-site clusters as described in :ref:`ticket-constraints`)
 
 Resource templates referenced in constraints stand for all primitives which are
 derived from that template. This means, the constraint applies to all primitive
 resources referencing the resource template. Referencing resource templates in
 constraints is an alternative to resource sets and can simplify the cluster
 configuration considerably.
 
 For example, given the example templates earlier in this chapter:
 
 .. code-block:: xml
 
    <rsc_colocation id="vm-template-colo-base-rsc" rsc="vm-template" rsc-role="Started" with-rsc="base-rsc" score="INFINITY"/>
 
 would colocate all VMs with ``base-rsc`` and is the equivalent of the following constraint configuration:
 
 .. code-block:: xml
 
    <rsc_colocation id="vm-colo-base-rsc" score="INFINITY">
      <resource_set id="vm-colo-base-rsc-0" sequential="false" role="Started">
        <resource_ref id="vm1"/>
        <resource_ref id="vm2"/>
      </resource_set>
      <resource_set id="vm-colo-base-rsc-1">
        <resource_ref id="base-rsc"/>
      </resource_set>
    </rsc_colocation>
 
 .. note::
 
    In a colocation constraint, only one template may be referenced from either
    ``rsc`` or ``with-rsc``; the other reference must be a regular resource.
 
 Using Templates in Resource Sets
 ________________________________
 
 Resource templates can also be referenced in resource sets.
 
 For example, given the example templates earlier in this section, then:
 
 .. code-block:: xml
 
    <rsc_order id="order1" score="INFINITY">
      <resource_set id="order1-0">
        <resource_ref id="base-rsc"/>
        <resource_ref id="vm-template"/>
        <resource_ref id="top-rsc"/>
      </resource_set>
    </rsc_order>
 
 is the equivalent of the following constraint using a sequential resource set:
 
 .. code-block:: xml
 
    <rsc_order id="order1" score="INFINITY">
      <resource_set id="order1-0">
        <resource_ref id="base-rsc"/>
        <resource_ref id="vm1"/>
        <resource_ref id="vm2"/>
        <resource_ref id="top-rsc"/>
      </resource_set>
    </rsc_order>
 
 Or, if the resources referencing the template can run in parallel, then:
 
 .. code-block:: xml
 
    <rsc_order id="order2" score="INFINITY">
      <resource_set id="order2-0">
        <resource_ref id="base-rsc"/>
      </resource_set>
      <resource_set id="order2-1" sequential="false">
        <resource_ref id="vm-template"/>
      </resource_set>
      <resource_set id="order2-2">
        <resource_ref id="top-rsc"/>
      </resource_set>
    </rsc_order>
 
 is the equivalent of the following constraint configuration:
 
 .. code-block:: xml
 
    <rsc_order id="order2" score="INFINITY">
      <resource_set id="order2-0">
        <resource_ref id="base-rsc"/>
      </resource_set>
      <resource_set id="order2-1" sequential="false">
        <resource_ref id="vm1"/>
        <resource_ref id="vm2"/>
      </resource_set>
      <resource_set id="order2-2">
        <resource_ref id="top-rsc"/>
      </resource_set>
    </rsc_order>
 
 .. _s-reusing-config-elements:
 
 Reusing Rules, Options and Sets of Operations
 #############################################
 
 Sometimes a number of constraints need to use the same set of rules,
 and resources need to set the same options and parameters.  To
 simplify this situation, you can refer to an existing object using an
 ``id-ref`` instead of an ``id``.
 
 So if for one resource you have
 
 .. code-block:: xml
 
    <rsc_location id="WebServer-connectivity" rsc="Webserver">
       <rule id="ping-prefer-rule" score-attribute="pingd" >
        <expression id="ping-prefer" attribute="pingd" operation="defined"/>
       </rule>
    </rsc_location>
 
 Then instead of duplicating the rule for all your other resources, you can instead specify:
 
 .. topic:: **Referencing rules from other constraints**
 
    .. code-block:: xml
    
       <rsc_location id="WebDB-connectivity" rsc="WebDB">
          <rule id-ref="ping-prefer-rule"/>
       </rsc_location>
    
 .. important::
 
    The cluster will insist that the ``rule`` exists somewhere.  Attempting
    to add a reference to a non-existing rule will cause a validation
    failure, as will attempting to remove a ``rule`` that is referenced
    elsewhere.
 
 The same principle applies for ``meta_attributes`` and
 ``instance_attributes`` as illustrated in the example below:
 
 .. topic:: Referencing attributes, options, and operations from other resources
 
     .. code-block:: xml
 
       <primitive id="mySpecialRsc" class="ocf" type="Special" provider="me">
          <instance_attributes id="mySpecialRsc-attrs" score="1" >
            <nvpair id="default-interface" name="interface" value="eth0"/>
            <nvpair id="default-port" name="port" value="9999"/>
          </instance_attributes>
          <meta_attributes id="mySpecialRsc-options">
            <nvpair id="failure-timeout" name="failure-timeout" value="5m"/>
            <nvpair id="migration-threshold" name="migration-threshold" value="1"/>
            <nvpair id="stickiness" name="resource-stickiness" value="0"/>
          </meta_attributes>
          <operations id="health-checks">
            <op id="health-check" name="monitor" interval="60s"/>
            <op id="health-check" name="monitor" interval="30min"/>
          </operations>
       </primitive>
       <primitive id="myOtherlRsc" class="ocf" type="Other" provider="me">
          <instance_attributes id-ref="mySpecialRsc-attrs"/>
          <meta_attributes id-ref="mySpecialRsc-options"/>
          <operations id-ref="health-checks"/>
       </primitive>
 
 ``id-ref`` can similarly be used with ``resource_set`` (in any constraint type),
 ``nvpair``, and ``operations``.
 
 Tagging Configuration Elements
 ##############################
 
 Pacemaker allows you to *tag* any configuration element that has an XML ID.
 
 The main purpose of tagging is to support higher-level user interface tools;
 Pacemaker itself only uses tags within constraints. Therefore, what you can
 do with tags mostly depends on the tools you use.
 
 Configuring Tags
 ________________
 
 A tag is simply a named list of XML IDs.
 
 .. topic:: Tag referencing three resources
 
    .. code-block:: xml
 
       <tags>
         <tag id="all-vms">
           <obj_ref id="vm1"/>
           <obj_ref id="vm2"/>
           <obj_ref id="vm3"/>
         </tag>
       </tags>
 
 What you can do with this new tag depends on what your higher-level tools
 support. For example, a tool might allow you to enable or disable all of
 the tagged resources at once, or show the status of just the tagged
 resources.
 
 A single configuration element can be listed in any number of tags.
 
 Using Tags in Constraints and Resource Sets
 ___________________________________________
 
 Pacemaker itself only uses tags in constraints. If you supply a tag name
 instead of a resource name in any constraint, the constraint will apply to
 all resources listed in that tag.
 
 .. topic:: Constraint using a tag
 
    .. code-block:: xml
 
       <rsc_order id="order1" first="storage" then="all-vms" kind="Mandatory" />
 
 In the example above, assuming the ``all-vms`` tag is defined as in the previous
 example, the constraint will behave the same as:
 
 .. topic:: Equivalent constraints without tags
 
    .. code-block:: xml
 
       <rsc_order id="order1-1" first="storage" then="vm1" kind="Mandatory" />
       <rsc_order id="order1-2" first="storage" then="vm2" kind="Mandatory" />
-      <rsc_order id="order1-3" first="storage" then="vm2" kind="Mandatory" />
+      <rsc_order id="order1-3" first="storage" then="vm3" kind="Mandatory" />
 
 A tag may be used directly in the constraint, or indirectly by being
 listed in a :ref:`resource set <s-resource-sets>` used in the constraint.
 When used in a resource set, an expanded tag will honor the set's
 ``sequential`` property.
 
 Filtering With Tags
 ___________________
 
 The ``crm_mon`` tool can be used to display lots of information about the
 state of the cluster.  On large or complicated clusters, this can include
 a lot of information, which makes it difficult to find the one thing you
 are interested in.  The ``--resource=`` and ``--node=`` command line
 options can be used to filter results.  In their most basic usage, these
 options take a single resource or node name.  However, they can also
 be supplied with a tag name to display several objects at once.
 
 For instance, given the following CIB section:
 
 .. code-block:: xml
 
    <resources>
      <primitive class="stonith" id="Fencing" type="fence_xvm"/>
      <primitive class="ocf" id="dummy" provider="pacemaker" type="Dummy"/>
      <group id="inactive-group">
        <primitive class="ocf" id="inactive-dummy-1" provider="pacemaker" type="Dummy"/>
        <primitive class="ocf" id="inactive-dummy-2" provider="pacemaker" type="Dummy"/>
      </group>
      <clone id="inactive-clone">
        <primitive id="inactive-dhcpd" class="lsb" type="dhcpd"/>
      </clone>
    </resources>
    <tags>
      <tag id="inactive-rscs">
        <obj_ref id="inactive-group"/>
        <obj_ref id="inactive-clone"/>
      </tag>
    </tags>
 
 The following would be output for ``crm_mon --resource=inactive-rscs -r``:
 
 .. code-block:: none
 
    Cluster Summary:
      * Stack: corosync
      * Current DC: cluster02 (version 2.0.4-1.e97f9675f.git.el7-e97f9675f) - partition with quorum
      * Last updated: Tue Oct 20 16:09:01 2020
      * Last change:  Tue May  5 12:04:36 2020 by hacluster via crmd on cluster01
      * 5 nodes configured
      * 27 resource instances configured (4 DISABLED)
 
    Node List:
      * Online: [ cluster01 cluster02 ]
 
    Full List of Resources:
      * Clone Set: inactive-clone [inactive-dhcpd] (disabled):
        * Stopped (disabled): [ cluster01 cluster02 ]
      * Resource Group: inactive-group (disabled):
        * inactive-dummy-1  (ocf::pacemaker:Dummy):  Stopped (disabled)
        * inactive-dummy-2  (ocf::pacemaker:Dummy):  Stopped (disabled)
diff --git a/doc/sphinx/Pacemaker_Explained/status.rst b/doc/sphinx/Pacemaker_Explained/status.rst
index b5259b10fe..c6a7a03b0f 100644
--- a/doc/sphinx/Pacemaker_Explained/status.rst
+++ b/doc/sphinx/Pacemaker_Explained/status.rst
@@ -1,375 +1,375 @@
 .. index::
    single: status
    single: XML element, status
 
 Status -- Here be dragons
 -------------------------
 
 Most users never need to understand the contents of the status section
 and can be happy with the output from ``crm_mon``.
 
 However for those with a curious inclination, this section attempts to
 provide an overview of its contents.
 
 .. index::
    single: node; status
        
 Node Status
 ###########
    
 In addition to the cluster's configuration, the CIB holds an
 up-to-date representation of each cluster node in the ``status`` section.
 
 .. topic:: A bare-bones status entry for a healthy node **cl-virt-1**
 
    .. code-block:: xml
 
       <node_state id="1" uname="cl-virt-1" in_ccm="true" crmd="online" crm-debug-origin="do_update_resource" join="member" expected="member">
        <transient_attributes id="1"/>
        <lrm id="1"/>
       </node_state>
    
 Users are highly recommended *not* to modify any part of a node's
 state *directly*.  The cluster will periodically regenerate the entire
 section from authoritative sources, so any changes should be done
 with the tools appropriate to those sources.
          
 .. table:: **Authoritative Sources for State Information**
 
    +----------------------+----------------------+
    | CIB Object           | Authoritative Source |
    +======================+======================+
    | node_state           | pacemaker-controld   |
    +----------------------+----------------------+
    | transient_attributes | pacemaker-attrd      |
    +----------------------+----------------------+
    | lrm                  | pacemaker-execd      |
    +----------------------+----------------------+
 
 The fields used in the ``node_state`` objects are named as they are
 largely for historical reasons and are rooted in Pacemaker's origins
 as the resource manager for the older Heartbeat project. They have remained
 unchanged to preserve compatibility with older versions.
          
 .. table:: **Node Status Fields**
 
    +------------------+----------------------------------------------------------+
    | Field            | Description                                              |
    +==================+==========================================================+
    | id               | .. index:                                                |
    |                  |    single: id; node status                               |
    |                  |    single: node; status, id                              |
    |                  |                                                          |
    |                  | Unique identifier for the node.  Corosync-based clusters |
    |                  | use a numeric counter.                                   |
    +------------------+----------------------------------------------------------+
    | uname            | .. index::                                               |
    |                  |    single: uname; node status                            |
    |                  |    single: node; status, uname                           |
    |                  |                                                          |
    |                  | The node's name as known by the cluster                  |
    +------------------+----------------------------------------------------------+
    | in_ccm           | .. index::                                               |
    |                  |    single: in_ccm; node status                           |
    |                  |    single: node; status, in_ccm                          |
    |                  |                                                          |
    |                  | Is the node a member at the cluster communication later? |
    |                  | Allowed values: ``true``, ``false``.                     |
    +------------------+----------------------------------------------------------+
    | crmd             | .. index::                                               |
    |                  |    single: crmd; node status                             |
    |                  |    single: node; status, crmd                            |
    |                  |                                                          |
    |                  | Is the node a member at the pacemaker layer?  Allowed    |
    |                  | values: ``online``, ``offline``.                         |
    +------------------+----------------------------------------------------------+
    | crm-debug-origin | .. index::                                               |
    |                  |    single: crm-debug-origin; node status                 |
    |                  |    single: node; status, crm-debug-origin                |
    |                  |                                                          |
    |                  | The name of the source function that made the most       |
    |                  | recent change (for debugging purposes).                  |
    +------------------+----------------------------------------------------------+
    | join             | .. index::                                               |
    |                  |    single: join; node status                             |
    |                  |    single: node; status, join                            |
    |                  |                                                          |
    |                  | Does the node participate in hosting resources?          |
    |                  | Allowed values: ``down``, ``pending``, ``member``.       |
    |                  | ``banned``.                                              |
    +------------------+----------------------------------------------------------+
    | expected         | .. index::                                               |
    |                  |   single: expected; node status                          |
    |                  |   single: node; status, expected                         |
    |                  |                                                          |
    |                  | Expected value for ``join``.                             |
    +------------------+----------------------------------------------------------+
    
 The cluster uses these fields to determine whether, at the node level, the
 node is healthy or is in a failed state and needs to be fenced.
    
 Transient Node Attributes
 #########################
    
 Like regular :ref:`node_attributes`, the name/value
 pairs listed in the ``transient_attributes`` section help to describe the
 node.  However they are forgotten by the cluster when the node goes offline.
 This can be useful, for instance, when you want a node to be in standby mode
 (not able to run resources) just until the next reboot.
      
 In addition to any values the administrator sets, the cluster will
 also store information about failed resources here.
          
 .. topic:: A set of transient node attributes for node **cl-virt-1**
 
    .. code-block:: xml
    
       <transient_attributes id="cl-virt-1">
         <instance_attributes id="status-cl-virt-1">
            <nvpair id="status-cl-virt-1-pingd" name="pingd" value="3"/>
            <nvpair id="status-cl-virt-1-probe_complete" name="probe_complete" value="true"/>
            <nvpair id="status-cl-virt-1-fail-count-pingd:0.monitor_30000" name="fail-count-pingd:0#monitor_30000" value="1"/>
            <nvpair id="status-cl-virt-1-last-failure-pingd:0" name="last-failure-pingd:0" value="1239009742"/>
         </instance_attributes>
       </transient_attributes>
    
 In the above example, we can see that a monitor on the ``pingd:0`` resource has
 failed once, at 09:22:22 UTC 6 April 2009. [#]_.
 
 We also see that the node is connected to three **pingd** peers and that
 all known resources have been checked for on this machine (``probe_complete``).
          
 .. index::
    single: Operation History
 
 Operation History
 #################
    
 A node's resource history is held in the ``lrm_resources`` tag (a child
 of the ``lrm`` tag). The information stored here includes enough
 information for the cluster to stop the resource safely if it is
 removed from the ``configuration`` section. Specifically, the resource's
 ``id``, ``class``, ``type`` and ``provider`` are stored.
 
 .. topic:: A record of the ``apcstonith`` resource
 
    .. code-block:: xml
 
       <lrm_resource id="apcstonith" type="apcmastersnmp" class="stonith"/>
    
 Additionally, we store the last job for every combination of
 ``resource``, ``action`` and ``interval``.  The concatenation of the values in
 this tuple are used to create the id of the ``lrm_rsc_op`` object.
 
 .. table:: **Contents of an lrm_rsc_op job**
 
    +------------------+----------------------------------------------------------+
    | Field            | Description                                              |
    +==================+==========================================================+
    | id               | .. index::                                               |
    |                  |    single: id; action status                             |
    |                  |    single: action; status, id                            |
    |                  |                                                          |
    |                  | Identifier for the job constructed from the resource's   |
    |                  | ``operation`` and ``interval``.                          |
    +------------------+----------------------------------------------------------+
    | call-id          | .. index::                                               |
    |                  |    single: call-id; action status                        |
    |                  |    single: action; status, call-id                       |
    |                  |                                                          |
    |                  | The job's ticket number. Used as a sort key to determine |
    |                  | the order in which the jobs were executed.               |
    +------------------+----------------------------------------------------------+
    | operation        | .. index::                                               |
    |                  |    single: operation; action status                      |
    |                  |    single: action; status, operation                     |
    |                  |                                                          |
    |                  | The action the resource agent was invoked with.          |
    +------------------+----------------------------------------------------------+
    | interval         | .. index::                                               |
    |                  |    single: interval; action status                       |
    |                  |    single: action; status, interval                      |
    |                  |                                                          |
    |                  | The frequency, in milliseconds, at which the operation   |
    |                  | will be repeated. A one-off job is indicated by 0.       |
    +------------------+----------------------------------------------------------+
    | op-status        | .. index::                                               |
    |                  |    single: op-status; action status                      |
    |                  |    single: action; status, op-status                     |
    |                  |                                                          |
    |                  | The job's status. Generally this will be either 0 (done) |
    |                  | or -1 (pending). Rarely used in favor of ``rc-code``.    |
    +------------------+----------------------------------------------------------+
    | rc-code          | .. index::                                               |
    |                  |    single: rc-code; action status                        |
    |                  |    single: action; status, rc-code                       |
    |                  |                                                          |
    |                  | The job's result. Refer to the *Resource Agents* chapter |
    |                  | of *Pacemaker Administration* for details on what the    |
    |                  | values here mean and how they are interpreted.           |
    +------------------+----------------------------------------------------------+
    | last-run         | .. index::                                               |
    |                  |    single: last-run; action status                       |
    |                  |    single: action; status, last-run                      |
    |                  |                                                          |
    |                  | Machine-local date/time, in seconds since epoch, at      |
    |                  | which the job was executed. For diagnostic purposes.     |
    +------------------+----------------------------------------------------------+
    | last-rc-change   | .. index::                                               |
    |                  |    single: last-rc-change; action status                 |
    |                  |    single: action; status, last-rc-change                |
    |                  |                                                          |
    |                  | Machine-local date/time, in seconds since epoch, at      |
    |                  | which the job first returned the current value of        |
    |                  | ``rc-code``.  For diagnostic purposes.                   |
    +------------------+----------------------------------------------------------+
    | exec-time        | .. index::                                               |
    |                  |    single: exec-time; action status                      |
    |                  |    single: action; status, exec-time                     |
    |                  |                                                          |
    |                  | Time, in milliseconds, that the job was running for.     |
    |                  | For diagnostic purposes.                                 |
    +------------------+----------------------------------------------------------+
    | queue-time       | .. index::                                               |
    |                  |    single: queue-time; action status                     |
    |                  |    single: action; status, queue-time                    |
    |                  |                                                          |
    |                  | Time, in seconds, that the job was queued for in the     |
-   |                  | LRMd.  For diagnostic purposes.                          |
+   |                  | local executor. For diagnostic purposes.                 |
    +------------------+----------------------------------------------------------+
    | crm_feature_set  | .. index::                                               |
    |                  |    single: crm_feature_set; action status                |
    |                  |    single: action; status, crm_feature_set               |
    |                  |                                                          |
    |                  | The version which this job description conforms to. Used |
    |                  | when processing ``op-digest``.                           |
    +------------------+----------------------------------------------------------+
    | transition-key   | .. index::                                               |
    |                  |    single: transition-key; action status                 |
    |                  |    single: action; status, transition-key                |
    |                  |                                                          |
    |                  | A concatenation of the job's graph action number, the    |
    |                  | graph number, the expected result and the UUID of the    |
    |                  | controller instance that scheduled it. This is used to   |
    |                  | construct ``transition-magic`` (below).                  |
    +------------------+----------------------------------------------------------+
    | transition-magic | .. index::                                               |
    |                  |    single: transition-magic; action status               |
    |                  |    single: action; status, transition-magic              |
    |                  |                                                          |
    |                  | A concatenation of the job's ``op-status``, ``rc-code``  |
    |                  | and ``transition-key``. Guaranteed to be unique for the  |
    |                  | life of the cluster (which ensures it is part of CIB     |
    |                  | update notifications) and contains all the information   |
    |                  | needed for the controller to correctly analyze and       |
    |                  | process the completed job. Most importantly, the         |
    |                  | decomposed elements tell the controller if the job       |
    |                  | entry was expected and whether it failed.                |
    +------------------+----------------------------------------------------------+
    | op-digest        | .. index::                                               |
    |                  |    single: op-digest; action status                      |
    |                  |    single: action; status, op-digest                     |
    |                  |                                                          |
    |                  | An MD5 sum representing the parameters passed to the     |
    |                  | job. Used to detect changes to the configuration, to     |
    |                  | restart resources if necessary.                          |
    +------------------+----------------------------------------------------------+
    | crm-debug-origin | .. index::                                               |
    |                  |    single: crm-debug-origin; action status               |
    |                  |    single: action; status, crm-debug-origin              |
    |                  |                                                          |
    |                  | The origin of the current values.  For diagnostic        |
    |                  | purposes.                                                |
    +------------------+----------------------------------------------------------+
    
 Simple Operation History Example
 ________________________________
            
 .. topic:: A monitor operation (determines current state of the ``apcstonith`` resource)
 
    .. code-block:: xml
 
       <lrm_resource id="apcstonith" type="apcmastersnmp" class="stonith">
         <lrm_rsc_op id="apcstonith_monitor_0" operation="monitor" call-id="2"
           rc-code="7" op-status="0" interval="0"
           crm-debug-origin="do_update_resource" crm_feature_set="3.0.1"
           op-digest="2e3da9274d3550dc6526fb24bfcbcba0"
           transition-key="22:2:7:2668bbeb-06d5-40f9-936d-24cb7f87006a"
           transition-magic="0:7;22:2:7:2668bbeb-06d5-40f9-936d-24cb7f87006a"
           last-run="1239008085" last-rc-change="1239008085" exec-time="10" queue-time="0"/>
       </lrm_resource>
 
 In the above example, the job is a non-recurring monitor operation
 often referred to as a "probe" for the ``apcstonith`` resource.
 
 The cluster schedules probes for every configured resource on a node when
 the node first starts, in order to determine the resource's current state
 before it takes any further action.
        
 From the ``transition-key``, we can see that this was the 22nd action of
 the 2nd graph produced by this instance of the controller
 (2668bbeb-06d5-40f9-936d-24cb7f87006a).
 
 The third field of the ``transition-key`` contains a 7, which indicates
 that the job expects to find the resource inactive. By looking at the ``rc-code``
 property, we see that this was the case.
 
 As that is the only job recorded for this node, we can conclude that
 the cluster started the resource elsewhere.
    
 Complex Operation History Example
 _________________________________
            
 .. topic:: Resource history of a ``pingd`` clone with multiple jobs
 
    .. code-block:: xml
 
       <lrm_resource id="pingd:0" type="pingd" class="ocf" provider="pacemaker">
         <lrm_rsc_op id="pingd:0_monitor_30000" operation="monitor" call-id="34"
           rc-code="0" op-status="0" interval="30000"
           crm-debug-origin="do_update_resource" crm_feature_set="3.0.1"
           transition-key="10:11:0:2668bbeb-06d5-40f9-936d-24cb7f87006a"
           last-run="1239009741" last-rc-change="1239009741" exec-time="10" queue-time="0"/>
         <lrm_rsc_op id="pingd:0_stop_0" operation="stop"
           crm-debug-origin="do_update_resource" crm_feature_set="3.0.1" call-id="32"
           rc-code="0" op-status="0" interval="0"
           transition-key="11:11:0:2668bbeb-06d5-40f9-936d-24cb7f87006a"
           last-run="1239009741" last-rc-change="1239009741" exec-time="10" queue-time="0"/>
         <lrm_rsc_op id="pingd:0_start_0" operation="start" call-id="33"
           rc-code="0" op-status="0" interval="0"
           crm-debug-origin="do_update_resource" crm_feature_set="3.0.1"
           transition-key="31:11:0:2668bbeb-06d5-40f9-936d-24cb7f87006a"
           last-run="1239009741" last-rc-change="1239009741" exec-time="10" queue-time="0" />
         <lrm_rsc_op id="pingd:0_monitor_0" operation="monitor" call-id="3"
           rc-code="0" op-status="0" interval="0"
           crm-debug-origin="do_update_resource" crm_feature_set="3.0.1"
           transition-key="23:2:7:2668bbeb-06d5-40f9-936d-24cb7f87006a"
           last-run="1239008085" last-rc-change="1239008085" exec-time="20" queue-time="0"/>
         </lrm_resource>
    
 When more than one job record exists, it is important to first sort
 them by ``call-id`` before interpreting them.
 
 Once sorted, the above example can be summarized as:
 
 #. A non-recurring monitor operation returning 7 (not running), with a ``call-id`` of 3
 #. A stop operation returning 0 (success), with a ``call-id`` of 32
 #. A start operation returning 0 (success), with a ``call-id`` of 33
 #. A recurring monitor returning 0 (success), with a ``call-id`` of 34
 
 The cluster processes each job record to build up a picture of the
 resource's state.  After the first and second entries, it is
 considered stopped, and after the third it considered active.
 
 Based on the last operation, we can tell that the resource is
 currently active.
 
 Additionally, from the presence of a ``stop`` operation with a lower
 ``call-id`` than that of the ``start`` operation, we can conclude that the
 resource has been restarted.  Specifically this occurred as part of
 actions 11 and 31 of transition 11 from the controller instance with the key
 ``2668bbeb...``.  This information can be helpful for locating the
 relevant section of the logs when looking for the source of a failure.
 
 .. [#] You can use the standard ``date`` command to print a human-readable version
        of any seconds-since-epoch value, for example ``date -d @1239009742``.