- ---
- - name: Copy node script to the node
- copy:
- src: openshift-node
- dest: /usr/local/bin/openshift-node
- mode: 0500
- - name: Install Node service file
- template:
- dest: "/etc/systemd/system/{{ openshift_service_type }}-node.service"
- src: "node.service.j2"
- when: not l_is_node_system_container | bool
- notify:
- - reload systemd units
- - import_tasks: config/configure-node-settings.yml
- - import_tasks: config/configure-proxy-settings.yml
|