The good news is that as of Novemeber 1st, Pacemaker is now supported on RHEL 6.4 - with two caveats.

  1. You must be using the updated pacemaker, resource-agents and pcs packages
  2. You must be using CMAN for membership and quorum (background)

Technically, support is currently limited to Pacemaker’s use in the context of OpenStack. In practice however, any bug that can be shown to affect OpenStack deployments has a good chance of being fixed.

Since a cluster with no services is rather pointless, the heartbeat OCF agents are now also officially supported. However, as Red Hat’s policy is to only ship supported agents, some agents are not present for this initial release.

The three primary reasons for not shipping agents were:

  1. The software the agent controls is not shipped in RHEL
  2. Insufficient experience to provide support
  3. Avoiding agent duplication

Filing bugs is definitly the best way to get agents in the second categories prioritized for inclusion.

Likewise, if there is no shipping agent that provides the functionality of agents in the third category (IPv6addr and IPaddr2 might be an example here), filing bugs is the best way to get that fixed.

In the meantime, since most of the agents are just shell scripts, downloading the latest upstream agents is a viable work-around in most cases. For example:

    agents="Raid1 Xen"
    for a in $agents; do wget -O /usr/lib/ocf/resource.d/heartbeat/$a https://github.com/ClusterLabs/resource-agents/raw/master/heartbeat/$a; done

Updated: