systemd_units.yml 2.0 KB

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