Fix IRONIC_IMAGE_NAME=non-existent-image

Our jobs started failling after a possible change in tempest
that introduced "non-existent-image" [1]

[1] https://review.opendev.org/c/openstack/tempest/+/831018

Change-Id: Iff7943446741e499100561a79c9f4930beab3da2
This commit is contained in:
Iury Gregory Melo Ferreira 2023-06-22 22:02:29 -03:00
parent 24943402a1
commit 2f8ee2cf40
1 changed files with 3 additions and 1 deletions

View File

@ -16,7 +16,9 @@ CIRROS_VERSION=${CIRROS_VERSION:-$CIRROS_VERSION_DEVSTACK}
IRONIC_DEFAULT_IMAGE_NAME=cirros-${CIRROS_VERSION}-x86_64-uec
IRONIC_IMAGE_NAME=${DEFAULT_IMAGE_NAME:-$IRONIC_DEFAULT_IMAGE_NAME}
# TODO (iurygregory): change to the normal order after the discussion
# with openstack-qa https://review.opendev.org/c/openstack/tempest/+/831018
IRONIC_IMAGE_NAME=${IRONIC_DEFAULT_IMAGE_NAME:-$DEFAULT_IMAGE_NAME}
# Add link to download queue, ignore if already exist.
# TODO(vsaienko) Move to devstack https://review.opendev.org/420656