mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Deprecated Helm module (#115)
Helm module is deprecated in favor of a new helm module from community.kubernetes.
This commit is contained in:
parent
945296f314
commit
aadc6cd66d
3 changed files with 10 additions and 0 deletions
2
changelogs/fragments/115-deprecated-helm-module.yaml
Normal file
2
changelogs/fragments/115-deprecated-helm-module.yaml
Normal file
|
@ -0,0 +1,2 @@
|
|||
deprecated_features:
|
||||
- "helm - Put ``helm`` module to deprecated. New implementation is available in community.kubernetes collection."
|
|
@ -316,6 +316,10 @@ plugin_routing:
|
|||
deprecation:
|
||||
removal_date: TBD
|
||||
warning_text: see plugin documentation for details
|
||||
helm:
|
||||
deprecation:
|
||||
removal_date: TBD
|
||||
warning_text: The helm module in community.general has been deprecated. Use community.kubernetes.helm instead.
|
||||
memset_memstore_facts:
|
||||
deprecation:
|
||||
removal_date: TBD
|
||||
|
|
|
@ -9,6 +9,10 @@ __metaclass__ = type
|
|||
|
||||
DOCUMENTATION = '''
|
||||
---
|
||||
deprecated:
|
||||
removed_in: '2.14'
|
||||
why: For more details https://github.com/ansible/ansible/issues/61546.
|
||||
alternative: Use M(helm) in kubernetes collection instead.
|
||||
module: helm
|
||||
short_description: Manages Kubernetes packages with the Helm package manager
|
||||
author: "Flavio Percoco (@flaper87)"
|
||||
|
|
Loading…
Reference in a new issue