From ea4170ee1b46ad176e28c39609252ab21e6f8dde Mon Sep 17 00:00:00 2001 From: Yashwanth Kumar Thangallapally Date: Fri, 20 Oct 2023 15:29:51 -0400 Subject: [PATCH 1/2] fix: change min node count to 4 In the description above it was mentioned that we would like to change the minimum node count from 3 to 4. However, the command still has `--nodes-min` as 3. --- .../docs/fundamentals/managed-node-groups/adding-nodes/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 a06a1b6b7..0cbd368ad 100644 --- a/website/docs/fundamentals/managed-node-groups/adding-nodes/index.md +++ b/website/docs/fundamentals/managed-node-groups/adding-nodes/index.md @@ -14,7 +14,7 @@ We'll scale the nodegroup in `eks-workshop` by changing the node count from `3` ```bash $ eksctl scale nodegroup --name $EKS_DEFAULT_MNG_NAME --cluster $EKS_CLUSTER_NAME \ - --nodes 4 --nodes-min 3 --nodes-max 6 + --nodes 4 --nodes-min 4 --nodes-max 6 ``` :::tip From a3c49de33c0e8041b60bdd276da8e7a9bc97a426 Mon Sep 17 00:00:00 2001 From: Yashwanth Kumar Thangallapally Date: Wed, 25 Oct 2023 23:52:59 -0400 Subject: [PATCH 2/2] fix: remove word minimum size to match description with the command --- .../fundamentals/managed-node-groups/adding-nodes/index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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