From b9ed3bed6d354e8ad1b978a4daa504008fda69b8 Mon Sep 17 00:00:00 2001 From: Harish K Date: Thu, 30 May 2024 09:22:23 -0600 Subject: [PATCH] remove wait time as we don't depend on VAS (#462) --- tests/tasks/setup/eks/awscli-mng.yaml | 6 ------ 1 file changed, 6 deletions(-) diff --git a/tests/tasks/setup/eks/awscli-mng.yaml b/tests/tasks/setup/eks/awscli-mng.yaml index a4dad101..7520ac45 100644 --- a/tests/tasks/setup/eks/awscli-mng.yaml +++ b/tests/tasks/setup/eks/awscli-mng.yaml @@ -48,12 +48,6 @@ spec: image: alpine/k8s:1.23.7 script: | ENDPOINT_FLAG="" - # Todo: remove this workaround for nodes less than 5k when our scaling system can scale up instantly - if [ $(params.desired-nodes) -lt 5001 ] && [ $(params.desired-nodes) -gt 500 ] - then - echo "sleeping for 15 mins to workaround VAS cool off time" - sleep 900 - fi NODE_ROLE_NAME=$(params.host-cluster-node-role-name) NODE_ROLE_ARN=$(aws iam get-role --role-name $NODE_ROLE_NAME --query 'Role.[Arn]' --output text)