mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 13:22:48 +00:00
vmware: refactoring of vmware test roles -- part7 (#55732)
Refactoring of the following roles to make use of the new `prepare_vmware_tests` role. - `vmware_resource_pool` - `vmware_resource_pool_facts` - `vmware_target_canonical_facts` - `vmware_vcenter_settings` - `vmware_vcenter_statistics` - `vmware_vm_facts` - `vmware_vm_host_drs_rule` - `vmware_vm_vm_drs_rule` - `vmware_vmkernel` - `vmware_vmkernel_facts` - `vmware_vspan_session` - `vmware_vswitch` - `vmware_vswitch_facts` This patch depends on: https://github.com/ansible/ansible/pull/55719 Original PR: https://github.com/ansible/ansible/pull/54882
This commit is contained in:
committed by
ansibot
parent
2ef8b297ff
commit
affaedfca8
@@ -1,2 +1,3 @@
|
||||
cloud/vcenter
|
||||
unsupported
|
||||
shippable/vcenter/group1
|
||||
needs/target/prepare_vmware_tests
|
||||
|
||||
@@ -1,138 +1,65 @@
|
||||
# Test code for the vmware_vmkernel module.
|
||||
# Copyright: (c) 2018, Christian Kotte <christian.kotte@gmx.de>
|
||||
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
||||
|
||||
- when: vcsim is not defined
|
||||
block:
|
||||
# TODO: vcsim does not support HostVirtualNicManager-related operations
|
||||
- import_role:
|
||||
name: prepare_vmware_tests
|
||||
vars:
|
||||
setup_attach_host: true
|
||||
setup_switch: true
|
||||
|
||||
- name: Wait for Flask controller to come up online
|
||||
wait_for:
|
||||
host: "{{ vcsim }}"
|
||||
port: 5000
|
||||
state: started
|
||||
- name: create basic portgroup
|
||||
vmware_portgroup:
|
||||
validate_certs: False
|
||||
hostname: "{{ vcenter_hostname }}"
|
||||
username: "{{ vcenter_username }}"
|
||||
password: "{{ vcenter_password }}"
|
||||
switch_name: "{{ switch1 }}"
|
||||
cluster_name: "{{ ccr1 }}"
|
||||
portgroup_name: vMotion
|
||||
vlan_id: 0
|
||||
state: present
|
||||
register: dvs_pg_result_0001
|
||||
|
||||
- name: kill vcsim
|
||||
uri:
|
||||
url: http://{{ vcsim }}:5000/killall
|
||||
- debug: var=dvs_pg_result_0001
|
||||
- name: Create VMkernel adapter with vMotion TCP/IP stack
|
||||
vmware_vmkernel: &new_vmkernel
|
||||
hostname: "{{ vcenter_hostname }}"
|
||||
username: "{{ vcenter_username }}"
|
||||
password: "{{ vcenter_password }}"
|
||||
esxi_hostname: '{{ hostvars[esxi1].ansible_host }}'
|
||||
vswitch: "{{ switch1 }}"
|
||||
portgroup: vMotion
|
||||
mtu: 9000
|
||||
network:
|
||||
type: static
|
||||
ip_address: 192.168.100.100
|
||||
subnet_mask: 255.255.255.0
|
||||
tcpip_stack: vmotion
|
||||
state: present
|
||||
validate_certs: no
|
||||
register: host_vmkernel
|
||||
- debug: var=host_vmkernel
|
||||
|
||||
- name: start vcsim
|
||||
uri:
|
||||
url: http://{{ vcsim }}:5000/spawn?cluster=2
|
||||
register: vcsim_instance
|
||||
- name: Create VMkernel adapter in check mode
|
||||
vmware_vmkernel:
|
||||
<<: *new_vmkernel
|
||||
register: host_vmkernel
|
||||
check_mode: yes
|
||||
- debug: var=host_vmkernel
|
||||
|
||||
- debug:
|
||||
var: vcsim_instance
|
||||
|
||||
- name: Wait for vcsim server to come up online
|
||||
wait_for:
|
||||
host: "{{ vcsim }}"
|
||||
port: 443
|
||||
state: started
|
||||
|
||||
- name: get a list of hosts from vcsim
|
||||
uri:
|
||||
url: http://{{ vcsim }}:5000/govc_find?filter=H
|
||||
register: hosts
|
||||
|
||||
- name: get a host
|
||||
set_fact:
|
||||
host1: "{{ hosts.json[0] | basename }}"
|
||||
|
||||
- debug: var=host1
|
||||
|
||||
- name: Create VMkernel adapter
|
||||
vmware_vmkernel:
|
||||
hostname: "{{ vcsim }}"
|
||||
username: "{{ user }}"
|
||||
password: "{{ passwd }}"
|
||||
esxi_hostname: "{{ host1 }}"
|
||||
vswitch: vSwitch1
|
||||
portgroup: vMotion
|
||||
mtu: 1500
|
||||
enable_vmotion: True
|
||||
state: present
|
||||
validate_certs: no
|
||||
register: host_vmkernel
|
||||
|
||||
- debug: var=host_vmkernel
|
||||
|
||||
- name: Create VMkernel adapter in check mode
|
||||
vmware_vmkernel:
|
||||
hostname: "{{ vcsim }}"
|
||||
username: "{{ user }}"
|
||||
password: "{{ passwd }}"
|
||||
esxi_hostname: "{{ host1 }}"
|
||||
vswitch: vSwitch1
|
||||
portgroup: vMotion
|
||||
mtu: 1500
|
||||
enable_vmotion: True
|
||||
state: present
|
||||
validate_certs: no
|
||||
register: host_vmkernel
|
||||
check_mode: yes
|
||||
|
||||
- debug: var=host_vmkernel
|
||||
|
||||
- name: Delete VMkernel adapter
|
||||
vmware_vmkernel:
|
||||
hostname: "{{ vcsim }}"
|
||||
username: "{{ user }}"
|
||||
password: "{{ passwd }}"
|
||||
esxi_hostname: "{{ host1 }}"
|
||||
vswitch: vSwitch1
|
||||
portgroup: vMotion
|
||||
state: absent
|
||||
validate_certs: no
|
||||
register: host_vmkernel
|
||||
|
||||
- debug: var=host_vmkernel
|
||||
|
||||
- name: Create VMkernel adapter with vMotion TCP/IP stack
|
||||
vmware_vmkernel:
|
||||
hostname: "{{ vcsim }}"
|
||||
username: "{{ user }}"
|
||||
password: "{{ passwd }}"
|
||||
esxi_hostname: "{{ host1 }}"
|
||||
vswitch: vSwitch1
|
||||
portgroup: vMotion
|
||||
mtu: 9000
|
||||
network:
|
||||
type: static
|
||||
ip_address: 192.168.100.100
|
||||
subnet_mask: 255.255.255.0
|
||||
tcpip_stack: vmotion
|
||||
state: present
|
||||
validate_certs: no
|
||||
register: host_vmkernel
|
||||
|
||||
- debug: var=host_vmkernel
|
||||
|
||||
- name: Delete VMkernel adapter
|
||||
vmware_vmkernel:
|
||||
hostname: "{{ vcsim }}"
|
||||
username: "{{ user }}"
|
||||
password: "{{ passwd }}"
|
||||
esxi_hostname: "{{ host1 }}"
|
||||
vswitch: vSwitch1
|
||||
portgroup: vMotion
|
||||
state: absent
|
||||
validate_certs: no
|
||||
register: host_vmkernel
|
||||
|
||||
- debug: var=host_vmkernel
|
||||
|
||||
- name: Create VMkernel adapter with DHCP
|
||||
vmware_vmkernel:
|
||||
hostname: "{{ vcsim }}"
|
||||
username: "{{ user }}"
|
||||
password: "{{ passwd }}"
|
||||
esxi_hostname: "{{ host1 }}"
|
||||
vswitch: vSwitch1
|
||||
portgroup: vMotion
|
||||
mtu: 9000
|
||||
network:
|
||||
type: dhcp
|
||||
state: present
|
||||
validate_certs: no
|
||||
register: host_vmkernel
|
||||
|
||||
- debug: var=host_vmkernel
|
||||
- name: Delete VMkernel adapter
|
||||
vmware_vmkernel:
|
||||
hostname: "{{ vcenter_hostname }}"
|
||||
username: "{{ vcenter_username }}"
|
||||
password: "{{ vcenter_password }}"
|
||||
esxi_hostname: '{{ hostvars[esxi1].ansible_host }}'
|
||||
vswitch: "{{ switch1 }}"
|
||||
device: '{{ host_vmkernel.device }}'
|
||||
portgroup: vMotion
|
||||
state: absent
|
||||
validate_certs: no
|
||||
register: host_vmkernel
|
||||
- debug: var=host_vmkernel
|
||||
|
||||
Reference in New Issue
Block a user