Skip to content

Commit 7b8f30d

Browse files
authored
More checks in process_kubelet_rules test resource matching. (#439)
1 parent 31d9fa1 commit 7b8f30d

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

tests/product/tests/test_process_kubelet_rules.py

+7-5
Original file line numberDiff line numberDiff line change
@@ -47,13 +47,15 @@ def test_process_kubelet(elastic_client,
4747
time.sleep(60)
4848

4949
def identifier(eval_resource):
50-
# Needs to be done because EKS findings are showing up in vanilla K8S tests,
51-
# leading to unexpected findings structure.
52-
# See: https://github.com/elastic/security-team/issues/5107
53-
if 'external_data' not in eval_resource.keys():
50+
try:
51+
kubelet_config = eval_resource.external_data.config
52+
except AttributeError:
5453
return False
5554

56-
return config_contains_arguments(eval_resource.external_data.config, dictionary)
55+
if kubelet_config is None:
56+
return False
57+
58+
return config_contains_arguments(kubelet_config, dictionary)
5759

5860
evaluation = get_ES_evaluation(
5961
elastic_client=elastic_client,

0 commit comments

Comments
 (0)