mirror of
https://github.com/optim-enterprises-bv/openstack-helm-images.git
synced 2025-11-02 03:07:50 +00:00
Update define-nagios-hosts.py error handling
Currently if list_nodes fails in the define-nagios-hosts.py script, the entire script will fail with some unknown error. This change updates the script to better catch and report any exceptions that happen. Change-Id: I0e33f47af8ad8f69f2f1e4a5b377d0e31d0c0819
This commit is contained in:
@@ -98,8 +98,9 @@ def get_kubernetes_node_list():
|
||||
kube_api = kubernetes.client.CoreV1Api()
|
||||
try:
|
||||
node_list = kube_api.list_node(pretty='false', limit=100, timeout_seconds=60)
|
||||
except ApiException as e:
|
||||
except Exception as e:
|
||||
print("Exception when calling CoreV1Api->list_node: %s\n" % e)
|
||||
sys.exit(NAGIOS_CRITICAL)
|
||||
return node_list.items
|
||||
|
||||
def update_config_file(object_file_loc):
|
||||
|
||||
Reference in New Issue
Block a user