Merge pull request #3560 from fidencio/fix-kata-deploy-tag-replacement

kata-deploy: Fix the tag replacement logic
This commit is contained in:
snir911 2022-01-27 15:48:20 +02:00 committed by GitHub
commit 7ac0fcb9e0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -99,6 +99,14 @@ function test_kata() {
YAMLPATH="./tools/packaging/kata-deploy/"
VERSION=$(cat ./VERSION)
# kata-deploy.yaml and kata-cleanup.yaml do not have tags for the non-stable releases, thus
# in this cases, let's ensure we use "latest" as version.
# For more details, please, see:
# https://github.com/kata-containers/kata-containers/blob/f7c7dc8d33288e588b284ae4820df342aa8e2d74/tools/packaging/release/update-repository-version.sh#L143-L179
if [[ $VERSION =~ "alpha"|"rc" ]];
then
VERSION="latest"
fi
# This action could be called in two contexts:
# 1. Packaging workflows: testing in packaging repository, where we assume yaml/packaging