|
@@ -7,14 +7,14 @@
|
|
|
docker pull {{ openshift.node.node_image }}:{{ openshift_image_tag }}
|
|
|
register: pull_result
|
|
|
changed_when: "'Downloaded newer image' in pull_result.stdout"
|
|
|
- when: openshift.common.is_containerized | bool
|
|
|
+ when: openshift.common.is_containerized | bool and not openshift.common.is_node_system_container | bool
|
|
|
|
|
|
- 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"
|
|
|
- when: openshift.common.is_containerized | bool and openshift.common.use_openshift_sdn | bool
|
|
|
+ when: openshift.common.is_containerized | bool and openshift.common.use_openshift_sdn | bool and not openshift.common.is_node_system_container | bool
|
|
|
|
|
|
- name: Install Node dependencies docker service file
|
|
|
template:
|
|
@@ -28,7 +28,9 @@
|
|
|
dest: "/etc/systemd/system/{{ openshift.common.service_type }}-node.service"
|
|
|
src: openshift.docker.node.service
|
|
|
register: install_node_result
|
|
|
- when: openshift.common.is_containerized | bool
|
|
|
+ when:
|
|
|
+ - openshift.common.is_containerized | bool
|
|
|
+ - not openshift.common.is_node_system_container | bool
|
|
|
|
|
|
- name: Create the openvswitch service env file
|
|
|
template:
|
|
@@ -39,6 +41,19 @@
|
|
|
notify:
|
|
|
- restart openvswitch
|
|
|
|
|
|
+- name: Install Node system container
|
|
|
+ include: node_system_container.yml
|
|
|
+ when:
|
|
|
+ - openshift.common.is_containerized | bool
|
|
|
+ - openshift.common.is_node_system_container | bool
|
|
|
+
|
|
|
+- name: Install OpenvSwitch system containers
|
|
|
+ include: openvswitch_system_container.yml
|
|
|
+ when:
|
|
|
+ - openshift.common.use_openshift_sdn | default(true) | bool
|
|
|
+ - openshift.common.is_containerized | bool
|
|
|
+ - openshift.common.is_openvswitch_system_container | bool
|
|
|
+
|
|
|
# May be a temporary workaround.
|
|
|
# https://bugzilla.redhat.com/show_bug.cgi?id=1331590
|
|
|
- name: Create OpenvSwitch service.d directory
|
|
@@ -58,7 +73,10 @@
|
|
|
template:
|
|
|
dest: "/etc/systemd/system/openvswitch.service"
|
|
|
src: openvswitch.docker.service
|
|
|
- when: openshift.common.is_containerized | bool and openshift.common.use_openshift_sdn | default(true) | bool
|
|
|
+ when:
|
|
|
+ - openshift.common.is_containerized | bool
|
|
|
+ - openshift.common.use_openshift_sdn | default(true) | bool
|
|
|
+ - not openshift.common.is_openvswitch_system_container | bool
|
|
|
notify:
|
|
|
- restart openvswitch
|
|
|
|