You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
root_block_device_name = data.aws_ami.eks_worker.root_device_name # Root device name for workers. If non is provided, will assume default AMI was used.
The text was updated successfully, but these errors were encountered:
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.
I'm going to lock this issue because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active issues. If you have found a problem that seems similar to this, please open a new issue and complete the issue template so we can capture all the details necessary to investigate further.
I have issues
Root EBS volume of self-managed Windows node groups does not change when setting "root_volume_size".
I'm submitting a...
What is the current behavior?
When adding a "root_volume_size" to node group configuration, a new EBS volume is attached to EC2 instance alongside with root volume.
If this is a bug, how to reproduce? Please include a code sample if relevant.
What's the expected behavior?
Modifying this parameter should change the root volume size instead.
Environment details
Any other relevant info
The EBS volume is mounted under
/dev/xvda
, like in Linux EKS AMI's, instead of/dev/sda1
like it should. Changing configuration tofixes the issue. I believe the problem is in
terraform-aws-eks/workers_launch_template.tf
Line 368 in 65777d0
This always gets a
root_block_device_name
from Linux AMI, as specified interraform-aws-eks/local.tf
Line 74 in 65777d0
The text was updated successfully, but these errors were encountered: