mirror of
https://pagure.io/fedora-infra/ansible.git
synced 2026-04-28 20:42:20 +08:00
45 lines
1.7 KiB
YAML
45 lines
1.7 KiB
YAML
---
|
|
- fail:
|
|
msg: This role requires that openshift_master_cluster_vip is set
|
|
when: openshift_master_cluster_vip is not defined or not openshift_master_cluster_vip
|
|
- fail:
|
|
msg: This role requires that openshift_master_cluster_public_vip is set
|
|
when: openshift_master_cluster_public_vip is not defined or not openshift_master_cluster_public_vip
|
|
|
|
- name: Authenticate to the cluster
|
|
command: pcs cluster auth -u hacluster -p {{ openshift_master_cluster_password }} {{ omc_cluster_hosts }}
|
|
|
|
- name: Create the cluster
|
|
command: pcs cluster setup --name openshift_master {{ omc_cluster_hosts }}
|
|
|
|
- name: Start the cluster
|
|
command: pcs cluster start --all
|
|
|
|
- name: Enable the cluster on all nodes
|
|
command: pcs cluster enable --all
|
|
|
|
- name: Set default resource stickiness
|
|
command: pcs resource defaults resource-stickiness=100
|
|
|
|
- name: Add the cluster VIP resource
|
|
command: pcs resource create virtual-ip IPaddr2 ip={{ openshift_master_cluster_vip }} --group openshift-master
|
|
|
|
- name: Add the cluster public VIP resource
|
|
command: pcs resource create virtual-ip IPaddr2 ip={{ openshift_master_cluster_public_vip }} --group openshift-master
|
|
when: openshift_master_cluster_public_vip != openshift_master_cluster_vip
|
|
|
|
- name: Add the cluster openshift-master service resource
|
|
command: pcs resource create master systemd:openshift-master op start timeout=90s stop timeout=90s --group openshift-master
|
|
|
|
- name: Disable stonith
|
|
command: pcs property set stonith-enabled=false
|
|
|
|
# TODO: handle case where api port is not 8443
|
|
- name: Wait for the clustered master service to be available
|
|
wait_for:
|
|
host: "{{ openshift_master_cluster_vip }}"
|
|
port: 8443
|
|
state: started
|
|
timeout: 180
|
|
delay: 90
|