diff --git a/manager/install.sh b/manager/install.sh index 614796ad0b..215baa6377 100755 --- a/manager/install.sh +++ b/manager/install.sh @@ -295,16 +295,16 @@ function resize_nodegroup() { fi if [ "$existing_min" != "$updating_min" ] && [ "$existing_max" != "$updating_max" ]; then - echo "○ nodegroup $config_ng: updating min instances to $updating_min and max instances to $updating_max " - eksctl scale nodegroup --cluster=$CORTEX_CLUSTER_NAME --region=$CORTEX_REGION $stack_ng --nodes $desired --nodes-min $updating_min --nodes-max $updating_max + echo "○ nodegroup $config_ng: updating min instances to $updating_min and max instances to $updating_max" + eksctl scale nodegroup --cluster=$CORTEX_CLUSTER_NAME --region=$CORTEX_REGION $stack_ng --nodes $desired --nodes-min $updating_min --nodes-max $updating_max --timeout "60m" echo elif [ "$existing_min" != "$updating_min" ]; then - echo "○ nodegroup $config_ng: updating min instances to $updating_min " - eksctl scale nodegroup --cluster=$CORTEX_CLUSTER_NAME --region=$CORTEX_REGION $stack_ng --nodes $desired --nodes-min $updating_min + echo "○ nodegroup $config_ng: updating min instances to $updating_min" + eksctl scale nodegroup --cluster=$CORTEX_CLUSTER_NAME --region=$CORTEX_REGION $stack_ng --nodes $desired --nodes-min $updating_min --timeout "60m" echo elif [ "$existing_max" != "$updating_max" ]; then - echo "○ nodegroup $config_ng: updating max instances to $updating_max " - eksctl scale nodegroup --cluster=$CORTEX_CLUSTER_NAME --region=$CORTEX_REGION $stack_ng --nodes $desired --nodes-max $updating_max + echo "○ nodegroup $config_ng: updating max instances to $updating_max" + eksctl scale nodegroup --cluster=$CORTEX_CLUSTER_NAME --region=$CORTEX_REGION $stack_ng --nodes $desired --nodes-max $updating_max --timeout "60m" echo fi