djpbessems
c55eddc5dc
Some checks reported errors
continuous-integration/drone/push Build encountered an error
35 lines
1.0 KiB
YAML
35 lines
1.0 KiB
YAML
- hosts: localhost
|
|
gather_facts: false
|
|
vars_files:
|
|
- hypervisor.vcenter.yml
|
|
- nodes.yml
|
|
tasks:
|
|
- name: Clone multiple VMs from template
|
|
community.vmware.vmware_guest:
|
|
hostname: "{{ hv.hostname }}"
|
|
username: "{{ hv.username }}"
|
|
password: "{{ hv_password }}"
|
|
validate_certs: no
|
|
datacenter: "{{ hv.datacenter }}"
|
|
folder: "{{ hv.folder }}"
|
|
cluster: "{{ hv.cluster }}"
|
|
name: "{{ kubernetes.clustername | upper }}_{{ lookup('community.general.random_string', length=5, numbers=false, special=false) | upper }}"
|
|
guest_id: "{{ item.guest_id }}"
|
|
hardware:
|
|
memory_mb: 8192
|
|
num_cpus: 4
|
|
disk:
|
|
- size_gb: 50
|
|
type: thin
|
|
datastore: "{{ hv.datastore }}"
|
|
networks:
|
|
- name: "{{ hv.network }}"
|
|
ip: "{{ item.ip }}"
|
|
cdrom:
|
|
- type: iso
|
|
iso_path: "[{{ hv.isodatastore }}] {{ item.iso_path }}"
|
|
state: poweredon
|
|
# customization_spec: "{{ customization_spec }}"
|
|
delegate_to: localhost
|
|
with_items: "{{ servers }}"
|