[CI] Fix podman cross-dependency build

Change-Id: I3501e6bf17ccb94adfcdb62956dceba9d67b0881
This commit is contained in:
Michal Arbet 2024-01-21 23:13:20 +01:00
parent eb21d4f929
commit 2624e93852

View File

@ -77,11 +77,19 @@ docker_namespace: "lokolla"
# see: https://github.com/moby/moby/issues/39033
docker_registry: "primary:4000"
docker_registry_insecure: yes
{% if container_engine == 'podman' %}
podman_registry: "primary:4000"
podman_registry_insecure: yes
{% endif %}
openstack_tag: "{{ build_image_tag }}"
{% else %}
# use the published images from a site mirror of quay.io
docker_registry: "{{ zuul_site_mirror_fqdn }}:4447"
docker_registry_insecure: no
{% if container_engine == 'podman' %}
podman_registry: "{{ zuul_site_mirror_fqdn }}:4447"
podman_registry_insecure: no
{% endif %}
docker_namespace: openstack.kolla
{% if docker_image_tag_suffix %}
openstack_tag_suffix: "{{ docker_image_tag_suffix }}"