Remove turbo mode functionality (#149)

* Remove turbo mode functionality

* Add changelog fragment

* Fix linting issue

* Update docs
This commit is contained in:
Mike Graves
2021-06-23 18:50:32 -04:00
committed by GitHub
parent cd72b6d7df
commit 2eca446f09
3 changed files with 4 additions and 12 deletions

View File

@@ -159,11 +159,6 @@ If upgrading older playbooks which were built prior to Ansible 2.10 and this col
For documentation on how to use individual modules and other content included in this collection, please see the links in the 'Included content' section earlier in this README.
## Ansible Turbo mode Tech Preview
The ``kubernetes.core`` collection supports Ansible Turbo mode as a tech preview via the ``cloud.common`` collection. Please read more about Ansible Turbo mode - [here](https://github.com/ansible-collections/kubernetes.core/blob/main/docs/ansible_turbo_mode.rst).
## Testing and Development
If you want to develop new content for this collection or improve what's already here, the easiest way to work on the collection is to clone it into one of the configured [`COLLECTIONS_PATHS`](https://docs.ansible.com/ansible/latest/reference_appendices/config.html#collections-paths), and work on it there.

View File

@@ -0,0 +1,3 @@
---
minor_changes:
- temporarily disable turbo mode (https://github.com/ansible-collections/kubernetes.core/pull/149).

View File

@@ -3,10 +3,4 @@ from __future__ import (absolute_import, division, print_function)
__metaclass__ = type
try:
from ansible_collections.cloud.common.plugins.module_utils.turbo.module import (
AnsibleTurboModule as AnsibleModule,
) # noqa: F401
AnsibleModule.collection_name = "kubernetes.core"
except ImportError:
from ansible.module_utils.basic import AnsibleModule # noqa: F401
from ansible.module_utils.basic import AnsibleModule # noqa: F401