Skip to content

Commit

Permalink
Merge pull request #2 from yash555kumar/fix-add-nodes-documentation
Browse files Browse the repository at this point in the history
fix: remove word minimum size to match description with the command
  • Loading branch information
yash555kumar authored Oct 26, 2023
2 parents f0ce24a + a3c49de commit 848ec7d
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 848ec7d

Please sign in to comment.