diff options
author | Michael Gugino <mgugino@redhat.com> | 2017-11-20 18:10:47 -0500 |
---|---|---|
committer | Michael Gugino <mgugino@redhat.com> | 2017-11-27 09:54:37 -0500 |
commit | 94bbe2b08cec73b79d8c0755df45677229c35e34 (patch) | |
tree | 75fc00794f5175d9dcd286d90d64d0e75f34a050 /playbooks/init | |
parent | 05b13fa07f6913ba1afeae50c6647938033769a9 (diff) | |
download | openshift-94bbe2b08cec73b79d8c0755df45677229c35e34.tar.gz openshift-94bbe2b08cec73b79d8c0755df45677229c35e34.tar.bz2 openshift-94bbe2b08cec73b79d8c0755df45677229c35e34.tar.xz openshift-94bbe2b08cec73b79d8c0755df45677229c35e34.zip |
Simplify is_master_system_container logic
Simplify the variable is_master_system_container
Diffstat (limited to 'playbooks/init')
-rw-r--r-- | playbooks/init/facts.yml | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/playbooks/init/facts.yml b/playbooks/init/facts.yml index 6368eaa88..820561b2b 100644 --- a/playbooks/init/facts.yml +++ b/playbooks/init/facts.yml @@ -29,7 +29,6 @@ - name: initialize_facts set fact for containerized and l_is_*_system_container set_fact: l_is_containerized: "{{ (l_is_atomic | bool) or (containerized | default(false) | bool) }}" - l_is_master_system_container: "{{ (openshift_use_master_system_container | default(openshift_use_system_containers | default(false)) | bool) }}" # TODO: Should this be moved into health checks?? # Seems as though any check that happens with a corresponding fail should move into health_checks @@ -112,7 +111,6 @@ hostname: "{{ openshift_hostname | default(None) }}" ip: "{{ openshift_ip | default(None) }}" is_containerized: "{{ l_is_containerized | default(None) }}" - is_master_system_container: "{{ l_is_master_system_container | default(false) }}" public_hostname: "{{ openshift_public_hostname | default(None) }}" public_ip: "{{ openshift_public_ip | default(None) }}" portal_net: "{{ openshift_portal_net | default(openshift_master_portal_net) | default(None) }}" |