Add integration test provider for vmware (#55772)

* Add integration test provider for vmware

This change adds a new remote cloud provider option for vmware,
supporting dynamic environments running on worldstream.nl as well as
static environments specific by the user in a cloud-config template.
This commit is contained in:
Jill R
2019-06-04 13:49:30 -07:00
committed by GitHub
parent b8b0a2a20c
commit 47cfbd6605
3 changed files with 170 additions and 19 deletions

View File

@@ -79,6 +79,9 @@ class AnsibleCoreCI(object):
parallels=(
'osx',
),
vmware=(
'vmware'
),
)
if provider:
@@ -131,6 +134,11 @@ class AnsibleCoreCI(object):
self.ssh_key = SshKey(args)
self.port = None
elif self.provider == 'vmware':
self.ssh_key = SshKey(args)
self.endpoints = ['https://access.ws.testing.ansible.com']
self.max_threshold = 1
else:
raise ApplicationError('Unsupported platform: %s' % platform)