From 956ee6a2e76a31f2187d8e11ac2fbbd2c77bdb03 Mon Sep 17 00:00:00 2001 From: Parth Yadav Date: Wed, 11 Aug 2021 02:14:38 +0530 Subject: Adds Kuberef Validator This patch adds Kuberef Validator and implements following checks for Kuberef Validator: * pod_health_check Signed-off-by: Parth Yadav Change-Id: Ief2a75f5ea4a4e39a8c07002c29e2d732ca00151 --- .../sdvstate/internal/checks/pod_health_check.py | 97 ++++++++++++++++++++++ 1 file changed, 97 insertions(+) create mode 100644 sdv/docker/sdvstate/internal/checks/pod_health_check.py (limited to 'sdv/docker/sdvstate/internal/checks/pod_health_check.py') diff --git a/sdv/docker/sdvstate/internal/checks/pod_health_check.py b/sdv/docker/sdvstate/internal/checks/pod_health_check.py new file mode 100644 index 0000000..bbfaa81 --- /dev/null +++ b/sdv/docker/sdvstate/internal/checks/pod_health_check.py @@ -0,0 +1,97 @@ +# Copyright 2020 University Of Delhi. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + + +""" +Pod Health Checks +""" + + +from tools.result_api import rfile + + +def pod_health_check(logger, kube_api, namespace_list_to_check): + """ + Check health of all pods and get logs of failed pods + """ + + result = {'category': 'platform', + 'case_name': 'pod_health_check', + 'criteria': 'pass', + 'details': [] + } + + for namespace in namespace_list_to_check: + pod_list = kube_api.list_namespaced_pod(namespace) + for pod in pod_list.items: + pod_stats = pod_status(logger, pod) + if pod_stats['criteria'] == 'fail': + pod_stats['logs'] = get_logs(kube_api, pod) + result['criteria'] = 'fail' + result['details'].append(pod_stats) + + return result + + + +def pod_status(logger, pod): + """ + Check health of a pod and returns it's status as result + """ + result = {'criteria': 'pass', + 'name': pod.metadata.name, + 'namespace': pod.metadata.namespace, + 'node': pod.spec.node_name} + + if pod.status.container_statuses is None: + result['criteria'] = 'fail' + result['pod_details'] = rfile(str(pod)) + else: + for container in pod.status.container_statuses: + if container.state.running is not None: + status = 'Running' + if container.state.terminated is not None: + status = container.state.terminated.reason + if container.state.waiting is not None: + status = container.state.waiting.reason + + if status not in ('Running', 'Completed'): + result['criteria'] = 'fail' + result['pod_details'] = rfile(str(pod)) + + info = f'[Health: {result["criteria"]}] Name: {result["name"]}, ' + info = info + f'Namespace: {result["namespace"]}, Node: {result["node"]}' + + logger.debug(info) + return result + + +def get_logs(kube_api, pod): + """ + Collects logs of all containers in ``pod`` + """ + logs = [] + if pod.status.container_statuses is not None: + for container in pod.status.container_statuses: + con = {'container': container.name} + if container.state.waiting is not None and \ + container.state.waiting.reason == 'PodInitializing': + log = 'Not found, status: waiting, reason: PodInitializing' + else: + log = kube_api.read_namespaced_pod_log(name=pod.metadata.name, + namespace=pod.metadata.namespace, + container=container.name) + con['log'] = rfile(log) + logs.append(con) + return logs -- cgit 1.2.3-korg