mirror of
https://github.com/ansible-collections/kubernetes.core.git
synced 2026-03-27 13:53:03 +00:00
Re-enable support for turbo mode SUMMARY This re-enables the ability to add turbo mode. It also adds a few more tests to cover some cases that had been broken in turbo mode previously. Testing with turbo mode is not currently enabled, and would fail until ansible-collections/cloud.common#69 can be merged and a new cloud.common release is done. This also does not add cloud.common to the collection dependencies until a decision has been made about how enabling/disabling turbo mode will work when cloud.common is already installed. ISSUE TYPE Bugfix Pull Request COMPONENT NAME ADDITIONAL INFORMATION Reviewed-by: Abhijeet Kasurde <None> Reviewed-by: Mike Graves <mgraves@redhat.com> Reviewed-by: Gonéri Le Bouder <goneri@lebouder.net> Reviewed-by: None <None>
25 lines
728 B
Python
25 lines
728 B
Python
from __future__ import (absolute_import, division, print_function)
|
|
|
|
__metaclass__ = type
|
|
|
|
|
|
import os
|
|
|
|
from ansible.module_utils.common.validation import check_type_bool
|
|
|
|
try:
|
|
enable_turbo_mode = check_type_bool(os.environ.get("ENABLE_TURBO_MODE"))
|
|
except TypeError:
|
|
enable_turbo_mode = False
|
|
|
|
if enable_turbo_mode:
|
|
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
|
|
else:
|
|
from ansible.module_utils.basic import AnsibleModule # noqa: F401
|