Update ansible-test change handling and CS plugin. (#24395)

* Use CloudStack simulator from Ansible repo.
* Recognize cloud specific ansible-test changes.
* Hide ansible-test cs notice in explain mode.
This commit is contained in:
Matt Clay 2017-05-09 16:15:27 +08:00 committed by GitHub
parent aaf4f04574
commit e6934e42be
2 changed files with 13 additions and 2 deletions

View file

@ -51,7 +51,7 @@ class CsCloudProvider(CloudProvider):
"""
super(CsCloudProvider, self).__init__(args, config_extension='.ini')
self.image = 'resmo/cloudstack-sim'
self.image = 'ansible/ansible:cloudstack-simulator'
self.container_name = ''
self.endpoint = ''
self.host = ''
@ -154,7 +154,8 @@ class CsCloudProvider(CloudProvider):
display.info('Starting a new CloudStack simulator docker container.', verbosity=1)
docker_pull(self.args, self.image)
docker_run(self.args, self.image, ['-d', '-p', '8888:8888', '--name', self.container_name])
display.notice('The CloudStack simulator will probably be ready in 5 - 10 minutes.')
if not self.args.explain:
display.notice('The CloudStack simulator will probably be ready in 5 - 10 minutes.')
container_id = get_docker_container_id()