File tree 2 files changed +24
-2
lines changed
2 files changed +24
-2
lines changed Original file line number Diff line number Diff line change @@ -61,7 +61,7 @@ versions by running `aws s3 ls s3://amazon-eks/cloudformation/`.
61
61
62
62
| CloudFormation Version | EKS AMI versions |
63
63
| ---------------------- | -------------------- |
64
- | 2018-08-21 | amazon-eks-node-v23+ |
64
+ | 2018-08-30 | amazon-eks-node-v23+ |
65
65
66
66
For older versions of the EKS AMI (v20-v22), you can find the CloudFormation
67
67
templates in the same bucket under the path ` s3://amazon-eks/1.10.3/2018-06-05/ ` .
Original file line number Diff line number Diff line change 1
1
---
2
2
AWSTemplateFormatVersion : ' 2010-09-09'
3
- Description : ' Amazon EKS - Node Group - Released 2018-08-21 '
3
+ Description : ' Amazon EKS - Node Group - Released 2018-08-30 '
4
4
5
5
Parameters :
6
6
@@ -237,6 +237,28 @@ Resources:
237
237
FromPort : 1025
238
238
ToPort : 65535
239
239
240
+ NodeSecurityGroupFromControlPlaneOn443Ingress :
241
+ Type : AWS::EC2::SecurityGroupIngress
242
+ DependsOn : NodeSecurityGroup
243
+ Properties :
244
+ Description : Allow pods running extension API servers on port 443 to receive communication from cluster control plane
245
+ GroupId : !Ref NodeSecurityGroup
246
+ SourceSecurityGroupId : !Ref ClusterControlPlaneSecurityGroup
247
+ IpProtocol : tcp
248
+ FromPort : 443
249
+ ToPort : 443
250
+
251
+ ControlPlaneEgressToNodeSecurityGroupOn443 :
252
+ Type : AWS::EC2::SecurityGroupEgress
253
+ DependsOn : NodeSecurityGroup
254
+ Properties :
255
+ Description : Allow the cluster control plane to communicate with pods running extension API servers on port 443
256
+ GroupId : !Ref ClusterControlPlaneSecurityGroup
257
+ DestinationSecurityGroupId : !Ref NodeSecurityGroup
258
+ IpProtocol : tcp
259
+ FromPort : 443
260
+ ToPort : 443
261
+
240
262
ClusterControlPlaneSecurityGroupIngress :
241
263
Type : AWS::EC2::SecurityGroupIngress
242
264
DependsOn : NodeSecurityGroup
You can’t perform that action at this time.
0 commit comments