|
@@ -7,6 +7,7 @@
|
|
|
# Locally setup containerized facts for now
|
|
|
- set_fact:
|
|
|
l_is_atomic: "{{ ostree_booted.stat.exists }}"
|
|
|
+ l_use_crio: "{{ openshift_docker_use_crio | default(false) }}"
|
|
|
- set_fact:
|
|
|
l_is_containerized: "{{ (l_is_atomic | bool) or (containerized | default(false) | bool) }}"
|
|
|
l_is_openvswitch_system_container: "{{ (openshift_use_openvswitch_system_container | default(openshift_use_system_containers) | bool) }}"
|
|
@@ -55,6 +56,7 @@
|
|
|
- l_atomic_docker_version.stdout | replace('"', '') | version_compare('1.12','>=')
|
|
|
|
|
|
when:
|
|
|
+ - not l_use_crio
|
|
|
- l_is_atomic | bool
|
|
|
- r_openshift_facts_ran is not defined
|
|
|
|