@aws-sdk/client-eks 3.231.0 → 3.232.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/models/models_0.js +4 -0
- package/dist-es/models/models_0.js +4 -0
- package/dist-types/EKS.d.ts +52 -49
- package/dist-types/EKSClient.d.ts +1 -1
- package/dist-types/commands/AssociateEncryptionConfigCommand.d.ts +1 -1
- package/dist-types/commands/AssociateIdentityProviderConfigCommand.d.ts +1 -1
- package/dist-types/commands/CreateAddonCommand.d.ts +1 -1
- package/dist-types/commands/CreateClusterCommand.d.ts +4 -5
- package/dist-types/commands/CreateFargateProfileCommand.d.ts +5 -5
- package/dist-types/commands/CreateNodegroupCommand.d.ts +7 -4
- package/dist-types/commands/DeleteAddonCommand.d.ts +1 -1
- package/dist-types/commands/DeleteClusterCommand.d.ts +2 -2
- package/dist-types/commands/DeleteFargateProfileCommand.d.ts +2 -2
- package/dist-types/commands/DescribeClusterCommand.d.ts +3 -3
- package/dist-types/commands/DescribeUpdateCommand.d.ts +1 -1
- package/dist-types/commands/RegisterClusterCommand.d.ts +4 -5
- package/dist-types/commands/UpdateClusterConfigCommand.d.ts +7 -7
- package/dist-types/commands/UpdateClusterVersionCommand.d.ts +2 -2
- package/dist-types/commands/UpdateNodegroupVersionCommand.d.ts +10 -8
- package/dist-types/models/models_0.d.ts +136 -120
- package/dist-types/ts3.4/models/models_0.d.ts +4 -0
- package/package.json +1 -1
|
@@ -10,19 +10,21 @@ export interface UpdateNodegroupVersionCommandOutput extends UpdateNodegroupVers
|
|
|
10
10
|
/**
|
|
11
11
|
* <p>Updates the Kubernetes version or AMI version of an Amazon EKS managed node
|
|
12
12
|
* group.</p>
|
|
13
|
-
*
|
|
13
|
+
* <p>You can update a node group using a launch template only if the node group was
|
|
14
14
|
* originally deployed with a launch template. If you need to update a custom AMI in a node
|
|
15
15
|
* group that was deployed with a launch template, then update your custom AMI, specify the
|
|
16
16
|
* new ID in a new version of the launch template, and then update the node group to the
|
|
17
17
|
* new version of the launch template.</p>
|
|
18
|
-
*
|
|
19
|
-
* AMI version of a node group's current Kubernetes version by not specifying a Kubernetes
|
|
20
|
-
*
|
|
21
|
-
*
|
|
22
|
-
*
|
|
23
|
-
*
|
|
18
|
+
* <p>If you update without a launch template, then you can update to the latest available
|
|
19
|
+
* AMI version of a node group's current Kubernetes version by not specifying a Kubernetes version in
|
|
20
|
+
* the request. You can update to the latest AMI version of your cluster's current Kubernetes
|
|
21
|
+
* version by specifying your cluster's Kubernetes version in the request. For information about
|
|
22
|
+
* Linux versions, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/eks-linux-ami-versions.html">Amazon EKS optimized Amazon Linux AMI versions</a> in the
|
|
23
|
+
* <i>Amazon EKS User Guide</i>. For information about Windows versions, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/eks-ami-versions-windows.html">Amazon EKS optimized Windows AMI versions</a> in the
|
|
24
|
+
* <i>Amazon EKS User Guide</i>. </p>
|
|
25
|
+
* <p>You cannot roll back a node group to an earlier Kubernetes version or AMI
|
|
24
26
|
* version.</p>
|
|
25
|
-
*
|
|
27
|
+
* <p>When a node in a managed node group is terminated due to a scaling action or update,
|
|
26
28
|
* the pods in that node are drained first. Amazon EKS attempts to drain the nodes
|
|
27
29
|
* gracefully and will fail if it is unable to do so. You can <code>force</code> the update
|
|
28
30
|
* if Amazon EKS is unable to drain the nodes as a result of a pod disruption
|