]> git.apps.os.sepia.ceph.com Git - ceph-ansible.git/commitdiff
docker2podman: install podman
authorGuillaume Abrioux <gabrioux@redhat.com>
Fri, 10 Jan 2020 10:17:27 +0000 (11:17 +0100)
committerGuillaume Abrioux <gabrioux@redhat.com>
Fri, 10 Jan 2020 16:41:27 +0000 (17:41 +0100)
This commit adds a package installation task in order to install podman
during the docker-to-podman.yml migration playbook.

Signed-off-by: Guillaume Abrioux <gabrioux@redhat.com>
(cherry picked from commit d746575fd0ac83d5861b6aae0143aa8d390760e6)

infrastructure-playbooks/docker-to-podman.yml

index 6b1a8baf9cd704490874ff8e6077b74d298a234d..e3c801402dd9b393e173171b806a846675a7d7b8 100644 (file)
 
 
   tasks:
+    - name: install podman
+      package:
+        name: podman
+        state: present
+      register: result
+      until: result is succeeded
+      tags:
+        - with_pkg
+      when: not is_atomic | bool
+
     - import_role:
         name: ceph-mon
         tasks_from: systemd.yml