systemd_units.yml 564 B

12345678910111213141516171819202122
  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 openshift_is_atomic | bool
  12. notify:
  13. - reload systemd units
  14. - name: Install node system container
  15. import_tasks: node_system_container.yml
  16. when: openshift_is_atomic | bool
  17. - import_tasks: config/configure-node-settings.yml
  18. - import_tasks: configure-proxy-settings.yml