Skip to content

Commit

Permalink
test: cloudstack: Use test-container 1.4.0 (ansible#71905)
Browse files Browse the repository at this point in the history
  • Loading branch information
resmo authored Sep 24, 2020
1 parent a47eafa commit 5348e7b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 2 additions & 0 deletions changelogs/fragments/71905_bump-cloudstack-test-container.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
minor_changes:
- ansible-test - Implemented CloudStack test container selection by ENV variable `ANSIBLE_CLOUDSTACK_CONTAINER` with a default to `quay.io/ansible/cloudstack-test-container:1.4.0`.
3 changes: 1 addition & 2 deletions test/lib/ansible_test/_internal/cloud/cs.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,7 @@ def __init__(self, args):
"""
super(CsCloudProvider, self).__init__(args)

# The simulator must be pinned to a specific version to guarantee CI passes with the version used.
self.image = 'quay.io/ansible/cloudstack-test-container:1.2.0'
self.image = os.environ.get('ANSIBLE_CLOUDSTACK_CONTAINER', 'quay.io/ansible/cloudstack-test-container:1.4.0')
self.container_name = ''
self.endpoint = ''
self.host = ''
Expand Down

0 comments on commit 5348e7b

Please sign in to comment.