-
Notifications
You must be signed in to change notification settings - Fork 1.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Configure node volume size #229
Conversation
3088098
to
af7bb0e
Compare
af7bb0e
to
32c81b9
Compare
Actually, noticed that encryption doesn't work here, since the ebs snapshots associated with the base AMIs aren't encrypted. Rolling back to just configuring volume size. |
NodeAMI string | ||
NodeType string | ||
Nodes int | ||
NodeVolumeSize int |
This comment was marked as abuse.
This comment was marked as abuse.
Sorry, something went wrong.
cmd/eksctl/create.go
Outdated
@@ -66,6 +66,7 @@ func createClusterCmd() *cobra.Command { | |||
|
|||
fs.StringVarP(&cfg.Region, "region", "r", api.DEFAULT_EKS_REGION, "AWS region") | |||
fs.StringVarP(&cfg.Profile, "profile", "p", "", "AWS credentials profile to use (overrides the AWS_PROFILE environment variable)") | |||
fs.IntVarP(&cfg.NodeVolumeSize, "node-volume-size", "", 0, "Node volume size (in GB)") |
This comment was marked as abuse.
This comment was marked as abuse.
Sorry, something went wrong.
This comment was marked as abuse.
This comment was marked as abuse.
Sorry, something went wrong.
This comment was marked as abuse.
This comment was marked as abuse.
Sorry, something went wrong.
README.md
Outdated
To configure node volume size, use the `--node-volume-size` flag. | ||
|
||
``` | ||
eksctl create cluster --node-volume-size 50 |
This comment was marked as abuse.
This comment was marked as abuse.
Sorry, something went wrong.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
few nits, LGTM overall
Thanks, updated. |
@errordeveloper: anything else I should update here? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This looks good. Would you be able to rebase on master?
@jmcarp thanks, this is great! |
fix a bug when capacity range is nil
[Fixes #214]
We should probably look up the root device name from the AMI instead of hard-coding
/dev/xvda
. Happy to add that here if that makes sense.Description
Please explain the changes you made here.
Checklist
make build
)make test
)humans.txt
file