forked from ansible/ansible
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
VMware: looking up maxMksConnections in incorrect location (ansible#5…
…8061) maxMksConnections is contained in vim.vm.ConfigInfo not vim.vm.VirtualHardware Fixes: ansible#58060 Signed-off-by: lijok <[email protected]> Signed-off-by: Abhijeet Kasurde <[email protected]>
- Loading branch information
Showing
4 changed files
with
52 additions
and
1 deletion.
There are no files selected for viewing
2 changes: 2 additions & 0 deletions
2
changelogs/fragments/58060-vmware_guest-make_max_connections_work.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
bugfixes: | ||
- Make max_connections parameter work again in vmware_guest module (https://github.com/ansible/ansible/pull/58061). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
46 changes: 46 additions & 0 deletions
46
test/integration/targets/vmware_guest/tasks/max_connections.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
# Test code for the vmware_guest module. | ||
# Copyright: (c) 2019, Abhijeet Kasurde <[email protected]> | ||
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt) | ||
|
||
- when: vcsim is not defined | ||
block: | ||
- &add_mk_conn | ||
name: Create new VMs again with max_connections as 4 | ||
vmware_guest: | ||
validate_certs: False | ||
hostname: "{{ vcenter_hostname }}" | ||
username: "{{ vcenter_username }}" | ||
password: "{{ vcenter_password }}" | ||
name: "{{ 'newvm_mk_conn_' + item.name }}" | ||
guest_id: centos64Guest | ||
datacenter: "{{ dc1 }}" | ||
hardware: | ||
num_cpus: 4 | ||
memory_mb: 512 | ||
max_connections: 4 | ||
disk: | ||
- size: 1gb | ||
type: thin | ||
autoselect_datastore: True | ||
state: present | ||
folder: "{{ item.folder }}" | ||
with_items: "{{ virtual_machines }}" | ||
register: mk_conn_result_0001 | ||
|
||
- debug: var=mk_conn_result_0001 | ||
|
||
- name: Assert that changes were made | ||
assert: | ||
that: | ||
- "mk_conn_result_0001.results|map(attribute='changed')|unique|list == [true]" | ||
|
||
- <<: *add_mk_conn | ||
name: Again create new VMs again with max_connections as 4 | ||
register: mk_conn_result_0002 | ||
|
||
- debug: var=mk_conn_result_0002 | ||
|
||
- name: Assert that changes were not made | ||
assert: | ||
that: | ||
- "mk_conn_result_0002.results|map(attribute='changed')|unique|list == [false]" |