mirror of https://github.com/ansible/ansible.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
954 B
YAML
39 lines
954 B
YAML
6 years ago
|
---
|
||
|
- name: Create a VM folder on given Datacenter
|
||
|
vcenter_folder:
|
||
|
hostname: '{{ vcenter_hostname }}'
|
||
|
username: '{{ vcenter_username }}'
|
||
|
password: '{{ vcenter_password }}'
|
||
|
datacenter: '{{ dc1 }}'
|
||
|
folder_name: '{{ f0 }}'
|
||
|
folder_type: vm
|
||
|
state: present
|
||
|
validate_certs: no
|
||
|
|
||
|
- name: Create VMs
|
||
|
vmware_guest:
|
||
|
hostname: "{{ vcenter_hostname }}"
|
||
|
username: "{{ vcenter_username }}"
|
||
|
password: "{{ vcenter_password }}"
|
||
|
datacenter: "{{ dc1 }}"
|
||
|
validate_certs: no
|
||
|
folder: '{{ f0 }}'
|
||
|
cluster: '{{ ccr1 }}'
|
||
|
name: '{{ item }}'
|
||
|
state: poweredon
|
||
|
guest_id: debian8_64Guest
|
||
|
disk:
|
||
|
- size_gb: 1
|
||
|
type: thin
|
||
|
datastore: '{{ ds2 }}'
|
||
|
hardware:
|
||
|
memory_mb: 128
|
||
|
num_cpus: 1
|
||
|
scsi: paravirtual
|
||
|
cdrom:
|
||
|
type: iso
|
||
|
iso_path: "[{{ ds1 }}] Fedora-Workstation-Live-x86_64-29-1.2.iso"
|
||
|
networks:
|
||
|
- name: VM Network
|
||
|
with_items: '{{ infra.vm_list }}'
|