1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- ---
- # Pre-upgrade
- - import_playbook: ../initialize_nodes_to_upgrade.yml
- - import_playbook: verify_cluster.yml
- - name: Update repos on upgrade hosts
- hosts: "{{ l_upgrade_repo_hosts }}"
- roles:
- - openshift_repos
- - name: Set openshift_no_proxy_internal_hostnames
- hosts: "{{ l_upgrade_no_proxy_hosts }}"
- tasks:
- - set_fact:
- openshift_no_proxy_internal_hostnames: "{{ hostvars | lib_utils_oo_select_keys(groups['oo_nodes_to_config']
- | union(groups['oo_masters_to_config'])
- | union(groups['oo_etcd_to_config'] | default([])))
- | lib_utils_oo_collect('openshift.common.hostname') | default([]) | join (',')
- }}"
- when:
- - openshift_http_proxy is defined or openshift_https_proxy is defined
- - openshift_generate_no_proxy_hosts | default(True) | bool
- - name: OpenShift Health Checks
- hosts: "{{ l_upgrade_health_check_hosts }}"
- any_errors_fatal: true
- roles:
- - openshift_health_checker
- vars:
- - r_openshift_health_checker_playbook_context: upgrade
- post_tasks:
- - name: Run health checks (upgrade)
- action: openshift_health_check
- args:
- checks:
- - disk_availability
- - memory_availability
- - docker_image_availability
- - import_playbook: ../disable_excluders.yml
- - import_playbook: ../../../../init/version.yml
- vars:
- # Request specific openshift_release and let the openshift_version role handle converting this
- # to a more specific version, respecting openshift_image_tag and openshift_pkg_version if
- # defined, and overriding the normal behavior of protecting the installed version
- openshift_release: "{{ openshift_upgrade_target }}"
- openshift_protect_installed_version: False
- # If we're only upgrading nodes, we need to ensure masters are already upgraded
- - 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:
- - l_upgrade_nodes_only | default(False) | bool
- - openshift.common.version != openshift_version
- # If we're only upgrading nodes, skip this.
- - import_playbook: ../../../../openshift-master/private/validate_restart.yml
- when: not (l_upgrade_nodes_only | default(False)) | bool
- - name: Verify upgrade targets
- hosts: "{{ l_upgrade_verify_targets_hosts }}"
- roles:
- - role: openshift_facts
- tasks:
- - include_tasks: verify_upgrade_targets.yml
- - name: Verify docker upgrade targets
- hosts: "{{ l_upgrade_docker_target_hosts }}"
- tasks:
- - include_role:
- name: container_runtime
- tasks_from: docker_upgrade_check.yml
|