mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
VMware: Update example vmware_deploy_ovf (#49893)
* Update vmware_deploy_ovf.py Provided more detailed example using additional, often used parameters Co-Authored-By: mhoffmann1 <marcin.hoffmann@intel.com> * Replace variable values in example task Co-Authored-By: mhoffmann1 <marcin.hoffmann@intel.com>
This commit is contained in:
parent
b784c7c4ea
commit
ae826cddf4
1 changed files with 15 additions and 0 deletions
|
@ -116,6 +116,21 @@ EXAMPLES = r'''
|
||||||
ovf: /path/to/ubuntu-16.04-amd64.ovf
|
ovf: /path/to/ubuntu-16.04-amd64.ovf
|
||||||
wait_for_ip_address: true
|
wait_for_ip_address: true
|
||||||
delegate_to: localhost
|
delegate_to: localhost
|
||||||
|
|
||||||
|
# Deploys a new VM named 'NewVM' in specific datacenter/cluster, with network mapping taken from variable and using ova template from an absolute path
|
||||||
|
- vmware_deploy_ovf:
|
||||||
|
hostname: '{{ vcenter_hostname }}'
|
||||||
|
username: '{{ vcenter_username }}'
|
||||||
|
password: '{{ vcenter_password }}'
|
||||||
|
datacenter: Datacenter1
|
||||||
|
cluster: Cluster1
|
||||||
|
datastore: vsandatastore
|
||||||
|
name: NewVM
|
||||||
|
networks: "{u'VM Network':u'{{ ProvisioningNetworkLabel }}'}"
|
||||||
|
validate_certs: no
|
||||||
|
power_on: no
|
||||||
|
ovf: /absolute/path/to/template/mytemplate.ova
|
||||||
|
delegate_to: localhost
|
||||||
'''
|
'''
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue