Skip to content

Commit 1e0ccb7

Browse files
authored
Deprecate vmware_content_deploy_* (#2332)
SUMMARY Deprecate vmware_content_deploy_ovf_template and vmware_content_deploy_template in favor of vmware.vmware.deploy_content_library_ovf and vmware.vmware.deploy_content_library_template ISSUE TYPE Feature Pull Request COMPONENT NAME vmware_content_deploy_ovf_template vmware_content_deploy_template ADDITIONAL INFORMATION ansible-collections/vmware.vmware#108
1 parent 38fd87a commit 1e0ccb7

File tree

6 files changed

+21
-39
lines changed

6 files changed

+21
-39
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
deprecated_features:
2+
- vmware_content_deploy_ovf_template - the module has been deprecated and will be removed in community.vmware 7.0.0
3+
(https://github.com/ansible-collections/community.vmware/pull/2332).
4+
- vmware_content_deploy_template - the module has been deprecated and will be removed in community.vmware 7.0.0
5+
(https://github.com/ansible-collections/community.vmware/pull/2332).

meta/runtime.yml

+8
Original file line numberDiff line numberDiff line change
@@ -218,6 +218,14 @@ plugin_routing:
218218
deprecation:
219219
removal_version: 6.0.0
220220
warning_text: Use vmware.vmware.cluster_vcls instead.
221+
vmware_content_deploy_ovf_template:
222+
deprecation:
223+
removal_version: 7.0.0
224+
warning_text: Use vmware.vmware.deploy_content_library_ovf instead.
225+
vmware_content_deploy_template:
226+
deprecation:
227+
removal_version: 7.0.0
228+
warning_text: Use vmware.vmware.deploy_content_library_template instead.
221229
vmware_maintenancemode:
222230
deprecation:
223231
removal_version: 7.0.0

plugins/modules/vmware_content_deploy_ovf_template.py

+4
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,10 @@
1212
DOCUMENTATION = r'''
1313
---
1414
module: vmware_content_deploy_ovf_template
15+
deprecated:
16+
removed_in: 7.0.0
17+
why: This module has been moved to the L(new vmware.vmware collection,https://forum.ansible.com/t/5880)
18+
alternative: Use M(vmware.vmware.deploy_content_library_ovf) instead.
1519
short_description: Deploy Virtual Machine from ovf template stored in content library.
1620
description:
1721
- Module to deploy virtual machine from ovf template in content library.

plugins/modules/vmware_content_deploy_template.py

+4
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,10 @@
1313
DOCUMENTATION = r'''
1414
---
1515
module: vmware_content_deploy_template
16+
deprecated:
17+
removed_in: 7.0.0
18+
why: This module has been moved to the L(new vmware.vmware collection,https://forum.ansible.com/t/5880)
19+
alternative: Use M(vmware.vmware.deploy_content_library_template) instead.
1620
short_description: Deploy Virtual Machine from template stored in content library.
1721
description:
1822
- Module to deploy virtual machine from template in content library.

tests/integration/targets/vmware_content_deploy_template/aliases

-4
This file was deleted.

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

-35
This file was deleted.

0 commit comments

Comments
 (0)