-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added Bottlerocket AMI support and bug fixes (#55)
New releases and fixes:- - Added bottlerocket AMI support for both arm and amd based architectures. - Added an option to pass launch template name while creating custom managed AWS node group. - Added tags on AWS resources to track cost.
- Loading branch information
1 parent
ceb3295
commit 9f7d622
Showing
8 changed files
with
140 additions
and
36 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
26 changes: 26 additions & 0 deletions
26
modules/managed-nodegroup/templates/bootstrap-bottlerocket.toml.tpl
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
[settings.kubernetes] | ||
cluster-name = "${cluster_name}" | ||
api-server = "${cluster_endpoint}" | ||
cluster-certificate = "${cluster_ca_data}" | ||
max-pods = ${managed_ng_pod_capacity} | ||
|
||
image-gc-high-threshold-percent = ${image_high_threshold_percent} | ||
image-gc-low-threshold-percent = ${image_low_threshold_percent} | ||
event-qps = ${eventRecordQPS} | ||
|
||
|
||
# Enable kernel lockdown in "integrity" mode. | ||
# This prevents modifications to the running kernel, even by privileged users. | ||
[settings.kernel] | ||
lockdown = "integrity" | ||
|
||
|
||
[settings.host-containers.admin] | ||
enabled = ${admin_container_enabled} | ||
|
||
|
||
# The control host container provides out-of-band access via SSM. | ||
# It is enabled by default, and can be disabled if you do not expect to use SSM. | ||
# This could leave you with no way to access the API and change settings on an existing node! | ||
[settings.host-containers.control] | ||
enabled = ${enable_control_container} |
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