upgrade_pre.yml 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. ---
  2. # This is a hack to allow us to update various components without restarting
  3. # services. This will persist into the upgrade play as well, so everything
  4. # needs to be restarted by hand.
  5. - set_fact:
  6. skip_node_svc_handlers: True
  7. - import_tasks: registry_auth.yml
  8. - name: update package meta data to speed install later.
  9. command: "{{ ansible_pkg_mgr }} makecache"
  10. register: result
  11. until: result is succeeded
  12. when: not openshift_is_containerized | bool
  13. - name: Check Docker image count
  14. shell: "docker images -aq | wc -l"
  15. register: docker_image_count
  16. when:
  17. - l_docker_upgrade is defined
  18. - l_docker_upgrade | bool
  19. - debug: var=docker_image_count.stdout
  20. when:
  21. - l_docker_upgrade is defined
  22. - l_docker_upgrade | bool
  23. # Prepull the rpms for docker upgrade, but don't install
  24. - name: download docker upgrade rpm
  25. command: "{{ ansible_pkg_mgr }} install -y --downloadonly docker{{ '-' + docker_version }}"
  26. register: result
  27. until: result is succeeded
  28. when:
  29. - l_docker_upgrade is defined
  30. - l_docker_upgrade | bool
  31. - import_tasks: upgrade/rpm_upgrade.yml
  32. when: not openshift_is_containerized | bool