From 5a52fe1a756a0d5c805d25546a2e1d64f881d6b0 Mon Sep 17 00:00:00 2001 From: Gabriela Cervantes Date: Mon, 9 Sep 2024 16:13:40 +0000 Subject: [PATCH] tests: Increase timeout to wait for soak stability test deployment This PR increases the timeout to wait that the deployment for the soak stability test is ready in order to avoid random failures saying that the deployment is not ready yet. Signed-off-by: Gabriela Cervantes --- tests/stability/kubernetes_soak_test.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/stability/kubernetes_soak_test.sh b/tests/stability/kubernetes_soak_test.sh index bf15327c9..1b871d5df 100755 --- a/tests/stability/kubernetes_soak_test.sh +++ b/tests/stability/kubernetes_soak_test.sh @@ -27,7 +27,7 @@ function go() { function init() { kubectl create -f "${SCRIPT_PATH}/runtimeclass_workloads/pod-deployment.yaml" - kubectl wait --for=condition=Available --timeout=30s deployment/"${deployment_name}" + kubectl wait --for=condition=Available --timeout=100s deployment/"${deployment_name}" } function main() {