Skip to content

Commit

Permalink
Pin docker simulator versions.
Browse files Browse the repository at this point in the history
  • Loading branch information
mattclay committed Oct 2, 2017
1 parent 1241d0a commit c055795
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion test/runner/lib/cloud/cs.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,8 @@ def __init__(self, args):
"""
super(CsCloudProvider, self).__init__(args, config_extension='.ini')

self.image = 'ansible/ansible:cloudstack-simulator'
# The simulator must be pinned to a specific version to guarantee CI passes with the version used.
self.image = 'ansible/ansible:cloudstack-simulator@sha256:885aedb7f34ce7114eaa383a2541ede93c4f8cb543c05edf90b694def67b1a6a'
self.container_name = ''
self.endpoint = ''
self.host = ''
Expand Down
3 changes: 2 additions & 1 deletion test/runner/lib/cloud/vcenter.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,8 @@ def __init__(self, args):
"""
super(VcenterProvider, self).__init__(args, config_extension='.ini')

self.image = 'ansible/ansible:vcenter-simulator'
# The simulator must be pinned to a specific version to guarantee CI passes with the version used.
self.image = 'ansible/ansible:vcenter-simulator@sha256:1a92e84f477ae4c45f9070a5419a0fc2b46abaecdb5bc396826741bca65ce028'
self.container_name = ''

def filter(self, targets, exclude):
Expand Down

0 comments on commit c055795

Please sign in to comment.