k8s_facts should not throw exceptions when not found (#44429)
Handle the case where a resource is not found by catching the exception and returning an empty result set.
This commit is contained in:
parent
83fd82ca7e
commit
b8907ff09e
1 changed files with 8 additions and 4 deletions
|
@ -205,10 +205,14 @@ class K8sAnsibleMixin(object):
|
|||
|
||||
def kubernetes_facts(self, kind, api_version, name=None, namespace=None, label_selectors=None, field_selectors=None):
|
||||
resource = self.find_resource(kind, api_version)
|
||||
result = resource.get(name=name,
|
||||
namespace=namespace,
|
||||
label_selector=','.join(label_selectors),
|
||||
field_selector=','.join(field_selectors)).to_dict()
|
||||
try:
|
||||
result = resource.get(name=name,
|
||||
namespace=namespace,
|
||||
label_selector=','.join(label_selectors),
|
||||
field_selector=','.join(field_selectors)).to_dict()
|
||||
except openshift.dynamic.exceptions.NotFoundError:
|
||||
return dict(items=[])
|
||||
|
||||
if 'items' in result:
|
||||
return result
|
||||
else:
|
||||
|
|
Loading…
Reference in a new issue