diff --git a/website/docs/fundamentals/managed-node-groups/adding-nodes/index.md b/website/docs/fundamentals/managed-node-groups/adding-nodes/index.md index 0cbd368ad..54a1823be 100644 --- a/website/docs/fundamentals/managed-node-groups/adding-nodes/index.md +++ b/website/docs/fundamentals/managed-node-groups/adding-nodes/index.md @@ -10,11 +10,11 @@ First let's retrieve the current nodegroup scaling configuration and look at **m $ eksctl get nodegroup --name $EKS_DEFAULT_MNG_NAME --cluster $EKS_CLUSTER_NAME ``` -We'll scale the nodegroup in `eks-workshop` by changing the node count from `3` to `4` for **minimum size** and **desired capacity** using below command: +We'll scale the nodegroup in `eks-workshop` by changing the node count from `3` to `4` for **desired capacity** using below command: ```bash $ eksctl scale nodegroup --name $EKS_DEFAULT_MNG_NAME --cluster $EKS_CLUSTER_NAME \ - --nodes 4 --nodes-min 4 --nodes-max 6 + --nodes 4 --nodes-min 3 --nodes-max 6 ``` :::tip