1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- ---
- #
- # Control Plane Upgrade Playbook
- #
- # Upgrades masters and Docker (only on standalone etcd hosts)
- #
- # This upgrade does not include:
- # - node service running on masters
- # - docker running on masters
- # - node service running on dedicated nodes
- #
- # You can run the upgrade_nodes.yml playbook after this to upgrade these components separately.
- #
- - import_playbook: ../init.yml
- vars:
- l_upgrade_no_switch_firewall_hosts: "oo_masters_to_config:oo_etcd_to_config:oo_lb_to_config"
- - name: Configure the upgrade target for the common upgrade tasks
- hosts: oo_masters_to_config:oo_etcd_to_config:oo_lb_to_config
- tasks:
- - set_fact:
- openshift_upgrade_target: '3.9'
- openshift_upgrade_min: '3.7'
- - import_playbook: ../pre/config.yml
- vars:
- l_upgrade_repo_hosts: "oo_masters_to_config:oo_etcd_to_config:oo_lb_to_config"
- l_upgrade_no_proxy_hosts: "oo_masters_to_config"
- l_upgrade_health_check_hosts: "oo_masters_to_config:oo_etcd_to_config:oo_lb_to_config"
- l_upgrade_verify_targets_hosts: "oo_masters_to_config"
- l_upgrade_docker_target_hosts: "oo_masters_to_config:oo_etcd_to_config"
- l_upgrade_excluder_hosts: "oo_masters_to_config"
- - import_playbook: validator.yml
- - name: Flag pre-upgrade checks complete for hosts without errors
- hosts: oo_masters_to_config:oo_etcd_to_config
- tasks:
- - set_fact:
- pre_upgrade_complete: True
- # Pre-upgrade completed
- - import_playbook: ../upgrade_control_plane.yml
- vars:
- master_config_hook: "v3_7/master_config_upgrade.yml"
- # All controllers must be stopped at the same time then restarted
- - name: Cycle all controller services to force new leader election mode
- hosts: oo_masters_to_config
- gather_facts: no
- roles:
- - role: openshift_facts
- tasks:
- - name: Stop {{ openshift.common.service_type }}-master-controllers
- systemd:
- name: "{{ openshift.common.service_type }}-master-controllers"
- state: stopped
- - name: Start {{ openshift.common.service_type }}-master-controllers
- systemd:
- name: "{{ openshift.common.service_type }}-master-controllers"
- state: started
- - import_playbook: ../post_control_plane.yml
|