diff options
author | René Moser <mail@renemoser.net> | 2023-09-20 17:34:02 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-20 17:34:02 +0200 |
commit | e4b9f9c6ae77388ff0d0a51d4943939636a03161 (patch) | |
tree | 5398cc65ea27e801a4b3ec073f4a300d54d03ebc | |
parent | Always allow "no-other-choice" pre-release dependencies when resolving collec... (diff) | |
download | ansible-e4b9f9c6ae77388ff0d0a51d4943939636a03161.tar.xz ansible-e4b9f9c6ae77388ff0d0a51d4943939636a03161.zip |
tests: update CloudStack test container to version 1.7.0. (#81732)
-rw-r--r-- | changelogs/fragments/81732-cloudstack-test-container-1.7.0.yml | 3 | ||||
-rw-r--r-- | test/lib/ansible_test/_internal/commands/integration/cloud/cs.py | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/changelogs/fragments/81732-cloudstack-test-container-1.7.0.yml b/changelogs/fragments/81732-cloudstack-test-container-1.7.0.yml new file mode 100644 index 0000000000..c37b8bfb91 --- /dev/null +++ b/changelogs/fragments/81732-cloudstack-test-container-1.7.0.yml @@ -0,0 +1,3 @@ +--- +minor_changes: + - ansible-test - Updated the CloudStack test container to version 1.7.0. 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 8060804ae3..ebb273496f 100644 --- a/test/lib/ansible_test/_internal/commands/integration/cloud/cs.py +++ b/test/lib/ansible_test/_internal/commands/integration/cloud/cs.py @@ -38,7 +38,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.1') + self.image = os.environ.get('ANSIBLE_CLOUDSTACK_CONTAINER', 'quay.io/ansible/cloudstack-test-container:1.7.0') self.host = '' self.port = 0 |