summaryrefslogtreecommitdiffstats
path: root/playbooks/init
diff options
context:
space:
mode:
authorMichael Gugino <mgugino@redhat.com>2017-11-20 18:14:55 -0500
committerMichael Gugino <mgugino@redhat.com>2017-11-21 16:20:57 -0500
commit2050722ec61b6596a70b848a997401ad955e88a9 (patch)
tree9ba5788c107eaa6b1948eed0e247a8e029c05944 /playbooks/init
parent51a0cbd42807c91a5e30fa58362b8745a40607f2 (diff)
downloadopenshift-2050722ec61b6596a70b848a997401ad955e88a9.tar.gz
openshift-2050722ec61b6596a70b848a997401ad955e88a9.tar.bz2
openshift-2050722ec61b6596a70b848a997401ad955e88a9.tar.xz
openshift-2050722ec61b6596a70b848a997401ad955e88a9.zip
Fix node system container var
Fix logic, make it simpler.
Diffstat (limited to 'playbooks/init')
-rw-r--r--playbooks/init/facts.yml2
1 files changed, 0 insertions, 2 deletions
diff --git a/playbooks/init/facts.yml b/playbooks/init/facts.yml
index 2523afbf1..f2a9e48cb 100644
--- a/playbooks/init/facts.yml
+++ b/playbooks/init/facts.yml
@@ -31,7 +31,6 @@
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 | default(false)) | bool) }}"
- l_is_node_system_container: "{{ (openshift_use_node_system_container | default(openshift_use_system_containers | default(false)) | bool) }}"
l_is_master_system_container: "{{ (openshift_use_master_system_container | default(openshift_use_system_containers | default(false)) | bool) }}"
l_is_etcd_system_container: "{{ (openshift_use_etcd_system_container | default(openshift_use_system_containers | default(false)) | bool) }}"
@@ -135,7 +134,6 @@
ip: "{{ openshift_ip | default(None) }}"
is_containerized: "{{ l_is_containerized | default(None) }}"
is_openvswitch_system_container: "{{ l_is_openvswitch_system_container | default(false) }}"
- is_node_system_container: "{{ l_is_node_system_container | default(false) }}"
is_master_system_container: "{{ l_is_master_system_container | default(false) }}"
is_etcd_system_container: "{{ l_is_etcd_system_container | default(false) }}"
etcd_runtime: "{{ l_etcd_runtime }}"