configure.yml 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. ---
  2. - fail:
  3. msg: This role requires that openshift_master_cluster_vip is set
  4. when: openshift_master_cluster_vip is not defined or not openshift_master_cluster_vip
  5. - fail:
  6. msg: This role requires that openshift_master_cluster_public_vip is set
  7. when: openshift_master_cluster_public_vip is not defined or not openshift_master_cluster_public_vip
  8. - name: Authenticate to the cluster
  9. command: pcs cluster auth -u hacluster -p {{ openshift_master_cluster_password }} {{ omc_cluster_hosts }}
  10. - name: Create the cluster
  11. command: pcs cluster setup --name openshift_master {{ omc_cluster_hosts }}
  12. - name: Start the cluster
  13. command: pcs cluster start --all
  14. - name: Enable the cluster on all nodes
  15. command: pcs cluster enable --all
  16. - name: Set default resource stickiness
  17. command: pcs resource defaults resource-stickiness=100
  18. - name: Add the cluster VIP resource
  19. command: pcs resource create virtual-ip IPaddr2 ip={{ openshift_master_cluster_vip }} --group {{ openshift.common.service_type }}-master
  20. - name: Add the cluster public VIP resource
  21. command: pcs resource create virtual-ip IPaddr2 ip={{ openshift_master_cluster_public_vip }} --group {{ openshift.common.service_type }}-master
  22. when: openshift_master_cluster_public_vip != openshift_master_cluster_vip
  23. - name: Add the cluster master service resource
  24. command: pcs resource create master systemd:{{ openshift.common.service_type }}-master op start timeout=90s stop timeout=90s --group {{ openshift.common.service_type }}-master
  25. - name: Disable stonith
  26. command: pcs property set stonith-enabled=false
  27. - name: Wait for the clustered master service to be available
  28. wait_for:
  29. host: "{{ openshift_master_cluster_vip }}"
  30. port: "{{ openshift.master.api_port }}"
  31. state: started
  32. timeout: 180
  33. delay: 90