systemd_units.yml 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. ---
  2. - name: Install Node service file
  3. template:
  4. dest: "/etc/systemd/system/{{ openshift.common.service_type }}-node.service"
  5. src: "{{ openshift.common.is_containerized | bool | ternary('openshift.docker.node.service', 'node.service.j2') }}"
  6. when: not l_is_node_system_container | bool
  7. notify:
  8. - reload systemd units
  9. - restart node
  10. - when: openshift.common.is_containerized | bool
  11. block:
  12. - name: include node deps docker service file
  13. include_tasks: config/install-node-deps-docker-service-file.yml
  14. - name: include ovs service environment file
  15. include_tasks: config/install-ovs-service-env-file.yml
  16. - name: Install Node system container
  17. include_tasks: node_system_container.yml
  18. when:
  19. - l_is_node_system_container | bool
  20. - name: Install OpenvSwitch system containers
  21. include_tasks: openvswitch_system_container.yml
  22. when:
  23. - openshift_node_use_openshift_sdn | bool
  24. - openshift.common.is_openvswitch_system_container | bool
  25. - block:
  26. - name: Pre-pull openvswitch image
  27. command: >
  28. docker pull {{ openshift.node.ovs_image }}:{{ openshift_image_tag }}
  29. register: pull_result
  30. changed_when: "'Downloaded newer image' in pull_result.stdout"
  31. - include_tasks: config/install-ovs-docker-service-file.yml
  32. when:
  33. - openshift.common.is_containerized | bool
  34. - openshift_node_use_openshift_sdn | bool
  35. - not openshift.common.is_openvswitch_system_container | bool
  36. - include_tasks: config/configure-node-settings.yml
  37. - include_tasks: config/configure-proxy-settings.yml