pre_pull.yml 481 B

12345678910111213141516
  1. ---
  2. - name: Check that origin image is present
  3. command: 'docker images -q "{{ osm_image }}"'
  4. register: control_plane_image
  5. # This task runs async to save time while the master is being configured
  6. - name: Pre-pull Origin image
  7. docker_image:
  8. name: "{{ osm_image }}"
  9. environment:
  10. NO_PROXY: "{{ openshift.common.no_proxy | default('') }}"
  11. when: control_plane_image.stdout_lines == []
  12. # 10 minutes to pull the image
  13. async: 600
  14. poll: 0
  15. register: image_prepull