|
@@ -90,7 +90,9 @@
|
|
|
package:
|
|
|
name: "{{ openshift.common.service_type }}-sdn-ovs{{ openshift_pkg_version | oo_image_tag_to_rpm_version(include_dash=True) }}"
|
|
|
state: present
|
|
|
- when: openshift.common.use_openshift_sdn and not openshift.common.is_containerized | bool
|
|
|
+ when:
|
|
|
+ - openshift.common.use_openshift_sdn | default(true) | bool
|
|
|
+ - not openshift.common.is_containerized | bool
|
|
|
|
|
|
- name: Install conntrack-tools package
|
|
|
package:
|
|
@@ -119,7 +121,9 @@
|
|
|
enabled: yes
|
|
|
state: started
|
|
|
daemon_reload: yes
|
|
|
- when: openshift.common.is_containerized | bool and openshift.common.use_openshift_sdn | bool
|
|
|
+ when:
|
|
|
+ - openshift.common.is_containerized | bool
|
|
|
+ - openshift.common.use_openshift_sdn | default(true) | bool
|
|
|
register: ovs_start_result
|
|
|
until: not ovs_start_result | failed
|
|
|
retries: 3
|