mirror of
https://github.com/kubevirt/kubevirt.core.git
synced 2026-07-31 03:44:35 +00:00
Merge pull request #178 from 0xFelix/hidden_fields
feat(modules): Add hidden_fields argument
This commit is contained in:
@@ -45,7 +45,7 @@ ansible-galaxy collection install kubevirt-kubevirt.core-*.tar.gz
|
|||||||
<!--start collection_dependencies -->
|
<!--start collection_dependencies -->
|
||||||
#### Ansible collections
|
#### Ansible collections
|
||||||
|
|
||||||
* [kubernetes.core](https://galaxy.ansible.com/ui/repo/published/kubernetes/core)>=3.1.0,<6.0.0
|
* [kubernetes.core](https://galaxy.ansible.com/ui/repo/published/kubernetes/core)>=5.2.0,<6.0.0
|
||||||
|
|
||||||
To install all the dependencies:
|
To install all the dependencies:
|
||||||
```bash
|
```bash
|
||||||
|
|||||||
@@ -6,7 +6,7 @@ readme: README.md
|
|||||||
authors:
|
authors:
|
||||||
- KubeVirt Project (kubevirt.io)
|
- KubeVirt Project (kubevirt.io)
|
||||||
dependencies:
|
dependencies:
|
||||||
kubernetes.core: '>=3.1.0,<6.0.0'
|
kubernetes.core: '>=5.2.0,<6.0.0'
|
||||||
description: Lean Ansible bindings for KubeVirt
|
description: Lean Ansible bindings for KubeVirt
|
||||||
license_file: LICENSE
|
license_file: LICENSE
|
||||||
tags:
|
tags:
|
||||||
|
|||||||
43
plugins/module_utils/diff.py
Normal file
43
plugins/module_utils/diff.py
Normal file
@@ -0,0 +1,43 @@
|
|||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
# Copyright 2025 Red Hat, Inc.
|
||||||
|
# Apache License 2.0 (see LICENSE or http://www.apache.org/licenses/LICENSE-2.0)
|
||||||
|
|
||||||
|
from typing import Dict, Tuple, Optional
|
||||||
|
|
||||||
|
from ansible_collections.kubernetes.core.plugins.module_utils.k8s import service
|
||||||
|
|
||||||
|
|
||||||
|
# Copied from
|
||||||
|
# https://github.com/ansible-collections/kubernetes.core/blob/d329e7ee42799ae9d86b54cf2c7dfc8059103504/plugins/module_utils/k8s/service.py#L493
|
||||||
|
# Removed this once this fix was merged into kubernetes.core.
|
||||||
|
def _diff_objects(
|
||||||
|
existing: Dict, new: Dict, hidden_fields: Optional[list] = None
|
||||||
|
) -> Tuple[bool, Dict]:
|
||||||
|
result = {}
|
||||||
|
diff = service.recursive_diff(existing, new)
|
||||||
|
if not diff:
|
||||||
|
return True, result
|
||||||
|
|
||||||
|
result["before"] = service.hide_fields(diff[0], hidden_fields)
|
||||||
|
result["after"] = service.hide_fields(diff[1], hidden_fields)
|
||||||
|
|
||||||
|
if list(result["after"].keys()) == ["metadata"] and list(
|
||||||
|
result["before"].keys()
|
||||||
|
) == ["metadata"]:
|
||||||
|
# If only metadata.generation and metadata.resourceVersion changed, ignore it
|
||||||
|
ignored_keys = set(["generation", "resourceVersion"])
|
||||||
|
|
||||||
|
if set(result["after"]["metadata"].keys()).issubset(ignored_keys) and set(
|
||||||
|
result["before"]["metadata"].keys()
|
||||||
|
).issubset(ignored_keys):
|
||||||
|
return True, result
|
||||||
|
|
||||||
|
return False, result
|
||||||
|
|
||||||
|
|
||||||
|
service.diff_objects = _diff_objects
|
||||||
|
|
||||||
|
|
||||||
|
def _patch_diff_objects():
|
||||||
|
"""_dummy is required to satisfy the unused import linter and the ansible-doc sanity check."""
|
||||||
|
pass
|
||||||
@@ -43,6 +43,7 @@ def execute_info_module(module, kind, wait_condition):
|
|||||||
wait=module.params["wait"],
|
wait=module.params["wait"],
|
||||||
wait_sleep=module.params["wait_sleep"],
|
wait_sleep=module.params["wait_sleep"],
|
||||||
wait_timeout=module.params["wait_timeout"],
|
wait_timeout=module.params["wait_timeout"],
|
||||||
|
hidden_fields=module.params["hidden_fields"],
|
||||||
condition=wait_condition,
|
condition=wait_condition,
|
||||||
)
|
)
|
||||||
module.exit_json(changed=False, **facts)
|
module.exit_json(changed=False, **facts)
|
||||||
|
|||||||
@@ -158,6 +158,15 @@ options:
|
|||||||
- If set to O(force=yes), and O(state=present) is set, an existing object will be replaced.
|
- If set to O(force=yes), and O(state=present) is set, an existing object will be replaced.
|
||||||
type: bool
|
type: bool
|
||||||
default: no
|
default: no
|
||||||
|
hidden_fields:
|
||||||
|
description:
|
||||||
|
- Hide fields matching this option in the result.
|
||||||
|
- An example might be O(hidden_fields=[metadata.managedFields])
|
||||||
|
or O(hidden_fields=[metadata.annotations[kubemacpool.io/transaction-timestamp]]).
|
||||||
|
type: list
|
||||||
|
elements: str
|
||||||
|
default: ['metadata.annotations[kubemacpool.io/transaction-timestamp]', metadata.managedFields]
|
||||||
|
version_added: 2.2.0
|
||||||
|
|
||||||
requirements:
|
requirements:
|
||||||
- "python >= 3.9"
|
- "python >= 3.9"
|
||||||
@@ -273,6 +282,11 @@ result:
|
|||||||
type: str
|
type: str
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
# Monkey patch service.diff_objects to temporarily fix the changed logic
|
||||||
|
from ansible_collections.kubevirt.core.plugins.module_utils.diff import (
|
||||||
|
_patch_diff_objects,
|
||||||
|
)
|
||||||
|
|
||||||
from copy import deepcopy
|
from copy import deepcopy
|
||||||
from typing import Dict
|
from typing import Dict
|
||||||
|
|
||||||
@@ -402,6 +416,14 @@ def arg_spec() -> Dict:
|
|||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
"hidden_fields": {
|
||||||
|
"type": "list",
|
||||||
|
"elements": "str",
|
||||||
|
"default": [
|
||||||
|
"metadata.annotations[kubemacpool.io/transaction-timestamp]",
|
||||||
|
"metadata.managedFields",
|
||||||
|
],
|
||||||
|
},
|
||||||
}
|
}
|
||||||
spec.update(deepcopy(AUTH_ARG_SPEC))
|
spec.update(deepcopy(AUTH_ARG_SPEC))
|
||||||
spec.update(deepcopy(COMMON_ARG_SPEC))
|
spec.update(deepcopy(COMMON_ARG_SPEC))
|
||||||
@@ -440,4 +462,5 @@ def main() -> None:
|
|||||||
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
|
_patch_diff_objects()
|
||||||
main()
|
main()
|
||||||
|
|||||||
@@ -74,6 +74,15 @@ options:
|
|||||||
- Ignored if O(wait) is not set.
|
- Ignored if O(wait) is not set.
|
||||||
default: 120
|
default: 120
|
||||||
type: int
|
type: int
|
||||||
|
hidden_fields:
|
||||||
|
description:
|
||||||
|
- Hide fields matching this option in the result.
|
||||||
|
- An example might be O(hidden_fields=[metadata.managedFields])
|
||||||
|
or O(hidden_fields=[metadata.annotations[kubemacpool.io/transaction-timestamp]]).
|
||||||
|
type: list
|
||||||
|
elements: str
|
||||||
|
default: ['metadata.annotations[kubemacpool.io/transaction-timestamp]', metadata.managedFields]
|
||||||
|
version_added: 2.2.0
|
||||||
|
|
||||||
requirements:
|
requirements:
|
||||||
- "python >= 3.9"
|
- "python >= 3.9"
|
||||||
@@ -150,6 +159,11 @@ resources:
|
|||||||
type: dict
|
type: dict
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
# Monkey patch service.diff_objects to temporarily fix the changed logic
|
||||||
|
from ansible_collections.kubevirt.core.plugins.module_utils.diff import (
|
||||||
|
_patch_diff_objects,
|
||||||
|
)
|
||||||
|
|
||||||
from copy import deepcopy
|
from copy import deepcopy
|
||||||
|
|
||||||
from ansible_collections.kubernetes.core.plugins.module_utils.ansiblemodule import (
|
from ansible_collections.kubernetes.core.plugins.module_utils.ansiblemodule import (
|
||||||
@@ -174,6 +188,14 @@ def arg_spec():
|
|||||||
"""
|
"""
|
||||||
spec = {
|
spec = {
|
||||||
"running": {"type": "bool"},
|
"running": {"type": "bool"},
|
||||||
|
"hidden_fields": {
|
||||||
|
"type": "list",
|
||||||
|
"elements": "str",
|
||||||
|
"default": [
|
||||||
|
"metadata.annotations[kubemacpool.io/transaction-timestamp]",
|
||||||
|
"metadata.managedFields",
|
||||||
|
],
|
||||||
|
},
|
||||||
}
|
}
|
||||||
spec.update(deepcopy(INFO_ARG_SPEC))
|
spec.update(deepcopy(INFO_ARG_SPEC))
|
||||||
spec.update(deepcopy(AUTH_ARG_SPEC))
|
spec.update(deepcopy(AUTH_ARG_SPEC))
|
||||||
@@ -206,4 +228,5 @@ def main():
|
|||||||
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
|
_patch_diff_objects()
|
||||||
main()
|
main()
|
||||||
|
|||||||
@@ -66,6 +66,15 @@ options:
|
|||||||
- Ignored if O(wait) is not set.
|
- Ignored if O(wait) is not set.
|
||||||
default: 120
|
default: 120
|
||||||
type: int
|
type: int
|
||||||
|
hidden_fields:
|
||||||
|
description:
|
||||||
|
- Hide fields matching this option in the result.
|
||||||
|
- An example might be O(hidden_fields=[metadata.managedFields])
|
||||||
|
or O(hidden_fields=[metadata.annotations[kubemacpool.io/transaction-timestamp]]).
|
||||||
|
type: list
|
||||||
|
elements: str
|
||||||
|
default: ['metadata.annotations[kubemacpool.io/transaction-timestamp]', metadata.managedFields]
|
||||||
|
version_added: 2.2.0
|
||||||
|
|
||||||
requirements:
|
requirements:
|
||||||
- "python >= 3.9"
|
- "python >= 3.9"
|
||||||
@@ -135,6 +144,11 @@ resources:
|
|||||||
type: dict
|
type: dict
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
# Monkey patch service.diff_objects to temporarily fix the changed logic
|
||||||
|
from ansible_collections.kubevirt.core.plugins.module_utils.diff import (
|
||||||
|
_patch_diff_objects,
|
||||||
|
)
|
||||||
|
|
||||||
from copy import deepcopy
|
from copy import deepcopy
|
||||||
|
|
||||||
from ansible_collections.kubernetes.core.plugins.module_utils.ansiblemodule import (
|
from ansible_collections.kubernetes.core.plugins.module_utils.ansiblemodule import (
|
||||||
@@ -157,7 +171,16 @@ def arg_spec():
|
|||||||
"""
|
"""
|
||||||
arg_spec defines the argument spec of this module.
|
arg_spec defines the argument spec of this module.
|
||||||
"""
|
"""
|
||||||
spec = {}
|
spec = {
|
||||||
|
"hidden_fields": {
|
||||||
|
"type": "list",
|
||||||
|
"elements": "str",
|
||||||
|
"default": [
|
||||||
|
"metadata.annotations[kubemacpool.io/transaction-timestamp]",
|
||||||
|
"metadata.managedFields",
|
||||||
|
],
|
||||||
|
},
|
||||||
|
}
|
||||||
spec.update(deepcopy(INFO_ARG_SPEC))
|
spec.update(deepcopy(INFO_ARG_SPEC))
|
||||||
spec.update(deepcopy(AUTH_ARG_SPEC))
|
spec.update(deepcopy(AUTH_ARG_SPEC))
|
||||||
|
|
||||||
@@ -184,4 +207,5 @@ def main():
|
|||||||
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
|
_patch_diff_objects()
|
||||||
main()
|
main()
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
---
|
---
|
||||||
collections:
|
collections:
|
||||||
- name: kubernetes.core
|
- name: kubernetes.core
|
||||||
version: '>=3.1.0,<6.0.0'
|
version: '>=5.2.0,<6.0.0'
|
||||||
|
|||||||
@@ -210,12 +210,26 @@ MODULE_PARAMS_DELETE = MODULE_PARAMS_DEFAULT | {
|
|||||||
"wait": True,
|
"wait": True,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
MODULE_PARAMS_HIDDEN_FIELDS = MODULE_PARAMS_DEFAULT | {
|
||||||
|
"name": "testvm",
|
||||||
|
"namespace": "default",
|
||||||
|
"running": False,
|
||||||
|
"hidden_fields": [
|
||||||
|
"metadata.annotations[kubemacpool.io/transaction-timestamp]",
|
||||||
|
"metadata.annotations[kubectl.kubernetes.io/last-applied-configuration]",
|
||||||
|
],
|
||||||
|
}
|
||||||
|
|
||||||
K8S_MODULE_PARAMS_CREATE = MODULE_PARAMS_CREATE | {
|
K8S_MODULE_PARAMS_CREATE = MODULE_PARAMS_CREATE | {
|
||||||
"generate_name": None,
|
"generate_name": None,
|
||||||
"running": None,
|
"running": None,
|
||||||
"run_strategy": None,
|
"run_strategy": None,
|
||||||
"resource_definition": VM_DEFINITION_CREATE,
|
"resource_definition": VM_DEFINITION_CREATE,
|
||||||
"wait_condition": {"type": "Ready", "status": True},
|
"wait_condition": {"type": "Ready", "status": True},
|
||||||
|
"hidden_fields": [
|
||||||
|
"metadata.annotations[kubemacpool.io/transaction-timestamp]",
|
||||||
|
"metadata.managedFields",
|
||||||
|
],
|
||||||
}
|
}
|
||||||
|
|
||||||
K8S_MODULE_PARAMS_RUNNING = MODULE_PARAMS_RUNNING | {
|
K8S_MODULE_PARAMS_RUNNING = MODULE_PARAMS_RUNNING | {
|
||||||
@@ -223,6 +237,10 @@ K8S_MODULE_PARAMS_RUNNING = MODULE_PARAMS_RUNNING | {
|
|||||||
"run_strategy": None,
|
"run_strategy": None,
|
||||||
"resource_definition": VM_DEFINITION_RUNNING,
|
"resource_definition": VM_DEFINITION_RUNNING,
|
||||||
"wait_condition": {"type": "Ready", "status": True},
|
"wait_condition": {"type": "Ready", "status": True},
|
||||||
|
"hidden_fields": [
|
||||||
|
"metadata.annotations[kubemacpool.io/transaction-timestamp]",
|
||||||
|
"metadata.managedFields",
|
||||||
|
],
|
||||||
}
|
}
|
||||||
|
|
||||||
K8S_MODULE_PARAMS_STOPPED = MODULE_PARAMS_STOPPED | {
|
K8S_MODULE_PARAMS_STOPPED = MODULE_PARAMS_STOPPED | {
|
||||||
@@ -230,6 +248,10 @@ K8S_MODULE_PARAMS_STOPPED = MODULE_PARAMS_STOPPED | {
|
|||||||
"run_strategy": None,
|
"run_strategy": None,
|
||||||
"resource_definition": VM_DEFINITION_STOPPED,
|
"resource_definition": VM_DEFINITION_STOPPED,
|
||||||
"wait_condition": {"type": "Ready", "status": False, "reason": "VMINotExists"},
|
"wait_condition": {"type": "Ready", "status": False, "reason": "VMINotExists"},
|
||||||
|
"hidden_fields": [
|
||||||
|
"metadata.annotations[kubemacpool.io/transaction-timestamp]",
|
||||||
|
"metadata.managedFields",
|
||||||
|
],
|
||||||
}
|
}
|
||||||
|
|
||||||
K8S_MODULE_PARAMS_HALTED = MODULE_PARAMS_HALTED | {
|
K8S_MODULE_PARAMS_HALTED = MODULE_PARAMS_HALTED | {
|
||||||
@@ -237,6 +259,10 @@ K8S_MODULE_PARAMS_HALTED = MODULE_PARAMS_HALTED | {
|
|||||||
"running": None,
|
"running": None,
|
||||||
"resource_definition": VM_DEFINITION_HALTED,
|
"resource_definition": VM_DEFINITION_HALTED,
|
||||||
"wait_condition": {"type": "Ready", "status": False, "reason": "VMINotExists"},
|
"wait_condition": {"type": "Ready", "status": False, "reason": "VMINotExists"},
|
||||||
|
"hidden_fields": [
|
||||||
|
"metadata.annotations[kubemacpool.io/transaction-timestamp]",
|
||||||
|
"metadata.managedFields",
|
||||||
|
],
|
||||||
}
|
}
|
||||||
|
|
||||||
K8S_MODULE_PARAMS_DELETE = MODULE_PARAMS_DELETE | {
|
K8S_MODULE_PARAMS_DELETE = MODULE_PARAMS_DELETE | {
|
||||||
@@ -245,6 +271,17 @@ K8S_MODULE_PARAMS_DELETE = MODULE_PARAMS_DELETE | {
|
|||||||
"run_strategy": None,
|
"run_strategy": None,
|
||||||
"resource_definition": VM_DEFINITION_RUNNING,
|
"resource_definition": VM_DEFINITION_RUNNING,
|
||||||
"wait_condition": {"type": "Ready", "status": True},
|
"wait_condition": {"type": "Ready", "status": True},
|
||||||
|
"hidden_fields": [
|
||||||
|
"metadata.annotations[kubemacpool.io/transaction-timestamp]",
|
||||||
|
"metadata.managedFields",
|
||||||
|
],
|
||||||
|
}
|
||||||
|
|
||||||
|
K8S_MODULE_PARAMS_HIDDEN_FIELDS = MODULE_PARAMS_HIDDEN_FIELDS | {
|
||||||
|
"generate_name": None,
|
||||||
|
"run_strategy": None,
|
||||||
|
"resource_definition": VM_DEFINITION_STOPPED,
|
||||||
|
"wait_condition": {"type": "Ready", "status": False, "reason": "VMINotExists"},
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@@ -281,6 +318,12 @@ K8S_MODULE_PARAMS_DELETE = MODULE_PARAMS_DELETE | {
|
|||||||
VM_DEFINITION_RUNNING,
|
VM_DEFINITION_RUNNING,
|
||||||
"delete",
|
"delete",
|
||||||
),
|
),
|
||||||
|
(
|
||||||
|
MODULE_PARAMS_HIDDEN_FIELDS,
|
||||||
|
K8S_MODULE_PARAMS_HIDDEN_FIELDS,
|
||||||
|
VM_DEFINITION_STOPPED,
|
||||||
|
"update",
|
||||||
|
),
|
||||||
],
|
],
|
||||||
)
|
)
|
||||||
def test_module(mocker, module_params, k8s_module_params, vm_definition, method):
|
def test_module(mocker, module_params, k8s_module_params, vm_definition, method):
|
||||||
|
|||||||
@@ -52,6 +52,10 @@ FIND_ARGS_DEFAULT = {
|
|||||||
"wait_sleep": 5,
|
"wait_sleep": 5,
|
||||||
"wait_timeout": 120,
|
"wait_timeout": 120,
|
||||||
"condition": {"type": "Ready", "status": True},
|
"condition": {"type": "Ready", "status": True},
|
||||||
|
"hidden_fields": [
|
||||||
|
"metadata.annotations[kubemacpool.io/transaction-timestamp]",
|
||||||
|
"metadata.managedFields",
|
||||||
|
],
|
||||||
}
|
}
|
||||||
|
|
||||||
FIND_ARGS_NAME_NAMESPACE = FIND_ARGS_DEFAULT | {
|
FIND_ARGS_NAME_NAMESPACE = FIND_ARGS_DEFAULT | {
|
||||||
@@ -77,6 +81,13 @@ FIND_ARGS_STOPPED = FIND_ARGS_DEFAULT | {
|
|||||||
"condition": {"type": "Ready", "status": False, "reason": "VMINotExists"},
|
"condition": {"type": "Ready", "status": False, "reason": "VMINotExists"},
|
||||||
}
|
}
|
||||||
|
|
||||||
|
FIND_ARGS_HIDDEN_FIELDS = FIND_ARGS_DEFAULT | {
|
||||||
|
"hidden_fields": [
|
||||||
|
"metadata.annotations[kubemacpool.io/transaction-timestamp]",
|
||||||
|
"metadata.annotations[kubectl.kubernetes.io/last-applied-configuration]",
|
||||||
|
],
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
@pytest.mark.parametrize(
|
@pytest.mark.parametrize(
|
||||||
"module_args,find_args",
|
"module_args,find_args",
|
||||||
@@ -87,6 +98,15 @@ FIND_ARGS_STOPPED = FIND_ARGS_DEFAULT | {
|
|||||||
({"field_selectors": "app=test"}, FIND_ARGS_FIELD_SELECTOR),
|
({"field_selectors": "app=test"}, FIND_ARGS_FIELD_SELECTOR),
|
||||||
({"wait": True, "running": True}, FIND_ARGS_RUNNING),
|
({"wait": True, "running": True}, FIND_ARGS_RUNNING),
|
||||||
({"wait": True, "running": False}, FIND_ARGS_STOPPED),
|
({"wait": True, "running": False}, FIND_ARGS_STOPPED),
|
||||||
|
(
|
||||||
|
{
|
||||||
|
"hidden_fields": [
|
||||||
|
"metadata.annotations[kubemacpool.io/transaction-timestamp]",
|
||||||
|
"metadata.annotations[kubectl.kubernetes.io/last-applied-configuration]",
|
||||||
|
]
|
||||||
|
},
|
||||||
|
FIND_ARGS_HIDDEN_FIELDS,
|
||||||
|
),
|
||||||
],
|
],
|
||||||
)
|
)
|
||||||
def test_module(mocker, module_args, find_args):
|
def test_module(mocker, module_args, find_args):
|
||||||
|
|||||||
@@ -43,6 +43,10 @@ FIND_ARGS_DEFAULT = {
|
|||||||
"wait_sleep": 5,
|
"wait_sleep": 5,
|
||||||
"wait_timeout": 120,
|
"wait_timeout": 120,
|
||||||
"condition": {"type": "Ready", "status": True},
|
"condition": {"type": "Ready", "status": True},
|
||||||
|
"hidden_fields": [
|
||||||
|
"metadata.annotations[kubemacpool.io/transaction-timestamp]",
|
||||||
|
"metadata.managedFields",
|
||||||
|
],
|
||||||
}
|
}
|
||||||
|
|
||||||
FIND_ARGS_NAME_NAMESPACE = FIND_ARGS_DEFAULT | {
|
FIND_ARGS_NAME_NAMESPACE = FIND_ARGS_DEFAULT | {
|
||||||
@@ -58,6 +62,13 @@ FIND_ARGS_FIELD_SELECTOR = FIND_ARGS_DEFAULT | {
|
|||||||
"field_selectors": ["app=test"],
|
"field_selectors": ["app=test"],
|
||||||
}
|
}
|
||||||
|
|
||||||
|
FIND_ARGS_HIDDEN_FIELDS = FIND_ARGS_DEFAULT | {
|
||||||
|
"hidden_fields": [
|
||||||
|
"metadata.annotations[kubemacpool.io/transaction-timestamp]",
|
||||||
|
"metadata.annotations[kubectl.kubernetes.io/last-applied-configuration]",
|
||||||
|
],
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
@pytest.mark.parametrize(
|
@pytest.mark.parametrize(
|
||||||
"module_args,find_args",
|
"module_args,find_args",
|
||||||
@@ -66,6 +77,15 @@ FIND_ARGS_FIELD_SELECTOR = FIND_ARGS_DEFAULT | {
|
|||||||
({"name": "testvm", "namespace": "default"}, FIND_ARGS_NAME_NAMESPACE),
|
({"name": "testvm", "namespace": "default"}, FIND_ARGS_NAME_NAMESPACE),
|
||||||
({"label_selectors": "app=test"}, FIND_ARGS_LABEL_SELECTOR),
|
({"label_selectors": "app=test"}, FIND_ARGS_LABEL_SELECTOR),
|
||||||
({"field_selectors": "app=test"}, FIND_ARGS_FIELD_SELECTOR),
|
({"field_selectors": "app=test"}, FIND_ARGS_FIELD_SELECTOR),
|
||||||
|
(
|
||||||
|
{
|
||||||
|
"hidden_fields": [
|
||||||
|
"metadata.annotations[kubemacpool.io/transaction-timestamp]",
|
||||||
|
"metadata.annotations[kubectl.kubernetes.io/last-applied-configuration]",
|
||||||
|
]
|
||||||
|
},
|
||||||
|
FIND_ARGS_HIDDEN_FIELDS,
|
||||||
|
),
|
||||||
],
|
],
|
||||||
)
|
)
|
||||||
def test_module(mocker, module_args, find_args):
|
def test_module(mocker, module_args, find_args):
|
||||||
|
|||||||
Reference in New Issue
Block a user