From 63b6dd2454bf0bb0fcb3385968228ec122bbdaf0 Mon Sep 17 00:00:00 2001 From: Matt Clay Date: Thu, 20 Jul 2023 14:52:47 -0700 Subject: [PATCH] [stable-2.15] ansible-test: cloudstack: bump test container version (#81319) (#81322) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit (cherry picked from commit 99eeaf7da8fc96ab927c767a29e351efc23360fb) Co-authored-by: René Moser --- .../fragments/81319-cloudstack-test-container-bump-version.yml | 2 ++ .../lib/ansible_test/_internal/commands/integration/cloud/cs.py | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) create mode 100644 changelogs/fragments/81319-cloudstack-test-container-bump-version.yml diff --git a/changelogs/fragments/81319-cloudstack-test-container-bump-version.yml b/changelogs/fragments/81319-cloudstack-test-container-bump-version.yml new file mode 100644 index 00000000000..564b7d44513 --- /dev/null +++ b/changelogs/fragments/81319-cloudstack-test-container-bump-version.yml @@ -0,0 +1,2 @@ +minor_changes: + - ansible-test - Updated the CloudStack test container to version 1.6.1. diff --git a/test/lib/ansible_test/_internal/commands/integration/cloud/cs.py b/test/lib/ansible_test/_internal/commands/integration/cloud/cs.py index 0b7ae61d2fb..9f79ac518ed 100644 --- a/test/lib/ansible_test/_internal/commands/integration/cloud/cs.py +++ b/test/lib/ansible_test/_internal/commands/integration/cloud/cs.py @@ -41,7 +41,7 @@ class CsCloudProvider(CloudProvider): def __init__(self, args: IntegrationConfig) -> None: super().__init__(args) - self.image = os.environ.get('ANSIBLE_CLOUDSTACK_CONTAINER', 'quay.io/ansible/cloudstack-test-container:1.6.0') + self.image = os.environ.get('ANSIBLE_CLOUDSTACK_CONTAINER', 'quay.io/ansible/cloudstack-test-container:1.6.1') self.host = '' self.port = 0