mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-07 22:02:50 +00:00
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:
@@ -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)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user