Skip to content
This repository was archived by the owner on May 3, 2023. It is now read-only.

Commit d5d4d1c

Browse files
committed
Tweak timings
1 parent ec1c1d9 commit d5d4d1c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

eks_node_rollout/eks_node_rollout.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -274,8 +274,8 @@ def rollout_nodes(cluster_name, dry_run, debug):
274274
latest_instance = get_latest_instance(asg_client=asg_client, ec2_client=ec2_client, asg_name=asg_name, add_time=add_time, dry_run=dry_run)
275275
latest_node_name = latest_instance["PrivateDnsName"]
276276
logging.info(f'Waiting for node {latest_node_name} to be "Ready"...')
277-
logging.info(f'Sleeping 25s before polling for node to be "Ready".')
278-
time.sleep(35) # instance will never be ready before this, don't bother polling yet
277+
logging.info(f'Sleeping 40s before polling for node to be "Ready".')
278+
time.sleep(40) # instance will never be ready before this, don't bother polling yet
279279
wait_for_ready_node(latest_node_name)
280280
logging.info(f'Node {latest_node_name} is now "Ready".')
281281
after_instance_count = get_num_of_instances(asg_client=asg_client, ec2_client=ec2_client, asg_name=asg_name)

0 commit comments

Comments
 (0)