123456789101112131415161718192021222324252627 |
- ---
- - 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
- - block:
- - name: Remove existing systemd service
- file:
- path: "/etc/systemd/system/{{ openshift_service_type }}-node.service"
- state: absent
- when: not openshift_is_bootstrapped
- - name: Install node system container
- import_tasks: node_system_container.yml
- when: l_is_node_system_container | bool
- - import_tasks: config/configure-node-settings.yml
- - import_tasks: config/configure-proxy-settings.yml
|