ansible/test/integration/targets/prepare_vmware_tests/vars/real_lab.yml
Gonéri Le Bouder f98a4ef2f7 vmware: ro=False datastores for the functional test
https://github.com/ansible/ansible/issues/58541 prevents us from using
read-only datastore. So for now, we mount everything read-write.
2019-07-12 16:23:17 +02:00

31 lines
698 B
YAML

---
esxi_hosts:
- esxi1.test
- esxi2.test
esxi_password: '{{ esxi1_password }}'
infra:
datastores:
LocalDS_0:
type: nfs
server: gateway.test
path: /srv/share/isos
# https://github.com/ansible/ansible/issues/58541 prevents us
# from using the "ro: true" mode
ro: false
LocalDS_1:
type: nfs
server: gateway.test
path: /srv/share/vms
ro: false
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 }}'