1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- ---
- - name: Install Node service file
- template:
- dest: "/etc/systemd/system/{{ openshift_service_type }}-node.service"
- src: "{{ openshift.common.is_containerized | bool | ternary('openshift.docker.node.service', 'node.service.j2') }}"
- when: not l_is_node_system_container | bool
- notify:
- - reload systemd units
- - restart node
- - when: openshift.common.is_containerized | bool
- block:
- - name: include node deps docker service file
- include_tasks: config/install-node-deps-docker-service-file.yml
- - name: include ovs service environment file
- include_tasks: config/install-ovs-service-env-file.yml
- - name: Install Node system container
- include_tasks: node_system_container.yml
- when:
- - l_is_node_system_container | bool
- - name: Install OpenvSwitch system containers
- include_tasks: openvswitch_system_container.yml
- when:
- - openshift_node_use_openshift_sdn | bool
- - l_is_openvswitch_system_container | bool
- - block:
- - name: Pre-pull openvswitch image
- command: >
- docker pull {{ openshift.node.ovs_image }}:{{ openshift_image_tag }}
- register: pull_result
- changed_when: "'Downloaded newer image' in pull_result.stdout"
- - include_tasks: config/install-ovs-docker-service-file.yml
- when:
- - openshift.common.is_containerized | bool
- - openshift_node_use_openshift_sdn | bool
- - not l_is_openvswitch_system_container | bool
- - include_tasks: config/configure-node-settings.yml
- - include_tasks: config/configure-proxy-settings.yml
|