From 2900e88d1a01c1b1a61e3318d941078e20d62587 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Wei=C3=9Fe?= Date: Mon, 2 Dec 2024 09:15:49 +0100 Subject: [PATCH] ci: ensure autoscaling test actuallly waits for all Pods to be ready MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Daniel Weiße --- .github/actions/e2e_autoscaling/action.yml | 25 +++++++++++++++++++++- 1 file changed, 24 insertions(+), 1 deletion(-) diff --git a/.github/actions/e2e_autoscaling/action.yml b/.github/actions/e2e_autoscaling/action.yml index bf787100b9..96c9907ed3 100644 --- a/.github/actions/e2e_autoscaling/action.yml +++ b/.github/actions/e2e_autoscaling/action.yml @@ -82,7 +82,30 @@ runs: KUBECONFIG: ${{ inputs.kubeconfig }} run: | worker_count=${{ steps.worker_count.outputs.worker_count }} - kubectl create -n default deployment nginx --image=nginx --replicas $(( 110 * (worker_count + 1) + 55 )) + + cat <