summaryrefslogtreecommitdiffstats
path: root/roles/openshift_node/tasks/systemd_units.yml
blob: e33a4999fb96d8e28b54aebba60d2456d95785a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
---
- name: Install Node service file
  template:
    dest: "/etc/systemd/system/{{ openshift_service_type }}-node.service"
    src: "{{ openshift_is_containerized | bool | ternary('openshift.docker.node.service', 'node.service.j2') }}"
  when: not l_is_node_system_container | bool
  notify:
  - reload systemd units
  - restart node

- when: openshift_is_containerized | bool
  block:
  - name: include node deps docker service file
    include_tasks: config/install-node-deps-docker-service-file.yml

  - name: include ovs service environment file
    include_tasks: config/install-ovs-service-env-file.yml

  - include_tasks: config/install-ovs-docker-service-file.yml
    when:
    - openshift_node_use_openshift_sdn | bool
    - not l_is_openvswitch_system_container | bool

- include_tasks: config/configure-node-settings.yml
- include_tasks: config/configure-proxy-settings.yml