From f1919c1e063dc614104fa71d670ea1f9a28420cd Mon Sep 17 00:00:00 2001 From: Alexander Schwartz Date: Fri, 17 May 2024 09:24:56 +0200 Subject: [PATCH] Also adding the parameter to the creation of the machine pool Signed-off-by: Alexander Schwartz --- provision/aws/rosa_create_cluster.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/provision/aws/rosa_create_cluster.sh b/provision/aws/rosa_create_cluster.sh index 09e5afa15..eca19efbd 100755 --- a/provision/aws/rosa_create_cluster.sh +++ b/provision/aws/rosa_create_cluster.sh @@ -76,7 +76,7 @@ fi SCALING_MACHINE_POOL=$(rosa list machinepools -c "${CLUSTER_NAME}" -o json | jq -r '.[] | select(.id == "scaling") | .id') if [[ "${SCALING_MACHINE_POOL}" != "scaling" ]]; then - rosa create machinepool -c "${CLUSTER_NAME}" --instance-type m5.4xlarge --max-replicas 10 --min-replicas 1 --name scaling --enable-autoscaling + rosa create machinepool -c "${CLUSTER_NAME}" --instance-type m5.4xlarge --max-replicas 10 --min-replicas 1 --name scaling --enable-autoscaling --autorepair fi cd ${SCRIPT_DIR}