summaryrefslogtreecommitdiffstats
path: root/roles/openshift_node/tasks/systemd_units.yml
blob: 6b4490f61a23c01012b9fd8c355c50bd13d56c19 (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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
---
# This file is included both in the openshift_master role and in the upgrade
# playbooks.
- name: Install Node service file
  template:
    dest: "/etc/systemd/system/{{ openshift.common.service_type }}-node.service"
    src: "node.service.j2"
  when: not openshift.common.is_containerized | bool
  notify:
  - reload systemd units
  - restart node

- when: openshift.common.is_containerized | bool
  block:
  - name: include node deps docker service file
    include: config/install-node-deps-docker-service-file.yml

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

  - name: Install Node system container
    include: node_system_container.yml
    when:
    - openshift.common.is_node_system_container | bool

  - name: Install OpenvSwitch system containers
    include: openvswitch_system_container.yml
    when:
    - openshift_node_use_openshift_sdn | bool
    - openshift.common.is_openvswitch_system_container | bool

- block:
  - name: Pre-pull openvswitch image
    command: >
      docker pull {{ openshift.node.ovs_image }}:{{ openshift_image_tag }}
    register: pull_result
    changed_when: "'Downloaded newer image' in pull_result.stdout"

  - include: config/install-ovs-docker-service-file.yml
  when:
  - openshift.common.is_containerized | bool
  - openshift_node_use_openshift_sdn | bool
  - not openshift.common.is_openvswitch_system_container | bool

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