systemd_units.yml 460 B

12345678910111213141516
  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. - import_tasks: config/configure-node-settings.yml
  15. - import_tasks: config/configure-proxy-settings.yml