Merge pull request #54 from ansible-collections/49-missing-pr-60726

Add exception handling when retrieving k8s client
This commit is contained in:
Jeff Geerling
2020-03-12 14:07:23 -05:00
committed by GitHub

View File

@@ -36,6 +36,7 @@ from ansible.module_utils.common.dict_transformations import dict_merge
try:
import yaml
from openshift.dynamic.exceptions import DynamicApiError, NotFoundError, ConflictError, ForbiddenError, KubernetesValidateMissing
import urllib3
except ImportError:
# Exceptions handled in common
pass
@@ -169,7 +170,11 @@ class KubernetesRawModule(KubernetesAnsibleModule):
def execute_module(self):
changed = False
results = []
self.client = self.get_api_client()
try:
self.client = self.get_api_client()
# Hopefully the kubernetes client will provide its own exception class one day
except (urllib3.exceptions.RequestError) as e:
self.fail_json(msg="Couldn't connect to Kubernetes: %s" % str(e))
flattened_definitions = []
for definition in self.resource_definitions: