You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Podman driver allows to customize the podman executable path. This custom path is passed to all containers.podman modules, except for the task Build an Ansible compatible image.
Current behavior
- name: Build an Ansible compatible image # noqa: no-handlercontainers.podman.podman_image:
build:
extra_args: >- {% if item.item.buildargs is defined %}{% for i, k in item.item.buildargs.items() %}--build-arg={{ i }}={{ k }}{% endfor %}{% endif %} {% if item.item.pull is defined %}--pull={{ item.item.pull }}{% endif %}file: "{{ item.dest }}"name: "molecule_local/{{ item.item.image }}"path: "{{ molecule_scenario_directory }}"pull: "{{ item.item.pull | default(omit) }}"loop: "{{ platforms.results }}"
Expected behavior
- name: Build an Ansible compatible image # noqa: no-handlercontainers.podman.podman_image:
executable: "{{ podman_exec }}"build:
extra_args: >- {% if item.item.buildargs is defined %}{% for i, k in item.item.buildargs.items() %}--build-arg={{ i }}={{ k }}{% endfor %}{% endif %} {% if item.item.pull is defined %}--pull={{ item.item.pull }}{% endif %}file: "{{ item.dest }}"name: "molecule_local/{{ item.item.image }}"path: "{{ molecule_scenario_directory }}"pull: "{{ item.item.pull | default(omit) }}"loop: "{{ platforms.results }}"
The text was updated successfully, but these errors were encountered:
Description
Podman driver allows to customize the podman executable path. This custom path is passed to all
containers.podman
modules, except for the taskBuild an Ansible compatible image
.Current behavior
Expected behavior
The text was updated successfully, but these errors were encountered: