mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Deprecated Old NetApp Cdot Modules (#43781)
* MVP2 Post ElementSW OSRB sync * Revert "MVP2 Post ElementSW OSRB sync" This reverts commit c13db2ad962cd56bffce052c2891c558a2240c72. Undoing bad push * move deprecated files * add documentation * add new line * Fix version issue * fix issue with ignore file, hopefully * Add ontap modules to porting guide * fix refs * add _module to ref
This commit is contained in:
parent
d8d366ef37
commit
9dceca8a88
10 changed files with 63 additions and 15 deletions
|
@ -136,8 +136,16 @@ The following modules no longer exist:
|
|||
Deprecation notices
|
||||
-------------------
|
||||
|
||||
The following modules will be removed in Ansible 2.10. Please update your playbooks accordingly.
|
||||
The following modules will be removed in Ansible 2.11. Please update your playbooks accordingly.
|
||||
|
||||
* ``na_cdot_aggregate`` use :ref:`na_ontap_aggregate <na_ontap_aggregate_module>` instead.
|
||||
* ``na_cdot_license`` use :ref:`na_ontap_license <na_ontap_license_module>` instead.
|
||||
* ``na_cdot_lun`` use :ref:`na_ontap_lun <na_ontap_lun_module>` instead.
|
||||
* ``na_cdot_qtree`` use :ref:`na_ontap_qtree <na_ontap_qtree_module>` instead.
|
||||
* ``na_cdot_svm`` use :ref:`na_ontap_svm <na_ontap_svm_module>` instead.
|
||||
* ``na_cdot_user`` use :ref:`na_ontap_user <na_ontap_user_module>` instead.
|
||||
* ``na_cdot_user_role`` use :ref:`na_ontap_user_role <na_ontap_user_role_module>` instead.
|
||||
* ``na_cdot_volume`` use :ref:`na_ontap_volume <na_ontap_volume_module>` instead.
|
||||
|
||||
Noteworthy module changes
|
||||
-------------------------
|
||||
|
|
|
@ -8,7 +8,7 @@ __metaclass__ = type
|
|||
|
||||
|
||||
ANSIBLE_METADATA = {'metadata_version': '1.1',
|
||||
'status': ['preview'],
|
||||
'status': ['deprecated'],
|
||||
'supported_by': 'community'}
|
||||
|
||||
|
||||
|
@ -22,6 +22,11 @@ extends_documentation_fragment:
|
|||
version_added: '2.3'
|
||||
author: Sumit Kumar (sumit4@netapp.com)
|
||||
|
||||
deprecated:
|
||||
removed_in: '2.11'
|
||||
why: Updated modules released with increased functionality
|
||||
alternative: Use M(na_ontap_aggregate) instead.
|
||||
|
||||
description:
|
||||
- Create or destroy aggregates on NetApp cDOT.
|
||||
|
|
@ -8,7 +8,7 @@ __metaclass__ = type
|
|||
|
||||
|
||||
ANSIBLE_METADATA = {'metadata_version': '1.1',
|
||||
'status': ['preview'],
|
||||
'status': ['deprecated'],
|
||||
'supported_by': 'community'}
|
||||
|
||||
|
||||
|
@ -22,6 +22,11 @@ extends_documentation_fragment:
|
|||
version_added: '2.3'
|
||||
author: Sumit Kumar (sumit4@netapp.com)
|
||||
|
||||
deprecated:
|
||||
removed_in: '2.11'
|
||||
why: Updated modules released with increased functionality
|
||||
alternative: Use M(na_ontap_license) instead.
|
||||
|
||||
description:
|
||||
- Add or remove licenses on NetApp ONTAP.
|
||||
|
|
@ -8,7 +8,7 @@ __metaclass__ = type
|
|||
|
||||
|
||||
ANSIBLE_METADATA = {'metadata_version': '1.1',
|
||||
'status': ['preview'],
|
||||
'status': ['deprecated'],
|
||||
'supported_by': 'community'}
|
||||
|
||||
|
||||
|
@ -22,6 +22,11 @@ extends_documentation_fragment:
|
|||
version_added: '2.3'
|
||||
author: Sumit Kumar (sumit4@netapp.com)
|
||||
|
||||
deprecated:
|
||||
removed_in: '2.11'
|
||||
why: Updated modules released with increased functionality
|
||||
alternative: Use M(na_ontap_lun) instead.
|
||||
|
||||
description:
|
||||
- Create, destroy, resize luns on NetApp cDOT.
|
||||
|
|
@ -8,7 +8,7 @@ __metaclass__ = type
|
|||
|
||||
|
||||
ANSIBLE_METADATA = {'metadata_version': '1.1',
|
||||
'status': ['preview'],
|
||||
'status': ['deprecated'],
|
||||
'supported_by': 'community'}
|
||||
|
||||
|
||||
|
@ -22,6 +22,11 @@ extends_documentation_fragment:
|
|||
version_added: '2.3'
|
||||
author: Sumit Kumar (sumit4@netapp.com)
|
||||
|
||||
deprecated:
|
||||
removed_in: '2.11'
|
||||
why: Updated modules released with increased functionality
|
||||
alternative: Use M(na_ontap_qtree) instead.
|
||||
|
||||
description:
|
||||
- Create or destroy Qtrees.
|
||||
|
|
@ -8,7 +8,7 @@ __metaclass__ = type
|
|||
|
||||
|
||||
ANSIBLE_METADATA = {'metadata_version': '1.1',
|
||||
'status': ['preview'],
|
||||
'status': ['deprecated'],
|
||||
'supported_by': 'community'}
|
||||
|
||||
|
||||
|
@ -22,6 +22,11 @@ extends_documentation_fragment:
|
|||
version_added: '2.3'
|
||||
author: Sumit Kumar (sumit4@netapp.com)
|
||||
|
||||
deprecated:
|
||||
removed_in: '2.11'
|
||||
why: Updated modules released with increased functionality
|
||||
alternative: Use M(na_ontap_svm) instead.
|
||||
|
||||
description:
|
||||
- Create or destroy svm on NetApp cDOT
|
||||
|
|
@ -8,7 +8,7 @@ __metaclass__ = type
|
|||
|
||||
|
||||
ANSIBLE_METADATA = {'metadata_version': '1.1',
|
||||
'status': ['preview'],
|
||||
'status': ['deprecated'],
|
||||
'supported_by': 'community'}
|
||||
|
||||
|
||||
|
@ -22,6 +22,11 @@ extends_documentation_fragment:
|
|||
version_added: '2.3'
|
||||
author: Sumit Kumar (sumit4@netapp.com)
|
||||
|
||||
deprecated:
|
||||
removed_in: '2.11'
|
||||
why: Updated modules released with increased functionality
|
||||
alternative: Use M(na_ontap_user) instead.
|
||||
|
||||
description:
|
||||
- Create or destroy users.
|
||||
|
|
@ -8,7 +8,7 @@ __metaclass__ = type
|
|||
|
||||
|
||||
ANSIBLE_METADATA = {'metadata_version': '1.1',
|
||||
'status': ['preview'],
|
||||
'status': ['deprecated'],
|
||||
'supported_by': 'community'}
|
||||
|
||||
|
||||
|
@ -22,6 +22,11 @@ extends_documentation_fragment:
|
|||
version_added: '2.3'
|
||||
author: Sumit Kumar (sumit4@netapp.com)
|
||||
|
||||
deprecated:
|
||||
removed_in: '2.11'
|
||||
why: Updated modules released with increased functionality
|
||||
alternative: Use M(na_ontap_user_role) instead.
|
||||
|
||||
description:
|
||||
- Create or destroy user roles
|
||||
|
|
@ -8,7 +8,7 @@ __metaclass__ = type
|
|||
|
||||
|
||||
ANSIBLE_METADATA = {'metadata_version': '1.1',
|
||||
'status': ['preview'],
|
||||
'status': ['deprecated'],
|
||||
'supported_by': 'community'}
|
||||
|
||||
|
||||
|
@ -22,6 +22,11 @@ extends_documentation_fragment:
|
|||
version_added: '2.3'
|
||||
author: Sumit Kumar (sumit4@netapp.com)
|
||||
|
||||
deprecated:
|
||||
removed_in: '2.11'
|
||||
why: Updated modules released with increased functionality
|
||||
alternative: Use M(na_ontap_volume) instead.
|
||||
|
||||
description:
|
||||
- Create or destroy volumes on NetApp cDOT
|
||||
|
|
@ -1077,12 +1077,12 @@ lib/ansible/modules/source_control/subversion.py E322
|
|||
lib/ansible/modules/storage/infinidat/infini_export.py E323
|
||||
lib/ansible/modules/storage/infinidat/infini_export.py E324
|
||||
lib/ansible/modules/storage/infinidat/infini_export_client.py E323
|
||||
lib/ansible/modules/storage/netapp/na_cdot_license.py E329
|
||||
lib/ansible/modules/storage/netapp/na_cdot_lun.py E325
|
||||
lib/ansible/modules/storage/netapp/na_cdot_volume.py E317
|
||||
lib/ansible/modules/storage/netapp/na_cdot_volume.py E322
|
||||
lib/ansible/modules/storage/netapp/na_cdot_volume.py E324
|
||||
lib/ansible/modules/storage/netapp/na_cdot_volume.py E325
|
||||
lib/ansible/modules/storage/netapp/_na_cdot_license.py E329
|
||||
lib/ansible/modules/storage/netapp/_na_cdot_lun.py E325
|
||||
lib/ansible/modules/storage/netapp/_na_cdot_volume.py E317
|
||||
lib/ansible/modules/storage/netapp/_na_cdot_volume.py E322
|
||||
lib/ansible/modules/storage/netapp/_na_cdot_volume.py E324
|
||||
lib/ansible/modules/storage/netapp/_na_cdot_volume.py E325
|
||||
lib/ansible/modules/storage/netapp/netapp_e_amg.py E322
|
||||
lib/ansible/modules/storage/netapp/netapp_e_amg.py E325
|
||||
lib/ansible/modules/storage/netapp/netapp_e_amg_role.py E322
|
||||
|
|
Loading…
Reference in a new issue