main.yml 441 B

1234567891011121314
  1. ---
  2. - fail:
  3. msg: "Not possible on atomic hosts for now"
  4. when: openshift.common.is_containerized | bool
  5. - name: Test if cluster is already configured
  6. command: pcs status
  7. register: pcs_status
  8. changed_when: false
  9. failed_when: false
  10. when: openshift.master.cluster_method == "pacemaker"
  11. - include_tasks: configure.yml
  12. when: "pcs_status | failed and 'Error: cluster is not currently running on this node' in pcs_status.stderr"