mirror of
https://github.com/kubevirt/kubevirt.core.git
synced 2026-07-28 10:24:39 +00:00
feat(inventory): Deprecate connections parameter
Deprecate the connections parameter of the inventory plugin. For now this adds only a warning message while keeping the functionality. Signed-off-by: Felix Matouschek <fmatouschek@redhat.com>
This commit is contained in:
@@ -39,6 +39,11 @@ options:
|
|||||||
- Optional list of cluster connection settings. If no connections are provided, the default
|
- Optional list of cluster connection settings. If no connections are provided, the default
|
||||||
I(~/.kube/config) and active context will be used, and objects will be returned for all namespaces
|
I(~/.kube/config) and active context will be used, and objects will be returned for all namespaces
|
||||||
the active user is authorized to access.
|
the active user is authorized to access.
|
||||||
|
deprecated:
|
||||||
|
removed_in: "3.0.0"
|
||||||
|
alternative:
|
||||||
|
- Split your connections into multiple configuration files and move parameters of each connection
|
||||||
|
to the configuration top level.
|
||||||
type: list
|
type: list
|
||||||
elements: dict
|
elements: dict
|
||||||
suboptions:
|
suboptions:
|
||||||
@@ -422,6 +427,12 @@ class InventoryModule(BaseInventoryPlugin, Constructable, Cacheable):
|
|||||||
fetch_objects populates the inventory with every configured connection.
|
fetch_objects populates the inventory with every configured connection.
|
||||||
"""
|
"""
|
||||||
if connections:
|
if connections:
|
||||||
|
self.display.deprecated(
|
||||||
|
msg="The 'connections' parameter is deprecated and starting with version 2.0.0 of kubevirt.core supports only a single entry.",
|
||||||
|
version="3.0.0",
|
||||||
|
collection_name="kubevirt.core",
|
||||||
|
)
|
||||||
|
|
||||||
if not isinstance(connections, list):
|
if not isinstance(connections, list):
|
||||||
raise KubeVirtInventoryException("Expecting connections to be a list.")
|
raise KubeVirtInventoryException("Expecting connections to be a list.")
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user