0aa59ce9ab
In the VMware tests, we call the datastores `ds1` and `ds2`. The first one is read-only, the second is read-write and can be used to deploy VMs. The naming convention was not clear enough and source of a lot confusion and mistake. We now have two better names: - ro_datastore, which is ... read-only - rw_datastore, the one that we can use to deploy new VM.
31 lines
669 B
YAML
31 lines
669 B
YAML
---
|
|
esxi_hosts:
|
|
- esxi1.test
|
|
- esxi2.test
|
|
esxi_password: '{{ esxi1_password }}'
|
|
infra:
|
|
datastores:
|
|
LocalDS_0:
|
|
type: nfs
|
|
server: datastore.test
|
|
path: /srv/share/isos
|
|
ro: false
|
|
LocalDS_1:
|
|
type: nfs
|
|
server: datastore.test
|
|
path: /srv/share/vms
|
|
ro: true
|
|
virtual_machines:
|
|
- name: DC0_H0_VM0
|
|
folder: '{{ f0 }}'
|
|
- name: DC0_H0_VM1
|
|
folder: '{{ f0 }}'
|
|
virtual_machines_in_cluster:
|
|
- name: DC0_C0_RP0_VM0
|
|
folder: '{{ f0 }}'
|
|
cluster: '{{ ccr1 }}'
|
|
- name: DC0_C0_RP0_VM1
|
|
folder: '{{ f0 }}'
|
|
cluster: '{{ ccr1 }}'
|
|
cluster_tag: test_cluster_tag_0001
|
|
cluster_category: test_cluster_cat_0001
|