ppc64le: Fix tagging for tcib usage

We were overwritintg x86_64 containers with ppc ones after we
switched to tcib. This is because the tag is improperly set.

This patch should restore the proper tag, allowing us to push
without stepping on x86_64

Change-Id: I96bdf50d4a3bb57206d01c57a534ccaebbd52cfc
Closes-Bug: #1902831
This commit is contained in:
Mike Turek 2020-11-04 16:47:58 +00:00 committed by Rafael Folco
parent ff032920df
commit 2b96f3b5b7
1 changed files with 1 additions and 1 deletions

View File

@ -102,7 +102,7 @@ openstack tripleo container image build \
--exclude {{ item }} \
{% endfor %}
{% endif %}
--tag {{ version_hash }} \
--tag {{ version_hash }}{{ arch_tag | default('') }} \
--base {{ containers_base_image | default('ubi8') }} \
--prefix {{ container_name_prefix }} \
--config-file {{ openstack_git_root }}/{% if zuul_internal is defined %}openstack-{% endif %}tripleo-common/container-images/tripleo_containers.yaml \