container_images.yml 637 B

1234567891011121314151617181920
  1. ---
  2. - name: Install Node system container
  3. include_tasks: node_system_container.yml
  4. when:
  5. - l_is_node_system_container | bool
  6. - name: Install OpenvSwitch system containers
  7. include_tasks: openvswitch_system_container.yml
  8. when:
  9. - openshift_node_use_openshift_sdn | bool
  10. - l_is_openvswitch_system_container | bool
  11. - name: Pre-pull openvswitch image
  12. command: >
  13. docker pull {{ openshift.node.ovs_image }}:{{ openshift_image_tag }}
  14. register: pull_result
  15. changed_when: "'Downloaded newer image' in pull_result.stdout"
  16. when:
  17. - openshift_node_use_openshift_sdn | bool
  18. - not l_is_openvswitch_system_container | bool