From a3ef8c0a1612e7ea2f5d4dd06d57d9f3a26717b7 Mon Sep 17 00:00:00 2001 From: Gabriela Cervantes Date: Thu, 24 Oct 2024 16:33:14 +0000 Subject: [PATCH] tests: Increase time to run stressng k8s tests This PR increase the time to run the stressng k8s tests for the CoCo stability CI. Signed-off-by: Gabriela Cervantes --- tests/stability/kubernetes_stressng.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/stability/kubernetes_stressng.sh b/tests/stability/kubernetes_stressng.sh index 34233b13e..17e295335 100755 --- a/tests/stability/kubernetes_stressng.sh +++ b/tests/stability/kubernetes_stressng.sh @@ -20,15 +20,15 @@ function main() { kubectl wait --for=condition=Ready --timeout=30s pod "${pod_name}" echo "Running stress matrix test" - cmd1="stress-ng --matrix 0 -t 60m" + cmd1="stress-ng --matrix 0 -t 90m" kubectl exec "${pod_name}" -- /bin/bash -c "${cmd1}" echo "Running stress cpu test" - cmd2="stress-ng --cpu 0 --vm 2 -t 60m" + cmd2="stress-ng --cpu 0 --vm 2 -t 90m" kubectl exec "${pod_name}" -- /bin/bash -c "${cmd2}" echo "Running stress io test" - cmd3="stress-ng --io 2 -t 60m" + cmd3="stress-ng --io 2 -t 90m" kubectl exec "${pod_name}" -- /bin/bash -c "${cmd3}" kubectl delete -f "${SCRIPT_PATH}/runtimeclass_workloads/stress-test.yaml"