mirror of
https://github.com/optim-enterprises-bv/openstack-helm-images.git
synced 2025-10-29 17:32:25 +00:00
Merge "Update define-nagios-hosts.py error handling"
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