Will Szumski 988a822259 Add podman support
Adds support for Podman as an alternative container engine. This builds
on the support added in kolla-ansible in the 2023.2 cycle.

Change-Id: I2c6befbdda7e684228065103feea7250a0ea3826
2025-01-27 16:42:33 +00:00

12 lines
290 B
YAML

---
- name: Pulling OpenSM container image
kayobe_container_image:
name: "{{ item.value.image }}"
source: pull
state: present
with_dict: "{{ opensm_services }}"
when:
- item.value.enabled
- opensm_action != 'destroy'
become: "{{ container_engine == 'podman' }}"