mirror of
https://github.com/krkn-chaos/krkn.git
synced 2026-04-15 06:57:28 +00:00
* changed all the references to krkn_lib_kubernetes to the new krkn_lib changed all the references * added krkn-lib pointer in documentation
89 lines
3.3 KiB
Python
89 lines
3.3 KiB
Python
import time
|
|
import random
|
|
import logging
|
|
import paramiko
|
|
import kraken.invoke.command as runcommand
|
|
from krkn_lib.k8s import KrknKubernetes
|
|
node_general = False
|
|
|
|
|
|
# Pick a random node with specified label selector
|
|
def get_node(node_name, label_selector, instance_kill_count, kubecli: KrknKubernetes):
|
|
if node_name in kubecli.list_killable_nodes():
|
|
return [node_name]
|
|
elif node_name:
|
|
logging.info("Node with provided node_name does not exist or the node might " "be in NotReady state.")
|
|
nodes = kubecli.list_killable_nodes(label_selector)
|
|
if not nodes:
|
|
raise Exception("Ready nodes with the provided label selector do not exist")
|
|
logging.info("Ready nodes with the label selector %s: %s" % (label_selector, nodes))
|
|
number_of_nodes = len(nodes)
|
|
if instance_kill_count == number_of_nodes:
|
|
return nodes
|
|
nodes_to_return = []
|
|
for i in range(instance_kill_count):
|
|
node_to_add = nodes[random.randint(0, len(nodes) - 1)]
|
|
nodes_to_return.append(node_to_add)
|
|
nodes.remove(node_to_add)
|
|
return nodes_to_return
|
|
|
|
|
|
# krkn_lib
|
|
# Wait until the node status becomes Ready
|
|
def wait_for_ready_status(node, timeout, kubecli: KrknKubernetes):
|
|
resource_version = kubecli.get_node_resource_version(node)
|
|
kubecli.watch_node_status(node, "True", timeout, resource_version)
|
|
|
|
# krkn_lib
|
|
# Wait until the node status becomes Not Ready
|
|
def wait_for_not_ready_status(node, timeout, kubecli: KrknKubernetes):
|
|
resource_version = kubecli.get_node_resource_version(node)
|
|
kubecli.watch_node_status(node, "False", timeout, resource_version)
|
|
|
|
# krkn_lib
|
|
# Wait until the node status becomes Unknown
|
|
def wait_for_unknown_status(node, timeout, kubecli: KrknKubernetes):
|
|
resource_version = kubecli.get_node_resource_version(node)
|
|
kubecli.watch_node_status(node, "Unknown", timeout, resource_version)
|
|
|
|
|
|
# Get the ip of the cluster node
|
|
def get_node_ip(node):
|
|
return runcommand.invoke(
|
|
"kubectl get node %s -o " "jsonpath='{.status.addresses[?(@.type==\"InternalIP\")].address}'" % (node)
|
|
)
|
|
|
|
|
|
def check_service_status(node, service, ssh_private_key, timeout):
|
|
ssh = paramiko.SSHClient()
|
|
ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy())
|
|
i = 0
|
|
sleeper = 1
|
|
while i <= timeout:
|
|
try:
|
|
time.sleep(sleeper)
|
|
i += sleeper
|
|
logging.info("Trying to ssh to instance: %s" % (node))
|
|
connection = ssh.connect(
|
|
node,
|
|
username="root",
|
|
key_filename=ssh_private_key,
|
|
timeout=800,
|
|
banner_timeout=400,
|
|
)
|
|
if connection is None:
|
|
break
|
|
except Exception as e:
|
|
logging.error("Failed to ssh to instance: %s within the timeout duration of %s: %s" % (node, timeout, e))
|
|
|
|
for service_name in service:
|
|
logging.info("Checking status of Service: %s" % (service_name))
|
|
stdin, stdout, stderr = ssh.exec_command(
|
|
"systemctl status %s | grep '^ Active' " "| awk '{print $2}'" % (service_name)
|
|
)
|
|
service_status = stdout.readlines()[0]
|
|
logging.info("Status of service %s is %s \n" % (service_name, service_status.strip()))
|
|
if service_status.strip() != "active":
|
|
logging.error("Service %s is in %s state" % (service_name, service_status.strip()))
|
|
ssh.close()
|