|
@@ -24,7 +24,6 @@
|
|
|
- name: Verify upgrade can proceed
|
|
|
hosts: oo_first_master
|
|
|
vars:
|
|
|
- openshift_master_ha: "{{ groups.oo_masters_to_config | length > 1 }}"
|
|
|
target_version: "{{ '1.2' if deployment_type == 'origin' else '3.1.1.900' }}"
|
|
|
gather_facts: no
|
|
|
tasks:
|
|
@@ -47,6 +46,42 @@
|
|
|
when: openshift_image_tag is defined and openshift_image_tag.split('v',1).1 | version_compare(target_version ,'<')
|
|
|
|
|
|
- name: Verify upgrade can proceed
|
|
|
+ hosts: oo_masters_to_config
|
|
|
+ vars:
|
|
|
+ openshift_master_ha: "{{ groups.oo_masters_to_config | length > 1 }}"
|
|
|
+ tasks:
|
|
|
+ - name: Ensure Master is running
|
|
|
+ service:
|
|
|
+ name: "{{ openshift.common.service_type }}-master"
|
|
|
+ state: started
|
|
|
+ enabled: yes
|
|
|
+ when: not openshift_master_ha | bool and openshift.common.is_containerized | bool
|
|
|
+
|
|
|
+ - name: Ensure HA Master is running
|
|
|
+ service:
|
|
|
+ name: "{{ openshift.common.service_type }}-master-api"
|
|
|
+ state: started
|
|
|
+ enabled: yes
|
|
|
+ when: openshift_master_ha | bool and openshift.common.is_containerized | bool
|
|
|
+
|
|
|
+ - name: Ensure HA Master is running
|
|
|
+ service:
|
|
|
+ name: "{{ openshift.common.service_type }}-master-controllers"
|
|
|
+ state: started
|
|
|
+ enabled: yes
|
|
|
+ when: openshift_master_ha | bool and openshift.common.is_containerized | bool
|
|
|
+
|
|
|
+- name: Verify upgrade can proceed
|
|
|
+ hosts: oo_nodes_to_config
|
|
|
+ tasks:
|
|
|
+ - name: Ensure Node is running
|
|
|
+ service:
|
|
|
+ name: "{{ openshift.common.service_type }}-node"
|
|
|
+ state: started
|
|
|
+ enabled: yes
|
|
|
+ when: openshift.common.is_containerized | bool
|
|
|
+
|
|
|
+- name: Verify upgrade can proceed
|
|
|
hosts: oo_masters_to_config:oo_nodes_to_config
|
|
|
vars:
|
|
|
target_version: "{{ '1.2' if deployment_type == 'origin' else '3.1.1.900' }}"
|