Skip to content

Commit 1be9b48

Browse files
HusnaHarizcopelco
andcommitted
update changelog
Co-authored-by: Colin Copeland <[email protected]>
1 parent 089698a commit 1be9b48

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

CHANGELOG.rst

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,24 +8,30 @@ Change Log
88

99
* EBS volume type for worker nodes has been changed from ``gp2`` to ``gp3``. This will result in node replacement. Workload migration should still be managed by AWS.
1010

11-
**What's new in 2.4.0:**
11+
**What's new in 2.4.0 (#119):**
1212

1313
* **Custom AMI Support**:
14+
1415
* Added support for conditionally specifying custom AMIs for EKS node groups.
1516
* New parameters:
17+
1618
- ``CustomAMIImageType``: Corresponding image type (e.g., ``AL2023_x86_64_STANDARD``, ``AL2_x86_64``).
1719
- ``CustomEKSAMI``: AMI ID to use for worker nodes. If ``CustomAMIImageType`` is set, one isn't required to set ``CustomEKSAMI``.
20+
1821
* Conditional logic ensures that these settings are only applied when explicitly provided.
1922

2023
* **Cluster Version Parameterization**:
24+
2125
* Introduced ``EksClusterVersion`` parameter to allow template users to control the Kubernetes version.
2226
* If this parameter is not set, AWS will default to the version already in place.
2327

2428
* **Launch Template Enhancements**:
29+
2530
* Node group now uses a versioned launch template reference. This will support inplace changes rather than entire nodegroup replacement where possible.
2631
* Custom AMI ID is injected into the launch template conditionally, based on user input.
2732

2833
* **EBS Improvements**:
34+
2935
* Changed block storage type from ``gp2`` to ``gp3`` in the launch template for better performance and cost optimization.
3036

3137

@@ -258,6 +264,8 @@ Backwards-incompatible changes:
258264
* Initial public release
259265

260266

267+
.. _2.4.0: https://aws-web-stacks.s3.amazonaws.com/index.html?prefix=2.4.0/
268+
.. _2.3.0: https://aws-web-stacks.s3.amazonaws.com/index.html?prefix=2.3.0/
261269
.. _2.2.0: https://aws-web-stacks.s3.amazonaws.com/index.html?prefix=2.2.0/
262270
.. _2.1.2: https://aws-web-stacks.s3.amazonaws.com/index.html?prefix=2.1.2/
263271
.. _2.1.1: https://aws-web-stacks.s3.amazonaws.com/index.html?prefix=2.1.1/

stack/eks.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@
108108
custom_eks_ami = Ref(template.add_parameter(
109109
Parameter(
110110
"CustomEKSAMI",
111-
Description="Custom AMI ID for EKS node group. Preferably do not set as AWS will select best optimized image if CustomAMIImageType is set.",
111+
Description="Custom AMI ID for the EKS node group. It is recommended not to set this value, as AWS will automatically select the most optimized image when CustomAMIImageType is specified.",
112112
Type="String",
113113
Default="",
114114
),

0 commit comments

Comments
 (0)