Skip to content

Commit 38fd87a

Browse files
authored
Merge pull request #2321 from mariolenz/deprecate-vmware_cluster_ha
Deprecate vmware_cluster_ha
2 parents 2873a0a + 1935633 commit 38fd87a

File tree

7 files changed

+13
-308
lines changed

7 files changed

+13
-308
lines changed

.github/workflows/extra-docs-linting.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
- name: Install dependent collections
3535
run: >
3636
ansible-galaxy collection install
37-
'vmware.vmware>=1.9.0'
37+
'vmware.vmware>=1.10.0'
3838
3939
- name: Run collection docs linter
4040
run: antsibull-docs lint-collection-docs . --plugin-docs --skip-rstcheck
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
deprecated_features:
2+
- vmware_cluster_ha - the module has been deprecated and will be removed in community.vmware 7.0.0
3+
(https://github.com/ansible-collections/community.vmware/pull/2321).

galaxy.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ tags:
1818
- vmware
1919
- virtualization
2020
dependencies:
21-
vmware.vmware: ">=1.9.0,<2.0.0"
21+
vmware.vmware: ">=1.10.0,<2.0.0"
2222
repository: https://github.com/ansible-collections/community.vmware.git
2323
homepage: https://github.com/ansible-collections/community.vmware
2424
issues: https://github.com/ansible-collections/community.vmware/issues?q=is%3Aissue+is%3Aopen+sort%3Aupdated-desc

meta/runtime.yml

+4
Original file line numberDiff line numberDiff line change
@@ -210,6 +210,10 @@ plugin_routing:
210210
deprecation:
211211
removal_version: 7.0.0
212212
warning_text: Use vmware.vmware.cluster_info instead.
213+
vmware_cluster_ha:
214+
deprecation:
215+
removal_version: 7.0.0
216+
warning_text: Use vmware.vmware.cluster_ha instead.
213217
vmware_cluster_vcls:
214218
deprecation:
215219
removal_version: 6.0.0

plugins/modules/vmware_cluster_ha.py

+4
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,10 @@
1414
DOCUMENTATION = r'''
1515
---
1616
module: vmware_cluster_ha
17+
deprecated:
18+
removed_in: 7.0.0
19+
why: This module has been moved to the L(new vmware.vmware collection,https://forum.ansible.com/t/5880)
20+
alternative: Use M(vmware.vmware.cluster_ha) instead.
1721
short_description: Manage High Availability (HA) on VMware vSphere clusters
1822
description:
1923
- Manages HA configuration on VMware vSphere clusters.

tests/integration/targets/vmware_cluster_ha/aliases

-3
This file was deleted.

tests/integration/targets/vmware_cluster_ha/tasks/main.yml

-303
This file was deleted.

0 commit comments

Comments
 (0)