From 2f8ee2cf40b594e3da10f883b453bd81bad6d0ab Mon Sep 17 00:00:00 2001 From: Iury Gregory Melo Ferreira Date: Thu, 22 Jun 2023 22:02:29 -0300 Subject: [PATCH] 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 --- devstack/common_settings | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/devstack/common_settings b/devstack/common_settings index 8d5660c4df..a6eac65932 100644 --- a/devstack/common_settings +++ b/devstack/common_settings @@ -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