[CI] Use compatible version of heat-tempest-plugin
This is a combination of two patch to fix the gate: 1. Use compatible version of heat-tempest-plugin heat-tempest-plugin dropped py38 support, hence it cannot be installed from recent master, so we need to override the checkout to the version that still supports py38 and compatible to the actual branch. This is needed both for the grenade job and the functional job, because these are using the heat-tempest-plugin. 2. Try archive path to download Fedora image This is a temporal workaround to allow downloading Fedora 37 image which was moved to the archive path. Change-Id: I9b1702749976a2cea42a24130e5fec2931b75ce1 (cherry picked from commit a806b400cf5766f1e675798e501aa32416dc0939) (cherry picked from commit ae6225890e5e604bd8ed71a5964838a690229f45) (cherry picked from commit 4fd9953a55c15e1d6d0bfb8f648d03d9e368fc3b) (cherry picked from commit 81a8b93254842150db98b5fc1388188d67e223f0)
This commit is contained in:
parent
f94cba70d4
commit
665ccfc262
@ -13,7 +13,8 @@
|
||||
- openstack/barbican
|
||||
- openstack/heat
|
||||
- openstack/heat-templates
|
||||
- openstack/heat-tempest-plugin
|
||||
- name: opendev.org/openstack/heat-tempest-plugin
|
||||
override-checkout: zed-last
|
||||
- openstack/octavia
|
||||
- openstack/neutron
|
||||
- openstack/oslo.messaging
|
||||
@ -134,7 +135,8 @@
|
||||
parent: grenade-multinode
|
||||
required-projects:
|
||||
- opendev.org/openstack/heat
|
||||
- opendev.org/openstack/heat-tempest-plugin
|
||||
- name: opendev.org/openstack/heat-tempest-plugin
|
||||
override-checkout: zed-last
|
||||
- opendev.org/openstack/python-heatclient
|
||||
vars:
|
||||
grenade_devstack_localrc:
|
||||
|
@ -455,11 +455,14 @@ function configure_tempest_for_heat {
|
||||
source /etc/ci/mirror_info.sh
|
||||
fi
|
||||
HEAT_TEST_FEDORA_IMAGE_UPSTREAM=https://download.fedoraproject.org/pub/fedora/linux
|
||||
HEAT_TEST_FEDORA_IMAGE_UPSTREAM_ARCHIVE=https://download.fedoraproject.org/pub/archive/fedora/linux/
|
||||
HEAT_TEST_FEDORA_IMAGE_PATH=releases/37/Cloud/x86_64/images/Fedora-Cloud-Base-37-1.7.x86_64.qcow2
|
||||
if curl --output /dev/null --silent --head --fail "${NODEPOOL_FEDORA_MIRROR}/${HEAT_TEST_FEDORA_IMAGE_PATH}"; then
|
||||
if curl --location --output /dev/null --silent --head --fail "${NODEPOOL_FEDORA_MIRROR}/${HEAT_TEST_FEDORA_IMAGE_PATH}"; then
|
||||
export HEAT_TEST_FEDORA_IMAGE="${NODEPOOL_FEDORA_MIRROR}/${HEAT_TEST_FEDORA_IMAGE_PATH}"
|
||||
else
|
||||
elif curl --location --output /dev/null --silent --head --fail "${HEAT_TEST_FEDORA_IMAGE_UPSTREAM}/${HEAT_TEST_FEDORA_IMAGE_PATH}"; then
|
||||
export HEAT_TEST_FEDORA_IMAGE="${HEAT_TEST_FEDORA_IMAGE_UPSTREAM}/${HEAT_TEST_FEDORA_IMAGE_PATH}"
|
||||
else
|
||||
export HEAT_TEST_FEDORA_IMAGE="${HEAT_TEST_FEDORA_IMAGE_UPSTREAM_ARCHIVE}/${HEAT_TEST_FEDORA_IMAGE_PATH}"
|
||||
fi
|
||||
TOKEN=$(openstack token issue -c id -f value)
|
||||
local image_exists=$( openstack image list | grep "Fedora-Cloud-Base-37-1.7.x86_64" )
|
||||
|
Loading…
x
Reference in New Issue
Block a user