We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f8cfa15 + 3922ad0 commit c8c7e39Copy full SHA for c8c7e39
roles/cephadm/tasks/prereqs.yml
@@ -32,3 +32,22 @@
32
- cephadm_registry_username | length > 0
33
- cephadm_container_engine == 'docker'
34
become: true
35
+
36
+- name: Pull ceph image with Podman
37
+ containers.podman.podman_image:
38
+ name: "{{ cephadm_image }}"
39
+ state: present
40
+ when:
41
+ - cephadm_image | length > 0
42
+ - cephadm_container_engine == 'podman'
43
+ become: true
44
45
+- name: Pull ceph image with Docker
46
+ community.docker.docker_image:
47
+ source: pull
48
49
50
51
52
+ - cephadm_container_engine == 'docker'
53
0 commit comments