Просмотр исходного кода

Verify masters are upgraded before proceeding with node only upgrade.

Devan Goodwin 8 лет назад
Родитель
Сommit
6f056fd967

+ 1 - 1
playbooks/byo/openshift-cluster/upgrades/v3_3/upgrade_masters.yml

@@ -17,7 +17,7 @@
 - include: ../initialize_facts.yml
 
 - name: Update repos and initialize facts on all hosts
-  hosts: oo_masters_to_config:oo_etcd_to_config:oo_lb_to_config
+  hosts: oo_masters_to_config:oo_nodes_to_config:oo_etcd_to_config:oo_lb_to_config
   roles:
   - openshift_repos
 

+ 7 - 1
playbooks/byo/openshift-cluster/upgrades/v3_3/upgrade_nodes.yml

@@ -17,7 +17,7 @@
 - include: ../initialize_facts.yml
 
 - name: Update repos and initialize facts on all hosts
-  hosts: oo_nodes_to_config
+  hosts: oo_masters_to_config:oo_nodes_to_config:oo_etcd_to_config:oo_lb_to_config
   roles:
   - openshift_repos
 
@@ -54,3 +54,9 @@
 - include: ../../../../common/openshift-cluster/upgrades/pre/verify_docker_upgrade_targets.yml
 
 - include: ../../../../common/openshift-cluster/upgrades/pre/gate_checks.yml
+
+- name: Verify masters are already upgraded
+  hosts: oo_masters_to_config
+  tasks:
+  - fail: msg="Master running {{ openshift.common.version }} must be upgraded to {{ openshift_version }} before node upgrade can be run."
+    when: openshift.common.version != openshift_version

+ 0 - 3
playbooks/common/openshift-cluster/upgrades/pre/backup_etcd.yml

@@ -70,9 +70,6 @@
       msg: "Etcd backup created in {{ openshift.common.data_dir }}/etcd-backup-{{ timestamp }}"
 
 
-##############################################################################
-# Gate on etcd backup
-##############################################################################
 - name: Gate on etcd backup
   hosts: localhost
   connection: local