-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
`eksctl` now allows you to manage any number of nodegroups other than the initial nodegroup. Changes: - `eksctl create nodegroup --cluster CLUSTER_NAME [NODEGROUP_NAME]` is added Creates an additional nodegroup. The nodegroup name is randomly generated when omitted. - `eksctl get nodegroup --cluster CLUSTER_NAME` is added Lists all the nodegroups including the initial one and the additional ones. - `eksctl delete nodegroup --cluster CLUSTER_NAME NODEGROUP_NAME` is added Deletes a nodegroup by name. - `eksctl create cluster` has been changed to accept an optional `--nodegroup NODEGROUP_NAME` that specifies the nodegroup name. - `eksctl delete cluster CLUSTER_NAME` has been changed to recursively delete all the nodegroups including additional ones. - `eksctl scale nodegroup --cluster CLUSTER_NAME NODEGROUP_NAME` has been changed to accept the target nodegroup name as the second argument Checklist: - [x] Code compiles correctly (i.e `make build`) - [x] Added tests that cover your change (if possible) - [x] All tests passing (i.e. `make test`) - Added/modified documentation as required (such as the README) - Added yourself to the `humans.txt` file Acknowledgements: This is a successor of #281 and #332. All the original credits goes to Richard Case <[email protected]> who has started #281. Thanks a lot, Richard! Signed-off-by: Yusuke Kuoka <[email protected]>
- Loading branch information
Showing
45 changed files
with
1,510 additions
and
138 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.