-
-
Notifications
You must be signed in to change notification settings - Fork 4.1k
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
Support bottlerocket bootstrapping for node groups #1695
Conversation
Doesn't bottlerocket ami ships with 2 ebs volumes? I think you will need to add another block_device_mappings {
device_name = "/dev/xvdb"
ebs {
volume_size = lookup(each.value, "disk_size", null)
volume_type = lookup(each.value, "disk_type", null)
iops = lookup(each.value, "disk_iops", null)
throughput = lookup(each.value, "disk_throughput", null)
encrypted = lookup(each.value, "disk_encrypted", null)
kms_key_id = lookup(each.value, "disk_kms_key_id", null)
delete_on_termination = true
}
} Updated Indeed there are two volumes required for bottlerocket ami. More info - bottlerocket-os/bottlerocket#1203 |
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.
Need to address issue with 2 volumes. See my comment above.
To simplify logic here, we can only care about |
Nice finding @hi-artem will address this topic asap. |
Hi @hi-artem just added
This sould do the work |
Hi @johndietz just did some changes, the PR should be now good to go |
@ulm0 AWS provider must be bumped to https://github.com/hashicorp/terraform-provider-aws/releases/tag/v3.64.0 |
This issue has been resolved in version 18.0.0 🎉 |
I'm going to lock this pull request 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 related to this change, please open a new issue and complete the issue template so we can capture all the details necessary to investigate further. |
PR o'clock
Description
Fixes #1694
Allow bootstrap bottlerocket nodes.
Checklist