systemd_units.yml 1.5 KB

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