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
Copy file name to clipboardExpand all lines: CHANGELOG.rst
+9-1Lines changed: 9 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,24 +8,30 @@ Change Log
8
8
9
9
* 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.
10
10
11
-
**What's new in 2.4.0:**
11
+
**What's new in 2.4.0 (#119):**
12
12
13
13
* **Custom AMI Support**:
14
+
14
15
* Added support for conditionally specifying custom AMIs for EKS node groups.
15
16
* New parameters:
17
+
16
18
- ``CustomAMIImageType``: Corresponding image type (e.g., ``AL2023_x86_64_STANDARD``, ``AL2_x86_64``).
17
19
- ``CustomEKSAMI``: AMI ID to use for worker nodes. If ``CustomAMIImageType`` is set, one isn't required to set ``CustomEKSAMI``.
20
+
18
21
* Conditional logic ensures that these settings are only applied when explicitly provided.
19
22
20
23
* **Cluster Version Parameterization**:
24
+
21
25
* Introduced ``EksClusterVersion`` parameter to allow template users to control the Kubernetes version.
22
26
* If this parameter is not set, AWS will default to the version already in place.
23
27
24
28
* **Launch Template Enhancements**:
29
+
25
30
* Node group now uses a versioned launch template reference. This will support inplace changes rather than entire nodegroup replacement where possible.
26
31
* Custom AMI ID is injected into the launch template conditionally, based on user input.
27
32
28
33
* **EBS Improvements**:
34
+
29
35
* Changed block storage type from ``gp2`` to ``gp3`` in the launch template for better performance and cost optimization.
Copy file name to clipboardExpand all lines: stack/eks.py
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -108,7 +108,7 @@
108
108
custom_eks_ami=Ref(template.add_parameter(
109
109
Parameter(
110
110
"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.",
0 commit comments