main.yml 632 B

123456789101112131415161718
  1. ---
  2. - fail:
  3. msg: "Not possible on atomic hosts for now"
  4. when: openshift.common.is_containerized | bool
  5. - fail:
  6. msg: "Pacemaker HA is unsupported on OpenShift Enterprise 3.2 and Origin 1.2"
  7. when: openshift.master.cluster_method == "pacemaker" and openshift.common.version_gte_3_2_or_1_2 | bool
  8. - name: Test if cluster is already configured
  9. command: pcs status
  10. register: pcs_status
  11. changed_when: false
  12. failed_when: false
  13. when: openshift.master.cluster_method == "pacemaker"
  14. - include: configure.yml
  15. when: "pcs_status | failed and 'Error: cluster is not currently running on this node' in pcs_status.stderr"