We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8081c61 commit 87bd90bCopy full SHA for 87bd90b
tests/tasks/setup/eks/awscli-mng.yaml
@@ -48,6 +48,12 @@ spec:
48
image: alpine/k8s:1.23.7
49
script: |
50
ENDPOINT_FLAG=""
51
+ # Todo: remove this workaround for nodes less than 5k when our scaling system can scale up instantly
52
+ if [ $(params.desired-nodes) -lt 5001 ] && [ $(params.desired-nodes) -gt 500 ]
53
+ then
54
+ echo "sleeping for 15 mins to workaround VAS cool off time"
55
+ sleep 900
56
+ fi
57
58
NODE_ROLE_NAME=$(params.host-cluster-node-role-name)
59
NODE_ROLE_ARN=$(aws iam get-role --role-name $NODE_ROLE_NAME --query 'Role.[Arn]' --output text)
0 commit comments