Quick question about EKS NodeGroups on AWS: each n...
# general
o
Quick question about EKS NodeGroups on AWS: each node by default comes with 2 100Gb EBS drives attached - how do I control that? I found an option for the root volume size, but I don’t see any parameters related to the attached storage. Thanks for any help!
I’m using
@pulumi/eks
, just fyi
g
@orange-byte-86458 what IDE are you using? It should show the inputs (optional and required) one of them is
diskSize
https://www.pulumi.com/docs/reference/pkg/aws/eks/nodegroup/#disksize_nodejs
o
Ahh.. didn’t notice it.. It’s Vim, maybe that’s why 🙂 Thank you so much, @great-sunset-355 Maybe a weird follow-up question, but: is there a way to tell it not to attach any EBS besides the root one at all?
g
Typically terraform modules have very poor documentation I'd recommend consulting respective API docs https://docs.aws.amazon.com/eks/latest/APIReference/API_CreateNodegroup.html#AmazonEKS-CreateNodegroup-request-diskSize
🙌 1