vmware/test: switch the `ro` of the two datastore (#65356)

The `ro_datastore` was actually using the value of `rw_datastore`.
pull/65375/head
Gonéri Le Bouder 5 years ago committed by GitHub
parent d335d7a62c
commit 0407af936a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -1,8 +1,6 @@
--- ---
dc1: DC0 dc1: DC0
ccr1: DC0_C0 ccr1: DC0_C0
rw_datastore: LocalDS_0
ro_datastore: LocalDS_1
f0: F0 f0: F0
switch1: switch1 switch1: switch1
esxi1: '{{ esxi_hosts[0] }}' esxi1: '{{ esxi_hosts[0] }}'
@ -11,4 +9,4 @@ esxi3: '{{ esxi_hosts[2] }}'
dvswitch1: DVS0 dvswitch1: DVS0
esxi_user: root esxi_user: root
dvpg1: DC0_DVPG0 dvpg1: DC0_DVPG0
dvpg_with_slash: DVPG/1 dvpg_with_slash: DVPG/1

@ -2,18 +2,20 @@
esxi_hosts: esxi_hosts:
- esxi1.test - esxi1.test
- esxi2.test - esxi2.test
rw_datastore: rw_datastore
ro_datastore: ro_datastore
esxi_password: '{{ esxi1_password }}' esxi_password: '{{ esxi1_password }}'
infra: infra:
datastores: datastores:
LocalDS_0: rw_datastore:
type: nfs type: nfs
server: datastore.test server: datastore.test
path: /srv/share/isos path: /srv/share/vms
ro: false ro: false
LocalDS_1: ro_datastore:
type: nfs type: nfs
server: datastore.test server: datastore.test
path: /srv/share/vms path: /srv/share/isos
ro: true ro: true
virtual_machines: virtual_machines:
- name: DC0_H0_VM0 - name: DC0_H0_VM0

@ -3,6 +3,8 @@ esxi_hosts:
- DC0_C0_H0 - DC0_C0_H0
- DC0_C0_H1 - DC0_C0_H1
- DC0_C0_H2 - DC0_C0_H2
rw_datastore: LocalDS_0
ro_datastore: LocalDS_1
virtual_machines: virtual_machines:
- name: DC0_H0_VM0 - name: DC0_H0_VM0
folder: /F0/DC0/vm/F0 folder: /F0/DC0/vm/F0

Loading…
Cancel
Save