]> git.apps.os.sepia.ceph.com Git - ceph-ansible.git/commitdiff
facts: set container_binary fact in non-containerized deployment
authorGuillaume Abrioux <gabrioux@redhat.com>
Mon, 13 May 2019 14:34:53 +0000 (16:34 +0200)
committerGuillaume Abrioux <gabrioux@redhat.com>
Thu, 16 May 2019 14:39:13 +0000 (16:39 +0200)
This is needed for the ceph-dashboard implementation since it requires
to run containerized application which aren't packaged as RPMs.

Signed-off-by: Guillaume Abrioux <gabrioux@redhat.com>
roles/ceph-facts/tasks/facts.yml

index 6753ce1bead9edcc2f854183800d2dc1efc398f6..2ede2a6f36081937220ce287efdf51a531c99e64 100644 (file)
@@ -20,7 +20,6 @@
 - name: set_fact container_binary
   set_fact:
     container_binary: "{{ 'podman' if (podman_binary.stat.exists and ansible_distribution == 'Fedora') or (ansible_os_family == 'RedHat' and ansible_distribution_major_version == '8') else 'docker' }}"
-  when: containerized_deployment
 
 # Set ceph_release to ceph_stable by default
 - name: set_fact ceph_release ceph_stable_release