systemd_units.yml 785 B

123456789101112131415161718192021222324252627
  1. ---
  2. - name: Copy node script to the node
  3. copy:
  4. src: openshift-node
  5. dest: /usr/local/bin/openshift-node
  6. mode: 0500
  7. - name: Install Node service file
  8. template:
  9. dest: "/etc/systemd/system/{{ openshift_service_type }}-node.service"
  10. src: "node.service.j2"
  11. when: not l_is_node_system_container | bool
  12. notify:
  13. - reload systemd units
  14. - block:
  15. - name: Remove existing systemd service
  16. file:
  17. path: "/etc/systemd/system/{{ openshift_service_type }}-node.service"
  18. state: absent
  19. when: not openshift_is_bootstrapped
  20. - name: Install node system container
  21. import_tasks: node_system_container.yml
  22. when: l_is_node_system_container | bool
  23. - import_tasks: config/configure-node-settings.yml
  24. - import_tasks: config/configure-proxy-settings.yml