@aws-sdk/client-eks 3.758.0 → 3.759.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/README.md +10 -10
- package/dist-cjs/index.js +3 -2
- package/dist-es/protocols/Aws_restJson1.js +1 -0
- package/dist-types/EKS.d.ts +10 -10
- package/dist-types/EKSClient.d.ts +10 -10
- package/dist-types/commands/AssociateAccessPolicyCommand.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/CreateAccessEntryCommand.d.ts +5 -5
- package/dist-types/commands/CreateAddonCommand.d.ts +4 -5
- package/dist-types/commands/CreateClusterCommand.d.ts +29 -33
- package/dist-types/commands/CreateEksAnywhereSubscriptionCommand.d.ts +6 -0
- package/dist-types/commands/CreateFargateProfileCommand.d.ts +28 -32
- package/dist-types/commands/CreateNodegroupCommand.d.ts +12 -7
- package/dist-types/commands/CreatePodIdentityAssociationCommand.d.ts +1 -1
- package/dist-types/commands/DeleteAccessEntryCommand.d.ts +1 -1
- package/dist-types/commands/DeleteAddonCommand.d.ts +1 -1
- package/dist-types/commands/DeleteClusterCommand.d.ts +4 -4
- package/dist-types/commands/DeleteEksAnywhereSubscriptionCommand.d.ts +10 -4
- package/dist-types/commands/DeleteFargateProfileCommand.d.ts +9 -11
- package/dist-types/commands/DeleteNodegroupCommand.d.ts +1 -1
- package/dist-types/commands/DeletePodIdentityAssociationCommand.d.ts +1 -1
- package/dist-types/commands/DeregisterClusterCommand.d.ts +5 -7
- package/dist-types/commands/DescribeAccessEntryCommand.d.ts +1 -1
- package/dist-types/commands/DescribeAddonCommand.d.ts +1 -1
- package/dist-types/commands/DescribeAddonConfigurationCommand.d.ts +1 -1
- package/dist-types/commands/DescribeAddonVersionsCommand.d.ts +1 -1
- package/dist-types/commands/DescribeClusterCommand.d.ts +2 -3
- package/dist-types/commands/DescribeEksAnywhereSubscriptionCommand.d.ts +7 -1
- package/dist-types/commands/DescribeFargateProfileCommand.d.ts +1 -1
- package/dist-types/commands/DescribeIdentityProviderConfigCommand.d.ts +1 -1
- package/dist-types/commands/DescribeInsightCommand.d.ts +1 -1
- package/dist-types/commands/DescribeNodegroupCommand.d.ts +1 -1
- package/dist-types/commands/DescribePodIdentityAssociationCommand.d.ts +1 -1
- package/dist-types/commands/DescribeUpdateCommand.d.ts +4 -4
- package/dist-types/commands/DisassociateAccessPolicyCommand.d.ts +1 -1
- package/dist-types/commands/DisassociateIdentityProviderConfigCommand.d.ts +1 -1
- package/dist-types/commands/ListAccessEntriesCommand.d.ts +1 -1
- package/dist-types/commands/ListAddonsCommand.d.ts +1 -1
- package/dist-types/commands/ListAssociatedAccessPoliciesCommand.d.ts +1 -1
- package/dist-types/commands/ListClustersCommand.d.ts +1 -2
- package/dist-types/commands/ListEksAnywhereSubscriptionsCommand.d.ts +6 -0
- package/dist-types/commands/ListFargateProfilesCommand.d.ts +3 -3
- package/dist-types/commands/ListIdentityProviderConfigsCommand.d.ts +1 -1
- package/dist-types/commands/ListInsightsCommand.d.ts +1 -1
- package/dist-types/commands/ListNodegroupsCommand.d.ts +2 -3
- package/dist-types/commands/ListPodIdentityAssociationsCommand.d.ts +1 -1
- package/dist-types/commands/ListUpdatesCommand.d.ts +3 -3
- package/dist-types/commands/RegisterClusterCommand.d.ts +9 -10
- package/dist-types/commands/TagResourceCommand.d.ts +4 -4
- package/dist-types/commands/UpdateAccessEntryCommand.d.ts +1 -1
- package/dist-types/commands/UpdateAddonCommand.d.ts +1 -1
- package/dist-types/commands/UpdateClusterConfigCommand.d.ts +18 -20
- package/dist-types/commands/UpdateClusterVersionCommand.d.ts +4 -5
- package/dist-types/commands/UpdateEksAnywhereSubscriptionCommand.d.ts +7 -1
- package/dist-types/commands/UpdateNodegroupConfigCommand.d.ts +6 -7
- package/dist-types/commands/UpdateNodegroupVersionCommand.d.ts +15 -13
- package/dist-types/commands/UpdatePodIdentityAssociationCommand.d.ts +1 -1
- package/dist-types/index.d.ts +10 -10
- package/dist-types/models/models_0.d.ts +497 -445
- package/dist-types/ts3.4/models/models_0.d.ts +5 -0
- package/package.json +1 -1
|
@@ -19,8 +19,8 @@ export type AuthenticationMode = (typeof AuthenticationMode)[keyof typeof Authen
|
|
|
19
19
|
*/
|
|
20
20
|
export interface AccessConfigResponse {
|
|
21
21
|
/**
|
|
22
|
-
* <p>Specifies whether or not the cluster creator IAM principal was set as a
|
|
23
|
-
*
|
|
22
|
+
* <p>Specifies whether or not the cluster creator IAM principal was set as a cluster
|
|
23
|
+
* admin access entry during cluster creation time.</p>
|
|
24
24
|
* @public
|
|
25
25
|
*/
|
|
26
26
|
bootstrapClusterCreatorAdminPermissions?: boolean | undefined;
|
|
@@ -32,10 +32,9 @@ export interface AccessConfigResponse {
|
|
|
32
32
|
}
|
|
33
33
|
/**
|
|
34
34
|
* <p>You don't have permissions to perform the requested operation. The <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_terms-and-concepts.html">IAM principal</a>
|
|
35
|
-
* making the request must have at least one IAM permissions policy attached
|
|
36
|
-
*
|
|
37
|
-
* management</a> in the <i>IAM User Guide</i>.
|
|
38
|
-
* </p>
|
|
35
|
+
* making the request must have at least one IAM permissions policy attached that grants
|
|
36
|
+
* the required permissions. For more information, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/access.html">Access
|
|
37
|
+
* management</a> in the <i>IAM User Guide</i>. </p>
|
|
39
38
|
* @public
|
|
40
39
|
*/
|
|
41
40
|
export declare class AccessDeniedException extends __BaseException {
|
|
@@ -47,8 +46,8 @@ export declare class AccessDeniedException extends __BaseException {
|
|
|
47
46
|
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
48
47
|
}
|
|
49
48
|
/**
|
|
50
|
-
* <p>An access entry allows an IAM principal (user or role) to access your
|
|
51
|
-
*
|
|
49
|
+
* <p>An access entry allows an IAM principal (user or role) to access your cluster.
|
|
50
|
+
* Access entries can replace the need to maintain the <code>aws-auth</code>
|
|
52
51
|
* <code>ConfigMap</code> for authentication. For more information about access entries,
|
|
53
52
|
* see <a href="https://docs.aws.amazon.com/eks/latest/userguide/access-entries.html">Access
|
|
54
53
|
* entries</a> in the <i>Amazon EKS User Guide</i>.</p>
|
|
@@ -61,18 +60,17 @@ export interface AccessEntry {
|
|
|
61
60
|
*/
|
|
62
61
|
clusterName?: string | undefined;
|
|
63
62
|
/**
|
|
64
|
-
* <p>The ARN of the IAM principal for the access entry. If you ever delete
|
|
65
|
-
*
|
|
66
|
-
*
|
|
67
|
-
*
|
|
68
|
-
*
|
|
69
|
-
*
|
|
70
|
-
*
|
|
71
|
-
*
|
|
72
|
-
*
|
|
73
|
-
* principal
|
|
74
|
-
*
|
|
75
|
-
* for an access entry, Amazon EKS stores it with the access entry.</p>
|
|
63
|
+
* <p>The ARN of the IAM principal for the access entry. If you ever delete the IAM
|
|
64
|
+
* principal with this ARN, the access entry isn't automatically deleted. We recommend
|
|
65
|
+
* that you delete the access entry with an ARN for an IAM principal that you delete.
|
|
66
|
+
* If you don't delete the access entry and ever recreate the IAM principal, even if it
|
|
67
|
+
* has the same ARN, the access entry won't work. This is because even though the ARN
|
|
68
|
+
* is the same for the recreated IAM principal, the <code>roleID</code> or
|
|
69
|
+
* <code>userID</code> (you can see this with the Security Token Service
|
|
70
|
+
* <code>GetCallerIdentity</code> API) is different for the recreated IAM principal
|
|
71
|
+
* than it was for the original IAM principal. Even though you don't see the IAM
|
|
72
|
+
* principal's <code>roleID</code> or <code>userID</code> for an access entry, Amazon EKS stores
|
|
73
|
+
* it with the access entry.</p>
|
|
76
74
|
* @public
|
|
77
75
|
*/
|
|
78
76
|
principalArn?: string | undefined;
|
|
@@ -119,11 +117,11 @@ export interface AccessEntry {
|
|
|
119
117
|
/**
|
|
120
118
|
* <p>An access policy includes permissions that allow Amazon EKS to authorize an
|
|
121
119
|
* IAM principal to work with Kubernetes objects on your cluster. The policies are
|
|
122
|
-
* managed by Amazon EKS, but they're not IAM policies. You can't
|
|
123
|
-
*
|
|
124
|
-
*
|
|
125
|
-
* <code>
|
|
126
|
-
*
|
|
120
|
+
* managed by Amazon EKS, but they're not IAM policies. You can't view the permissions in the
|
|
121
|
+
* policies using the API. The permissions for many of the policies are similar to the
|
|
122
|
+
* Kubernetes <code>cluster-admin</code>, <code>admin</code>, <code>edit</code>, and
|
|
123
|
+
* <code>view</code> cluster roles. For more information about these cluster roles, see
|
|
124
|
+
* <a href="https://kubernetes.io/docs/reference/access-authn-authz/rbac/#user-facing-roles">User-facing roles</a> in the Kubernetes documentation. To view the contents of the
|
|
127
125
|
* policies, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/access-policies.html#access-policy-permissions">Access
|
|
128
126
|
* policy permissions</a> in the <i>Amazon EKS User Guide</i>.</p>
|
|
129
127
|
* @public
|
|
@@ -257,8 +255,8 @@ export declare const AddonStatus: {
|
|
|
257
255
|
*/
|
|
258
256
|
export type AddonStatus = (typeof AddonStatus)[keyof typeof AddonStatus];
|
|
259
257
|
/**
|
|
260
|
-
* <p>An Amazon EKS add-on. For more information, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/eks-add-ons.html">Amazon EKS add-ons</a> in
|
|
261
|
-
*
|
|
258
|
+
* <p>An Amazon EKS add-on. For more information, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/eks-add-ons.html">Amazon EKS add-ons</a> in the
|
|
259
|
+
* <i>Amazon EKS User Guide</i>.</p>
|
|
262
260
|
* @public
|
|
263
261
|
*/
|
|
264
262
|
export interface Addon {
|
|
@@ -303,8 +301,8 @@ export interface Addon {
|
|
|
303
301
|
*/
|
|
304
302
|
modifiedAt?: Date | undefined;
|
|
305
303
|
/**
|
|
306
|
-
* <p>The Amazon Resource Name (ARN) of the IAM role that's bound to the Kubernetes
|
|
307
|
-
*
|
|
304
|
+
* <p>The Amazon Resource Name (ARN) of the IAM role that's bound to the Kubernetes <code>ServiceAccount</code>
|
|
305
|
+
* object that the add-on uses.</p>
|
|
308
306
|
* @public
|
|
309
307
|
*/
|
|
310
308
|
serviceAccountRoleArn?: string | undefined;
|
|
@@ -336,8 +334,10 @@ export interface Addon {
|
|
|
336
334
|
*/
|
|
337
335
|
configurationValues?: string | undefined;
|
|
338
336
|
/**
|
|
339
|
-
* <p>An array of Pod Identity Assocations owned by the Addon. Each EKS Pod Identity
|
|
340
|
-
*
|
|
337
|
+
* <p>An array of Pod Identity Assocations owned by the Addon. Each EKS Pod Identity
|
|
338
|
+
* association maps a role to a service account in a namespace in the cluster.</p>
|
|
339
|
+
* <p>For more information, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/add-ons-iam.html">Attach an IAM Role to an Amazon EKS add-on
|
|
340
|
+
* using Pod Identity</a> in the <i>Amazon EKS User Guide</i>.</p>
|
|
341
341
|
* @public
|
|
342
342
|
*/
|
|
343
343
|
podIdentityAssociations?: string[] | undefined;
|
|
@@ -411,7 +411,8 @@ export interface AddonVersionInfo {
|
|
|
411
411
|
*/
|
|
412
412
|
requiresConfiguration?: boolean | undefined;
|
|
413
413
|
/**
|
|
414
|
-
* <p>Indicates if the Addon requires IAM Permissions to operate, such as networking
|
|
414
|
+
* <p>Indicates if the Addon requires IAM Permissions to operate, such as networking
|
|
415
|
+
* permissions.</p>
|
|
415
416
|
* @public
|
|
416
417
|
*/
|
|
417
418
|
requiresIamPermissions?: boolean | undefined;
|
|
@@ -455,8 +456,10 @@ export interface AddonInfo {
|
|
|
455
456
|
}
|
|
456
457
|
/**
|
|
457
458
|
* <p>A type of Pod Identity Association owned by an Amazon EKS Add-on.</p>
|
|
458
|
-
* <p>Each EKS Pod Identity Association maps a role to a service account in a namespace in
|
|
459
|
-
*
|
|
459
|
+
* <p>Each EKS Pod Identity Association maps a role to a service account in a namespace in
|
|
460
|
+
* the cluster.</p>
|
|
461
|
+
* <p>For more information, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/add-ons-iam.html">Attach an IAM Role to an Amazon EKS add-on
|
|
462
|
+
* using Pod Identity</a> in the <i>Amazon EKS User Guide</i>.</p>
|
|
460
463
|
* @public
|
|
461
464
|
*/
|
|
462
465
|
export interface AddonPodIdentityAssociations {
|
|
@@ -523,8 +526,8 @@ export interface AssociateAccessPolicyRequest {
|
|
|
523
526
|
*/
|
|
524
527
|
clusterName: string | undefined;
|
|
525
528
|
/**
|
|
526
|
-
* <p>The Amazon Resource Name (ARN) of the IAM user or role for the <code>AccessEntry</code>
|
|
527
|
-
*
|
|
529
|
+
* <p>The Amazon Resource Name (ARN) of the IAM user or role for the <code>AccessEntry</code> that you're
|
|
530
|
+
* associating the access policy to. </p>
|
|
528
531
|
* @public
|
|
529
532
|
*/
|
|
530
533
|
principalArn: string | undefined;
|
|
@@ -666,7 +669,7 @@ export declare class InvalidRequestException extends __BaseException {
|
|
|
666
669
|
* <p>The specified resource could not be found. You can view your available clusters with
|
|
667
670
|
* <code>ListClusters</code>. You can view your available managed node groups with
|
|
668
671
|
* <code>ListNodegroups</code>. Amazon EKS clusters and node groups are Amazon Web Services Region
|
|
669
|
-
*
|
|
672
|
+
* specific.</p>
|
|
670
673
|
* @public
|
|
671
674
|
*/
|
|
672
675
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
@@ -735,18 +738,17 @@ export declare class ServerException extends __BaseException {
|
|
|
735
738
|
constructor(opts: __ExceptionOptionType<ServerException, __BaseException>);
|
|
736
739
|
}
|
|
737
740
|
/**
|
|
738
|
-
* <p>Identifies the Key Management Service (KMS) key used to encrypt the
|
|
739
|
-
* secrets.</p>
|
|
741
|
+
* <p>Identifies the Key Management Service (KMS) key used to encrypt the secrets.</p>
|
|
740
742
|
* @public
|
|
741
743
|
*/
|
|
742
744
|
export interface Provider {
|
|
743
745
|
/**
|
|
744
|
-
* <p>Amazon Resource Name (ARN) or alias of the KMS key. The KMS key must be
|
|
745
|
-
*
|
|
746
|
-
*
|
|
747
|
-
*
|
|
748
|
-
* users in other accounts to use a KMS key</a> in the
|
|
749
|
-
*
|
|
746
|
+
* <p>Amazon Resource Name (ARN) or alias of the KMS key. The KMS key must be symmetric and created in
|
|
747
|
+
* the same Amazon Web Services Region as the cluster. If the KMS key was created in a different
|
|
748
|
+
* account, the <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_terms-and-concepts.html">IAM principal</a> must have access to the KMS key. For more information,
|
|
749
|
+
* see <a href="https://docs.aws.amazon.com/kms/latest/developerguide/key-policy-modifying-external-accounts.html">Allowing
|
|
750
|
+
* users in other accounts to use a KMS key</a> in the <i>Key Management Service
|
|
751
|
+
* Developer Guide</i>.</p>
|
|
750
752
|
* @public
|
|
751
753
|
*/
|
|
752
754
|
keyArn?: string | undefined;
|
|
@@ -763,8 +765,7 @@ export interface EncryptionConfig {
|
|
|
763
765
|
*/
|
|
764
766
|
resources?: string[] | undefined;
|
|
765
767
|
/**
|
|
766
|
-
* <p>Key Management Service (KMS) key. Either the ARN or the alias can be
|
|
767
|
-
* used.</p>
|
|
768
|
+
* <p>Key Management Service (KMS) key. Either the ARN or the alias can be used.</p>
|
|
768
769
|
* @public
|
|
769
770
|
*/
|
|
770
771
|
provider?: Provider | undefined;
|
|
@@ -854,7 +855,7 @@ export interface ErrorDetail {
|
|
|
854
855
|
* <p>
|
|
855
856
|
* <b>OperationNotPermitted</b>: The service role
|
|
856
857
|
* associated with the cluster doesn't have the required access permissions for
|
|
857
|
-
*
|
|
858
|
+
* Amazon EKS.</p>
|
|
858
859
|
* </li>
|
|
859
860
|
* <li>
|
|
860
861
|
* <p>
|
|
@@ -1145,8 +1146,8 @@ export interface OidcIdentityProviderConfigRequest {
|
|
|
1145
1146
|
/**
|
|
1146
1147
|
* <p>The key value pairs that describe required claims in the identity token. If set, each
|
|
1147
1148
|
* claim is verified to be present in the token with a matching value. For the maximum
|
|
1148
|
-
* number of claims that you can require, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/service-quotas.html">Amazon EKS service
|
|
1149
|
-
*
|
|
1149
|
+
* number of claims that you can require, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/service-quotas.html">Amazon EKS service quotas</a> in the
|
|
1150
|
+
* <i>Amazon EKS User Guide</i>.</p>
|
|
1150
1151
|
* @public
|
|
1151
1152
|
*/
|
|
1152
1153
|
requiredClaims?: Record<string, string> | undefined;
|
|
@@ -1195,14 +1196,12 @@ export interface AssociateIdentityProviderConfigResponse {
|
|
|
1195
1196
|
tags?: Record<string, string> | undefined;
|
|
1196
1197
|
}
|
|
1197
1198
|
/**
|
|
1198
|
-
* <p>An Auto Scaling group that is associated with an Amazon EKS managed node
|
|
1199
|
-
* group.</p>
|
|
1199
|
+
* <p>An Auto Scaling group that is associated with an Amazon EKS managed node group.</p>
|
|
1200
1200
|
* @public
|
|
1201
1201
|
*/
|
|
1202
1202
|
export interface AutoScalingGroup {
|
|
1203
1203
|
/**
|
|
1204
|
-
* <p>The name of the Auto Scaling group associated with an Amazon EKS managed
|
|
1205
|
-
* node group.</p>
|
|
1204
|
+
* <p>The name of the Auto Scaling group associated with an Amazon EKS managed node group.</p>
|
|
1206
1205
|
* @public
|
|
1207
1206
|
*/
|
|
1208
1207
|
name?: string | undefined;
|
|
@@ -1230,19 +1229,18 @@ export interface CreateAccessEntryRequest {
|
|
|
1230
1229
|
* temporary principal for each session and not a permanent identity that can be assigned
|
|
1231
1230
|
* permissions.</p>
|
|
1232
1231
|
* <p>
|
|
1233
|
-
* <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/best-practices.html#bp-users-federation-idp">IAM
|
|
1234
|
-
*
|
|
1235
|
-
*
|
|
1236
|
-
* </p>
|
|
1232
|
+
* <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/best-practices.html#bp-users-federation-idp">IAM best
|
|
1233
|
+
* practices</a> recommend using IAM roles with temporary credentials, rather
|
|
1234
|
+
* than IAM users with long-term credentials. </p>
|
|
1237
1235
|
* @public
|
|
1238
1236
|
*/
|
|
1239
1237
|
principalArn: string | undefined;
|
|
1240
1238
|
/**
|
|
1241
1239
|
* <p>The value for <code>name</code> that you've specified for <code>kind: Group</code> as
|
|
1242
1240
|
* a <code>subject</code> in a Kubernetes <code>RoleBinding</code> or
|
|
1243
|
-
* <code>ClusterRoleBinding</code> object. Amazon EKS doesn't confirm that the
|
|
1244
|
-
*
|
|
1245
|
-
*
|
|
1241
|
+
* <code>ClusterRoleBinding</code> object. Amazon EKS doesn't confirm that the value for
|
|
1242
|
+
* <code>name</code> exists in any bindings on your cluster. You can specify one or
|
|
1243
|
+
* more names.</p>
|
|
1246
1244
|
* <p>Kubernetes authorizes the <code>principalArn</code> of the access entry to access any
|
|
1247
1245
|
* cluster objects that you've specified in a Kubernetes <code>Role</code> or
|
|
1248
1246
|
* <code>ClusterRole</code> object that is also specified in a binding's
|
|
@@ -1250,13 +1248,13 @@ export interface CreateAccessEntryRequest {
|
|
|
1250
1248
|
* <code>RoleBinding</code>, <code>ClusterRoleBinding</code>, <code>Role</code>, or
|
|
1251
1249
|
* <code>ClusterRole</code> objects, see <a href="https://kubernetes.io/docs/reference/access-authn-authz/rbac/">Using RBAC
|
|
1252
1250
|
* Authorization in the Kubernetes documentation</a>.</p>
|
|
1253
|
-
* <p>If you want Amazon EKS to authorize the <code>principalArn</code> (instead of,
|
|
1254
|
-
*
|
|
1255
|
-
*
|
|
1256
|
-
*
|
|
1257
|
-
*
|
|
1258
|
-
*
|
|
1259
|
-
*
|
|
1251
|
+
* <p>If you want Amazon EKS to authorize the <code>principalArn</code> (instead of, or in
|
|
1252
|
+
* addition to Kubernetes authorizing the <code>principalArn</code>), you can associate one or
|
|
1253
|
+
* more access policies to the access entry using <code>AssociateAccessPolicy</code>. If
|
|
1254
|
+
* you associate any access policies, the <code>principalARN</code> has all permissions
|
|
1255
|
+
* assigned in the associated access policies and all permissions in any Kubernetes
|
|
1256
|
+
* <code>Role</code> or <code>ClusterRole</code> objects that the group names are bound
|
|
1257
|
+
* to.</p>
|
|
1260
1258
|
* @public
|
|
1261
1259
|
*/
|
|
1262
1260
|
kubernetesGroups?: string[] | undefined;
|
|
@@ -1275,9 +1273,8 @@ export interface CreateAccessEntryRequest {
|
|
|
1275
1273
|
clientRequestToken?: string | undefined;
|
|
1276
1274
|
/**
|
|
1277
1275
|
* <p>The username to authenticate to Kubernetes with. We recommend not specifying a username and
|
|
1278
|
-
* letting Amazon EKS specify it for you. For more information about the value
|
|
1279
|
-
*
|
|
1280
|
-
* username, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/access-entries.html#creating-access-entries">Creating
|
|
1276
|
+
* letting Amazon EKS specify it for you. For more information about the value Amazon EKS specifies
|
|
1277
|
+
* for you, or constraints before specifying your own username, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/access-entries.html#creating-access-entries">Creating
|
|
1281
1278
|
* access entries</a> in the <i>Amazon EKS User Guide</i>.</p>
|
|
1282
1279
|
* @public
|
|
1283
1280
|
*/
|
|
@@ -1285,8 +1282,8 @@ export interface CreateAccessEntryRequest {
|
|
|
1285
1282
|
/**
|
|
1286
1283
|
* <p>The type of the new access entry. Valid values are <code>STANDARD</code>,
|
|
1287
1284
|
* <code>FARGATE_LINUX</code>, <code>EC2_LINUX</code>, <code>EC2_WINDOWS</code>,
|
|
1288
|
-
* <code>EC2</code> (for EKS Auto Mode), <code>HYBRID_LINUX</code>, and
|
|
1289
|
-
*
|
|
1285
|
+
* <code>EC2</code> (for EKS Auto Mode), <code>HYBRID_LINUX</code>, and
|
|
1286
|
+
* <code>HYPERPOD_LINUX</code>. </p>
|
|
1290
1287
|
* <p>If the <code>principalArn</code> is for an IAM role that's used for self-managed
|
|
1291
1288
|
* Amazon EC2 nodes, specify <code>EC2_LINUX</code> or <code>EC2_WINDOWS</code>. Amazon EKS grants
|
|
1292
1289
|
* the necessary permissions to the node for you. If the <code>principalArn</code> is for
|
|
@@ -1309,8 +1306,8 @@ export interface CreateAccessEntryRequest {
|
|
|
1309
1306
|
*/
|
|
1310
1307
|
export interface CreateAccessEntryResponse {
|
|
1311
1308
|
/**
|
|
1312
|
-
* <p>An access entry allows an IAM principal (user or role) to access your
|
|
1313
|
-
*
|
|
1309
|
+
* <p>An access entry allows an IAM principal (user or role) to access your cluster.
|
|
1310
|
+
* Access entries can replace the need to maintain the <code>aws-auth</code>
|
|
1314
1311
|
* <code>ConfigMap</code> for authentication. For more information about access entries,
|
|
1315
1312
|
* see <a href="https://docs.aws.amazon.com/eks/latest/userguide/access-entries.html">Access
|
|
1316
1313
|
* entries</a> in the <i>Amazon EKS User Guide</i>.</p>
|
|
@@ -1393,36 +1390,36 @@ export interface CreateAddonRequest {
|
|
|
1393
1390
|
*/
|
|
1394
1391
|
serviceAccountRoleArn?: string | undefined;
|
|
1395
1392
|
/**
|
|
1396
|
-
* <p>How to resolve field value conflicts for an Amazon EKS add-on. Conflicts are
|
|
1397
|
-
*
|
|
1393
|
+
* <p>How to resolve field value conflicts for an Amazon EKS add-on. Conflicts are handled based
|
|
1394
|
+
* on the value you choose:</p>
|
|
1398
1395
|
* <ul>
|
|
1399
1396
|
* <li>
|
|
1400
1397
|
* <p>
|
|
1401
1398
|
* <b>None</b> – If the self-managed version of
|
|
1402
|
-
* the add-on is installed on your cluster, Amazon EKS doesn't change the
|
|
1403
|
-
*
|
|
1399
|
+
* the add-on is installed on your cluster, Amazon EKS doesn't change the value.
|
|
1400
|
+
* Creation of the add-on might fail.</p>
|
|
1404
1401
|
* </li>
|
|
1405
1402
|
* <li>
|
|
1406
1403
|
* <p>
|
|
1407
1404
|
* <b>Overwrite</b> – If the self-managed
|
|
1408
|
-
* version of the add-on is installed on your cluster and the Amazon EKS
|
|
1409
|
-
*
|
|
1410
|
-
*
|
|
1405
|
+
* version of the add-on is installed on your cluster and the Amazon EKS default value
|
|
1406
|
+
* is different than the existing value, Amazon EKS changes the value to the Amazon EKS
|
|
1407
|
+
* default value.</p>
|
|
1411
1408
|
* </li>
|
|
1412
1409
|
* <li>
|
|
1413
1410
|
* <p>
|
|
1414
1411
|
* <b>Preserve</b> – This is similar to the NONE
|
|
1415
1412
|
* option. If the self-managed version of the add-on is installed on your cluster
|
|
1416
|
-
*
|
|
1417
|
-
*
|
|
1418
|
-
*
|
|
1413
|
+
* Amazon EKS doesn't change the add-on resource properties. Creation of the add-on
|
|
1414
|
+
* might fail if conflicts are detected. This option works differently during the
|
|
1415
|
+
* update operation. For more information, see <a href="https://docs.aws.amazon.com/eks/latest/APIReference/API_UpdateAddon.html">
|
|
1419
1416
|
* <code>UpdateAddon</code>
|
|
1420
1417
|
* </a>.</p>
|
|
1421
1418
|
* </li>
|
|
1422
1419
|
* </ul>
|
|
1423
1420
|
* <p>If you don't currently have the self-managed version of the add-on installed on your
|
|
1424
|
-
* cluster, the Amazon EKS add-on is installed. Amazon EKS sets all values
|
|
1425
|
-
*
|
|
1421
|
+
* cluster, the Amazon EKS add-on is installed. Amazon EKS sets all values to default values,
|
|
1422
|
+
* regardless of the option that you specify.</p>
|
|
1426
1423
|
* @public
|
|
1427
1424
|
*/
|
|
1428
1425
|
resolveConflicts?: ResolveConflicts | undefined;
|
|
@@ -1447,8 +1444,10 @@ export interface CreateAddonRequest {
|
|
|
1447
1444
|
*/
|
|
1448
1445
|
configurationValues?: string | undefined;
|
|
1449
1446
|
/**
|
|
1450
|
-
* <p>An array of Pod Identity Assocations to be created. Each EKS Pod Identity association
|
|
1451
|
-
*
|
|
1447
|
+
* <p>An array of Pod Identity Assocations to be created. Each EKS Pod Identity association
|
|
1448
|
+
* maps a Kubernetes service account to an IAM Role.</p>
|
|
1449
|
+
* <p>For more information, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/add-ons-iam.html">Attach an IAM Role to an Amazon EKS add-on
|
|
1450
|
+
* using Pod Identity</a> in the <i>Amazon EKS User Guide</i>.</p>
|
|
1452
1451
|
* @public
|
|
1453
1452
|
*/
|
|
1454
1453
|
podIdentityAssociations?: AddonPodIdentityAssociations[] | undefined;
|
|
@@ -1458,8 +1457,8 @@ export interface CreateAddonRequest {
|
|
|
1458
1457
|
*/
|
|
1459
1458
|
export interface CreateAddonResponse {
|
|
1460
1459
|
/**
|
|
1461
|
-
* <p>An Amazon EKS add-on. For more information, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/eks-add-ons.html">Amazon EKS add-ons</a> in
|
|
1462
|
-
*
|
|
1460
|
+
* <p>An Amazon EKS add-on. For more information, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/eks-add-ons.html">Amazon EKS add-ons</a> in the
|
|
1461
|
+
* <i>Amazon EKS User Guide</i>.</p>
|
|
1463
1462
|
* @public
|
|
1464
1463
|
*/
|
|
1465
1464
|
addon?: Addon | undefined;
|
|
@@ -1470,9 +1469,9 @@ export interface CreateAddonResponse {
|
|
|
1470
1469
|
*/
|
|
1471
1470
|
export interface CreateAccessConfigRequest {
|
|
1472
1471
|
/**
|
|
1473
|
-
* <p>Specifies whether or not the cluster creator IAM principal was set as a
|
|
1474
|
-
*
|
|
1475
|
-
*
|
|
1472
|
+
* <p>Specifies whether or not the cluster creator IAM principal was set as a cluster
|
|
1473
|
+
* admin access entry during cluster creation time. The default value is
|
|
1474
|
+
* <code>true</code>.</p>
|
|
1476
1475
|
* @public
|
|
1477
1476
|
*/
|
|
1478
1477
|
bootstrapClusterCreatorAdminPermissions?: boolean | undefined;
|
|
@@ -1486,33 +1485,46 @@ export interface CreateAccessConfigRequest {
|
|
|
1486
1485
|
authenticationMode?: AuthenticationMode | undefined;
|
|
1487
1486
|
}
|
|
1488
1487
|
/**
|
|
1489
|
-
* <p>Request to update the configuration of the compute capability of your EKS Auto Mode
|
|
1488
|
+
* <p>Request to update the configuration of the compute capability of your EKS Auto Mode
|
|
1489
|
+
* cluster. For example, enable the capability. For more information, see EKS Auto Mode
|
|
1490
|
+
* compute capability in the <i>Amazon EKS User Guide</i>.</p>
|
|
1490
1491
|
* @public
|
|
1491
1492
|
*/
|
|
1492
1493
|
export interface ComputeConfigRequest {
|
|
1493
1494
|
/**
|
|
1494
|
-
* <p>Request to enable or disable the compute capability on your EKS Auto Mode cluster. If
|
|
1495
|
+
* <p>Request to enable or disable the compute capability on your EKS Auto Mode cluster. If
|
|
1496
|
+
* the compute capability is enabled, EKS Auto Mode will create and delete EC2 Managed
|
|
1497
|
+
* Instances in your Amazon Web Services account.</p>
|
|
1495
1498
|
* @public
|
|
1496
1499
|
*/
|
|
1497
1500
|
enabled?: boolean | undefined;
|
|
1498
1501
|
/**
|
|
1499
|
-
* <p>Configuration for node pools that defines the compute resources for your EKS Auto Mode
|
|
1502
|
+
* <p>Configuration for node pools that defines the compute resources for your EKS Auto Mode
|
|
1503
|
+
* cluster. For more information, see EKS Auto Mode Node Pools in the
|
|
1504
|
+
* <i>Amazon EKS User Guide</i>.</p>
|
|
1500
1505
|
* @public
|
|
1501
1506
|
*/
|
|
1502
1507
|
nodePools?: string[] | undefined;
|
|
1503
1508
|
/**
|
|
1504
|
-
* <p>The ARN of the IAM Role EKS will assign to EC2 Managed Instances in your EKS Auto
|
|
1509
|
+
* <p>The ARN of the IAM Role EKS will assign to EC2 Managed Instances in your EKS Auto
|
|
1510
|
+
* Mode cluster. This value cannot be changed after the compute capability of EKS Auto Mode
|
|
1511
|
+
* is enabled. For more information, see the IAM Reference in the
|
|
1512
|
+
* <i>Amazon EKS User Guide</i>.</p>
|
|
1505
1513
|
* @public
|
|
1506
1514
|
*/
|
|
1507
1515
|
nodeRoleArn?: string | undefined;
|
|
1508
1516
|
}
|
|
1509
1517
|
/**
|
|
1510
|
-
* <p>Indicates the current configuration of the load balancing capability on your EKS Auto
|
|
1518
|
+
* <p>Indicates the current configuration of the load balancing capability on your EKS Auto
|
|
1519
|
+
* Mode cluster. For example, if the capability is enabled or disabled. For more
|
|
1520
|
+
* information, see EKS Auto Mode load balancing capability in the <i>Amazon EKS User Guide</i>.</p>
|
|
1511
1521
|
* @public
|
|
1512
1522
|
*/
|
|
1513
1523
|
export interface ElasticLoadBalancing {
|
|
1514
1524
|
/**
|
|
1515
|
-
* <p>Indicates if the load balancing capability is enabled on your EKS Auto Mode cluster.
|
|
1525
|
+
* <p>Indicates if the load balancing capability is enabled on your EKS Auto Mode cluster.
|
|
1526
|
+
* If the load balancing capability is enabled, EKS Auto Mode will create and delete load
|
|
1527
|
+
* balancers in your Amazon Web Services account.</p>
|
|
1516
1528
|
* @public
|
|
1517
1529
|
*/
|
|
1518
1530
|
enabled?: boolean | undefined;
|
|
@@ -1573,15 +1585,17 @@ export interface KubernetesNetworkConfigRequest {
|
|
|
1573
1585
|
* use version <code>1.10.1</code> or later of the Amazon VPC CNI add-on. If you specify
|
|
1574
1586
|
* <code>ipv6</code>, then ensure that your VPC meets the requirements listed in the
|
|
1575
1587
|
* considerations listed in <a href="https://docs.aws.amazon.com/eks/latest/userguide/cni-ipv6.html">Assigning IPv6 addresses to pods and
|
|
1576
|
-
* services</a> in the <i>Amazon EKS User Guide</i>. Kubernetes assigns services
|
|
1577
|
-
*
|
|
1578
|
-
*
|
|
1579
|
-
*
|
|
1588
|
+
* services</a> in the <i>Amazon EKS User Guide</i>. Kubernetes assigns services <code>IPv6</code>
|
|
1589
|
+
* addresses from the unique local address range <code>(fc00::/7)</code>. You can't specify
|
|
1590
|
+
* a custom <code>IPv6</code> CIDR block. Pod addresses are assigned from the subnet's
|
|
1591
|
+
* <code>IPv6</code> CIDR.</p>
|
|
1580
1592
|
* @public
|
|
1581
1593
|
*/
|
|
1582
1594
|
ipFamily?: IpFamily | undefined;
|
|
1583
1595
|
/**
|
|
1584
|
-
* <p>Request to enable or disable the load balancing capability on your EKS Auto Mode
|
|
1596
|
+
* <p>Request to enable or disable the load balancing capability on your EKS Auto Mode
|
|
1597
|
+
* cluster. For more information, see EKS Auto Mode load balancing capability in the
|
|
1598
|
+
* <i>Amazon EKS User Guide</i>.</p>
|
|
1585
1599
|
* @public
|
|
1586
1600
|
*/
|
|
1587
1601
|
elasticLoadBalancing?: ElasticLoadBalancing | undefined;
|
|
@@ -1613,9 +1627,9 @@ export interface LogSetup {
|
|
|
1613
1627
|
*/
|
|
1614
1628
|
types?: LogType[] | undefined;
|
|
1615
1629
|
/**
|
|
1616
|
-
* <p>If a log type is enabled, that log type exports its control plane logs to CloudWatch Logs
|
|
1617
|
-
*
|
|
1618
|
-
*
|
|
1630
|
+
* <p>If a log type is enabled, that log type exports its control plane logs to CloudWatch Logs . If a
|
|
1631
|
+
* log type isn't enabled, that log type doesn't export its control plane logs. Each
|
|
1632
|
+
* individual log type can be enabled or disabled independently.</p>
|
|
1619
1633
|
* @public
|
|
1620
1634
|
*/
|
|
1621
1635
|
enabled?: boolean | undefined;
|
|
@@ -1633,8 +1647,7 @@ export interface Logging {
|
|
|
1633
1647
|
}
|
|
1634
1648
|
/**
|
|
1635
1649
|
* <p>The placement configuration for all the control plane instances of your local Amazon EKS
|
|
1636
|
-
*
|
|
1637
|
-
* <a href="https://docs.aws.amazon.com/eks/latest/userguide/eks-outposts-capacity-considerations.html">Capacity
|
|
1650
|
+
* cluster on an Amazon Web Services Outpost. For more information, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/eks-outposts-capacity-considerations.html">Capacity
|
|
1638
1651
|
* considerations</a> in the <i>Amazon EKS User Guide</i>.</p>
|
|
1639
1652
|
* @public
|
|
1640
1653
|
*/
|
|
@@ -1647,23 +1660,23 @@ export interface ControlPlanePlacementRequest {
|
|
|
1647
1660
|
groupName?: string | undefined;
|
|
1648
1661
|
}
|
|
1649
1662
|
/**
|
|
1650
|
-
* <p>The configuration of your local Amazon EKS cluster on an Amazon Web Services
|
|
1651
|
-
*
|
|
1663
|
+
* <p>The configuration of your local Amazon EKS cluster on an Amazon Web Services Outpost. Before creating a
|
|
1664
|
+
* cluster on an Outpost, review <a href="https://docs.aws.amazon.com/eks/latest/userguide/eks-outposts-local-cluster-create.html">Creating a local
|
|
1652
1665
|
* cluster on an Outpost</a> in the <i>Amazon EKS User Guide</i>. This API isn't available for
|
|
1653
|
-
*
|
|
1666
|
+
* Amazon EKS clusters on the Amazon Web Services cloud.</p>
|
|
1654
1667
|
* @public
|
|
1655
1668
|
*/
|
|
1656
1669
|
export interface OutpostConfigRequest {
|
|
1657
1670
|
/**
|
|
1658
|
-
* <p>The ARN of the Outpost that you want to use for your local Amazon EKS
|
|
1659
|
-
*
|
|
1671
|
+
* <p>The ARN of the Outpost that you want to use for your local Amazon EKS cluster on
|
|
1672
|
+
* Outposts. Only a single Outpost ARN is supported.</p>
|
|
1660
1673
|
* @public
|
|
1661
1674
|
*/
|
|
1662
1675
|
outpostArns: string[] | undefined;
|
|
1663
1676
|
/**
|
|
1664
|
-
* <p>The Amazon EC2 instance type that you want to use for your local Amazon EKS
|
|
1665
|
-
*
|
|
1666
|
-
*
|
|
1677
|
+
* <p>The Amazon EC2 instance type that you want to use for your local Amazon EKS cluster on Outposts.
|
|
1678
|
+
* Choose an instance type based on the number of nodes that your cluster will have. For
|
|
1679
|
+
* more information, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/eks-outposts-capacity-considerations.html">Capacity
|
|
1667
1680
|
* considerations</a> in the <i>Amazon EKS User Guide</i>.</p>
|
|
1668
1681
|
* <p>The instance type that you specify is used for all Kubernetes control plane instances. The
|
|
1669
1682
|
* instance type can't be changed after cluster creation. The control plane is not
|
|
@@ -1674,8 +1687,7 @@ export interface OutpostConfigRequest {
|
|
|
1674
1687
|
controlPlaneInstanceType: string | undefined;
|
|
1675
1688
|
/**
|
|
1676
1689
|
* <p>An object representing the placement configuration for all the control plane instances
|
|
1677
|
-
* of your local Amazon EKS cluster on an Amazon Web Services Outpost. For more
|
|
1678
|
-
* information, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/eks-outposts-capacity-considerations.html">Capacity considerations</a> in the <i>Amazon EKS User Guide</i>.</p>
|
|
1690
|
+
* of your local Amazon EKS cluster on an Amazon Web Services Outpost. For more information, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/eks-outposts-capacity-considerations.html">Capacity considerations</a> in the <i>Amazon EKS User Guide</i>.</p>
|
|
1679
1691
|
* @public
|
|
1680
1692
|
*/
|
|
1681
1693
|
controlPlanePlacement?: ControlPlanePlacementRequest | undefined;
|
|
@@ -1684,8 +1696,8 @@ export interface OutpostConfigRequest {
|
|
|
1684
1696
|
* <p>A network CIDR that can contain hybrid nodes.</p>
|
|
1685
1697
|
* <p>These CIDR blocks define the expected IP address range of the hybrid nodes that join
|
|
1686
1698
|
* the cluster. These blocks are typically determined by your network administrator. </p>
|
|
1687
|
-
* <p>Enter one or more IPv4 CIDR blocks in decimal dotted-quad notation (for example,
|
|
1688
|
-
*
|
|
1699
|
+
* <p>Enter one or more IPv4 CIDR blocks in decimal dotted-quad notation (for example,
|
|
1700
|
+
* <code> 10.2.0.0/16</code>).</p>
|
|
1689
1701
|
* <p>It must satisfy the following requirements:</p>
|
|
1690
1702
|
* <ul>
|
|
1691
1703
|
* <li>
|
|
@@ -1723,8 +1735,8 @@ export interface RemoteNodeNetwork {
|
|
|
1723
1735
|
* <p>A network CIDR that can contain hybrid nodes.</p>
|
|
1724
1736
|
* <p>These CIDR blocks define the expected IP address range of the hybrid nodes that join
|
|
1725
1737
|
* the cluster. These blocks are typically determined by your network administrator. </p>
|
|
1726
|
-
* <p>Enter one or more IPv4 CIDR blocks in decimal dotted-quad notation (for example,
|
|
1727
|
-
*
|
|
1738
|
+
* <p>Enter one or more IPv4 CIDR blocks in decimal dotted-quad notation (for example,
|
|
1739
|
+
* <code> 10.2.0.0/16</code>).</p>
|
|
1728
1740
|
* <p>It must satisfy the following requirements:</p>
|
|
1729
1741
|
* <ul>
|
|
1730
1742
|
* <li>
|
|
@@ -1764,8 +1776,8 @@ export interface RemoteNodeNetwork {
|
|
|
1764
1776
|
* <p>These CIDR blocks are determined by configuring your Container Network Interface (CNI)
|
|
1765
1777
|
* plugin. We recommend the Calico CNI or Cilium CNI. Note that the Amazon VPC CNI plugin for Kubernetes isn't
|
|
1766
1778
|
* available for on-premises and edge locations.</p>
|
|
1767
|
-
* <p>Enter one or more IPv4 CIDR blocks in decimal dotted-quad notation (for example,
|
|
1768
|
-
*
|
|
1779
|
+
* <p>Enter one or more IPv4 CIDR blocks in decimal dotted-quad notation (for example,
|
|
1780
|
+
* <code> 10.2.0.0/16</code>).</p>
|
|
1769
1781
|
* <p>It must satisfy the following requirements:</p>
|
|
1770
1782
|
* <ul>
|
|
1771
1783
|
* <li>
|
|
@@ -1786,8 +1798,8 @@ export interface RemotePodNetwork {
|
|
|
1786
1798
|
* <p>These CIDR blocks are determined by configuring your Container Network Interface (CNI)
|
|
1787
1799
|
* plugin. We recommend the Calico CNI or Cilium CNI. Note that the Amazon VPC CNI plugin for Kubernetes isn't
|
|
1788
1800
|
* available for on-premises and edge locations.</p>
|
|
1789
|
-
* <p>Enter one or more IPv4 CIDR blocks in decimal dotted-quad notation (for example,
|
|
1790
|
-
*
|
|
1801
|
+
* <p>Enter one or more IPv4 CIDR blocks in decimal dotted-quad notation (for example,
|
|
1802
|
+
* <code> 10.2.0.0/16</code>).</p>
|
|
1791
1803
|
* <p>It must satisfy the following requirements:</p>
|
|
1792
1804
|
* <ul>
|
|
1793
1805
|
* <li>
|
|
@@ -1814,8 +1826,8 @@ export interface RemoteNetworkConfigRequest {
|
|
|
1814
1826
|
* <p>The list of network CIDRs that can contain hybrid nodes.</p>
|
|
1815
1827
|
* <p>These CIDR blocks define the expected IP address range of the hybrid nodes that join
|
|
1816
1828
|
* the cluster. These blocks are typically determined by your network administrator. </p>
|
|
1817
|
-
* <p>Enter one or more IPv4 CIDR blocks in decimal dotted-quad notation (for example,
|
|
1818
|
-
*
|
|
1829
|
+
* <p>Enter one or more IPv4 CIDR blocks in decimal dotted-quad notation (for example,
|
|
1830
|
+
* <code> 10.2.0.0/16</code>).</p>
|
|
1819
1831
|
* <p>It must satisfy the following requirements:</p>
|
|
1820
1832
|
* <ul>
|
|
1821
1833
|
* <li>
|
|
@@ -1850,12 +1862,13 @@ export interface RemoteNetworkConfigRequest {
|
|
|
1850
1862
|
*/
|
|
1851
1863
|
remoteNodeNetworks?: RemoteNodeNetwork[] | undefined;
|
|
1852
1864
|
/**
|
|
1853
|
-
* <p>The list of network CIDRs that can contain pods that run Kubernetes webhooks on hybrid
|
|
1865
|
+
* <p>The list of network CIDRs that can contain pods that run Kubernetes webhooks on hybrid
|
|
1866
|
+
* nodes.</p>
|
|
1854
1867
|
* <p>These CIDR blocks are determined by configuring your Container Network Interface (CNI)
|
|
1855
1868
|
* plugin. We recommend the Calico CNI or Cilium CNI. Note that the Amazon VPC CNI plugin for Kubernetes isn't
|
|
1856
1869
|
* available for on-premises and edge locations.</p>
|
|
1857
|
-
* <p>Enter one or more IPv4 CIDR blocks in decimal dotted-quad notation (for example,
|
|
1858
|
-
*
|
|
1870
|
+
* <p>Enter one or more IPv4 CIDR blocks in decimal dotted-quad notation (for example,
|
|
1871
|
+
* <code> 10.2.0.0/16</code>).</p>
|
|
1859
1872
|
* <p>It must satisfy the following requirements:</p>
|
|
1860
1873
|
* <ul>
|
|
1861
1874
|
* <li>
|
|
@@ -1873,24 +1886,23 @@ export interface RemoteNetworkConfigRequest {
|
|
|
1873
1886
|
remotePodNetworks?: RemotePodNetwork[] | undefined;
|
|
1874
1887
|
}
|
|
1875
1888
|
/**
|
|
1876
|
-
* <p>An object representing the VPC configuration to use for an Amazon EKS
|
|
1877
|
-
* cluster.</p>
|
|
1889
|
+
* <p>An object representing the VPC configuration to use for an Amazon EKS cluster.</p>
|
|
1878
1890
|
* @public
|
|
1879
1891
|
*/
|
|
1880
1892
|
export interface VpcConfigRequest {
|
|
1881
1893
|
/**
|
|
1882
|
-
* <p>Specify subnets for your Amazon EKS nodes. Amazon EKS creates
|
|
1883
|
-
*
|
|
1884
|
-
*
|
|
1894
|
+
* <p>Specify subnets for your Amazon EKS nodes. Amazon EKS creates cross-account elastic network
|
|
1895
|
+
* interfaces in these subnets to allow communication between your nodes and the Kubernetes
|
|
1896
|
+
* control plane.</p>
|
|
1885
1897
|
* @public
|
|
1886
1898
|
*/
|
|
1887
1899
|
subnetIds?: string[] | undefined;
|
|
1888
1900
|
/**
|
|
1889
1901
|
* <p>Specify one or more security groups for the cross-account elastic network interfaces
|
|
1890
|
-
* that Amazon EKS creates to use that allow communication between your nodes and
|
|
1891
|
-
*
|
|
1892
|
-
*
|
|
1893
|
-
*
|
|
1902
|
+
* that Amazon EKS creates to use that allow communication between your nodes and the Kubernetes
|
|
1903
|
+
* control plane. If you don't specify any security groups, then familiarize yourself with
|
|
1904
|
+
* the difference between Amazon EKS defaults for clusters deployed with Kubernetes. For more
|
|
1905
|
+
* information, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/sec-group-reqs.html">Amazon EKS security group
|
|
1894
1906
|
* considerations</a> in the <i>
|
|
1895
1907
|
* <i>Amazon EKS User Guide</i>
|
|
1896
1908
|
* </i>.</p>
|
|
@@ -1902,8 +1914,8 @@ export interface VpcConfigRequest {
|
|
|
1902
1914
|
* API server endpoint. If you disable public access, your cluster's Kubernetes API server can
|
|
1903
1915
|
* only receive requests from within the cluster VPC. The default value for this parameter
|
|
1904
1916
|
* is <code>true</code>, which enables public access for your Kubernetes API server. For more
|
|
1905
|
-
* information, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/cluster-endpoint.html">Amazon EKS cluster endpoint access control</a> in
|
|
1906
|
-
*
|
|
1917
|
+
* information, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/cluster-endpoint.html">Amazon EKS cluster endpoint access control</a> in the
|
|
1918
|
+
* <i>
|
|
1907
1919
|
* <i>Amazon EKS User Guide</i>
|
|
1908
1920
|
* </i>.</p>
|
|
1909
1921
|
* @public
|
|
@@ -1914,11 +1926,10 @@ export interface VpcConfigRequest {
|
|
|
1914
1926
|
* API server endpoint. If you enable private access, Kubernetes API requests from within your
|
|
1915
1927
|
* cluster's VPC use the private VPC endpoint. The default value for this parameter is
|
|
1916
1928
|
* <code>false</code>, which disables private access for your Kubernetes API server. If you
|
|
1917
|
-
* disable private access and you have nodes or Fargate pods in the
|
|
1918
|
-
*
|
|
1919
|
-
*
|
|
1920
|
-
*
|
|
1921
|
-
* the <i>
|
|
1929
|
+
* disable private access and you have nodes or Fargate pods in the cluster, then
|
|
1930
|
+
* ensure that <code>publicAccessCidrs</code> includes the necessary CIDR blocks for
|
|
1931
|
+
* communication with the nodes or Fargate pods. For more information, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/cluster-endpoint.html">Amazon EKS cluster
|
|
1932
|
+
* endpoint access control</a> in the <i>
|
|
1922
1933
|
* <i>Amazon EKS User Guide</i>
|
|
1923
1934
|
* </i>.</p>
|
|
1924
1935
|
* @public
|
|
@@ -1929,8 +1940,7 @@ export interface VpcConfigRequest {
|
|
|
1929
1940
|
* endpoint. Communication to the endpoint from addresses outside of the CIDR blocks that
|
|
1930
1941
|
* you specify is denied. The default value is <code>0.0.0.0/0</code>. If you've disabled
|
|
1931
1942
|
* private endpoint access, make sure that you specify the necessary CIDR blocks for every
|
|
1932
|
-
* node and Fargate
|
|
1933
|
-
* <code>Pod</code> in the cluster. For more information, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/cluster-endpoint.html">Amazon EKS cluster
|
|
1943
|
+
* node and Fargate <code>Pod</code> in the cluster. For more information, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/cluster-endpoint.html">Amazon EKS cluster
|
|
1934
1944
|
* endpoint access control</a> in the <i>
|
|
1935
1945
|
* <i>Amazon EKS User Guide</i>
|
|
1936
1946
|
* </i>.</p>
|
|
@@ -1939,18 +1949,26 @@ export interface VpcConfigRequest {
|
|
|
1939
1949
|
publicAccessCidrs?: string[] | undefined;
|
|
1940
1950
|
}
|
|
1941
1951
|
/**
|
|
1942
|
-
* <p>Indicates the current configuration of the block storage capability on your EKS Auto
|
|
1952
|
+
* <p>Indicates the current configuration of the block storage capability on your EKS Auto
|
|
1953
|
+
* Mode cluster. For example, if the capability is enabled or disabled. If the block
|
|
1954
|
+
* storage capability is enabled, EKS Auto Mode will create and delete EBS volumes in your
|
|
1955
|
+
* Amazon Web Services account. For more information, see EKS Auto Mode block storage capability in the
|
|
1956
|
+
* <i>Amazon EKS User Guide</i>.</p>
|
|
1943
1957
|
* @public
|
|
1944
1958
|
*/
|
|
1945
1959
|
export interface BlockStorage {
|
|
1946
1960
|
/**
|
|
1947
|
-
* <p>Indicates if the block storage capability is enabled on your EKS Auto Mode cluster. If
|
|
1961
|
+
* <p>Indicates if the block storage capability is enabled on your EKS Auto Mode cluster. If
|
|
1962
|
+
* the block storage capability is enabled, EKS Auto Mode will create and delete EBS
|
|
1963
|
+
* volumes in your Amazon Web Services account.</p>
|
|
1948
1964
|
* @public
|
|
1949
1965
|
*/
|
|
1950
1966
|
enabled?: boolean | undefined;
|
|
1951
1967
|
}
|
|
1952
1968
|
/**
|
|
1953
|
-
* <p>Request to update the configuration of the storage capability of your EKS Auto Mode
|
|
1969
|
+
* <p>Request to update the configuration of the storage capability of your EKS Auto Mode
|
|
1970
|
+
* cluster. For example, enable the capability. For more information, see EKS Auto Mode
|
|
1971
|
+
* block storage capability in the <i>Amazon EKS User Guide</i>.</p>
|
|
1954
1972
|
* @public
|
|
1955
1973
|
*/
|
|
1956
1974
|
export interface StorageConfigRequest {
|
|
@@ -1973,7 +1991,10 @@ export declare const SupportType: {
|
|
|
1973
1991
|
*/
|
|
1974
1992
|
export type SupportType = (typeof SupportType)[keyof typeof SupportType];
|
|
1975
1993
|
/**
|
|
1976
|
-
* <p>The support policy to use for the cluster. Extended support allows you to remain on
|
|
1994
|
+
* <p>The support policy to use for the cluster. Extended support allows you to remain on
|
|
1995
|
+
* specific Kubernetes versions for longer. Clusters in extended support have higher costs. The
|
|
1996
|
+
* default value is <code>EXTENDED</code>. Use <code>STANDARD</code> to disable extended
|
|
1997
|
+
* support.</p>
|
|
1977
1998
|
* <p>
|
|
1978
1999
|
* <a href="https://docs.aws.amazon.com/eks/latest/userguide/extended-support-control.html">Learn more about EKS Extended Support in the <i>Amazon EKS User Guide</i>.</a>
|
|
1979
2000
|
* </p>
|
|
@@ -1981,7 +2002,9 @@ export type SupportType = (typeof SupportType)[keyof typeof SupportType];
|
|
|
1981
2002
|
*/
|
|
1982
2003
|
export interface UpgradePolicyRequest {
|
|
1983
2004
|
/**
|
|
1984
|
-
* <p>If the cluster is set to <code>EXTENDED</code>, it will enter extended support at the
|
|
2005
|
+
* <p>If the cluster is set to <code>EXTENDED</code>, it will enter extended support at the
|
|
2006
|
+
* end of standard support. If the cluster is set to <code>STANDARD</code>, it will be
|
|
2007
|
+
* automatically upgraded at the end of standard support.</p>
|
|
1985
2008
|
* <p>
|
|
1986
2009
|
* <a href="https://docs.aws.amazon.com/eks/latest/userguide/extended-support-control.html">Learn more about EKS Extended Support in the <i>Amazon EKS User Guide</i>.</a>
|
|
1987
2010
|
* </p>
|
|
@@ -2022,19 +2045,17 @@ export interface CreateClusterRequest {
|
|
|
2022
2045
|
*/
|
|
2023
2046
|
version?: string | undefined;
|
|
2024
2047
|
/**
|
|
2025
|
-
* <p>The Amazon Resource Name (ARN) of the IAM role that provides permissions for the Kubernetes
|
|
2026
|
-
*
|
|
2027
|
-
*
|
|
2028
|
-
* Role</a> in the <i>
|
|
2048
|
+
* <p>The Amazon Resource Name (ARN) of the IAM role that provides permissions for the Kubernetes control plane
|
|
2049
|
+
* to make calls to Amazon Web Services API operations on your behalf. For more information, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/service_IAM_role.html">Amazon EKS Service
|
|
2050
|
+
* IAM Role</a> in the <i>
|
|
2029
2051
|
* <i>Amazon EKS User Guide</i>
|
|
2030
2052
|
* </i>.</p>
|
|
2031
2053
|
* @public
|
|
2032
2054
|
*/
|
|
2033
2055
|
roleArn: string | undefined;
|
|
2034
2056
|
/**
|
|
2035
|
-
* <p>The VPC configuration that's used by the cluster control plane. Amazon EKS VPC
|
|
2036
|
-
*
|
|
2037
|
-
* see <a href="https://docs.aws.amazon.com/eks/latest/userguide/network_reqs.html">Cluster VPC
|
|
2057
|
+
* <p>The VPC configuration that's used by the cluster control plane. Amazon EKS VPC resources
|
|
2058
|
+
* have specific requirements to work properly with Kubernetes. For more information, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/network_reqs.html">Cluster VPC
|
|
2038
2059
|
* Considerations</a> and <a href="https://docs.aws.amazon.com/eks/latest/userguide/sec-group-reqs.html">Cluster Security Group Considerations</a> in the
|
|
2039
2060
|
* <i>Amazon EKS User Guide</i>. You must specify at least two subnets. You can specify up to five
|
|
2040
2061
|
* security groups. However, we recommend that you use a dedicated security group for your
|
|
@@ -2048,17 +2069,16 @@ export interface CreateClusterRequest {
|
|
|
2048
2069
|
*/
|
|
2049
2070
|
kubernetesNetworkConfig?: KubernetesNetworkConfigRequest | undefined;
|
|
2050
2071
|
/**
|
|
2051
|
-
* <p>Enable or disable exporting the Kubernetes control plane logs for your cluster to CloudWatch Logs
|
|
2052
|
-
*
|
|
2053
|
-
*
|
|
2054
|
-
*
|
|
2055
|
-
*
|
|
2072
|
+
* <p>Enable or disable exporting the Kubernetes control plane logs for your cluster to CloudWatch Logs .
|
|
2073
|
+
* By default, cluster control plane logs aren't exported to CloudWatch Logs . For more information,
|
|
2074
|
+
* see <a href="https://docs.aws.amazon.com/eks/latest/userguide/control-plane-logs.html">Amazon EKS
|
|
2075
|
+
* Cluster control plane logs</a> in the
|
|
2076
|
+
* <i>
|
|
2056
2077
|
* <i>Amazon EKS User Guide</i>
|
|
2057
2078
|
* </i>.</p>
|
|
2058
2079
|
* <note>
|
|
2059
|
-
* <p>CloudWatch Logs ingestion, archive storage, and data scanning rates apply to
|
|
2060
|
-
*
|
|
2061
|
-
* Pricing</a>.</p>
|
|
2080
|
+
* <p>CloudWatch Logs ingestion, archive storage, and data scanning rates apply to exported
|
|
2081
|
+
* control plane logs. For more information, see <a href="http://aws.amazon.com/cloudwatch/pricing/">CloudWatch Pricing</a>.</p>
|
|
2062
2082
|
* </note>
|
|
2063
2083
|
* @public
|
|
2064
2084
|
*/
|
|
@@ -2082,12 +2102,10 @@ export interface CreateClusterRequest {
|
|
|
2082
2102
|
*/
|
|
2083
2103
|
encryptionConfig?: EncryptionConfig[] | undefined;
|
|
2084
2104
|
/**
|
|
2085
|
-
* <p>An object representing the configuration of your local Amazon EKS cluster on
|
|
2086
|
-
*
|
|
2087
|
-
*
|
|
2088
|
-
*
|
|
2089
|
-
* <i>Amazon EKS User Guide</i>. This object isn't available for creating Amazon EKS clusters
|
|
2090
|
-
* on the Amazon Web Services cloud.</p>
|
|
2105
|
+
* <p>An object representing the configuration of your local Amazon EKS cluster on an Amazon Web Services
|
|
2106
|
+
* Outpost. Before creating a local cluster on an Outpost, review <a href="https://docs.aws.amazon.com/eks/latest/userguide/eks-outposts-local-cluster-overview.html">Local clusters
|
|
2107
|
+
* for Amazon EKS on Amazon Web Services Outposts</a> in the <i>Amazon EKS User Guide</i>. This object isn't
|
|
2108
|
+
* available for creating Amazon EKS clusters on the Amazon Web Services cloud.</p>
|
|
2091
2109
|
* @public
|
|
2092
2110
|
*/
|
|
2093
2111
|
outpostConfig?: OutpostConfigRequest | undefined;
|
|
@@ -2097,32 +2115,35 @@ export interface CreateClusterRequest {
|
|
|
2097
2115
|
*/
|
|
2098
2116
|
accessConfig?: CreateAccessConfigRequest | undefined;
|
|
2099
2117
|
/**
|
|
2100
|
-
* <p>If you set this value to <code>False</code> when creating a cluster, the default
|
|
2118
|
+
* <p>If you set this value to <code>False</code> when creating a cluster, the default
|
|
2119
|
+
* networking add-ons will not be installed.</p>
|
|
2101
2120
|
* <p>The default networking addons include vpc-cni, coredns, and kube-proxy.</p>
|
|
2102
|
-
* <p>Use this option when you plan to install third-party alternative add-ons or
|
|
2121
|
+
* <p>Use this option when you plan to install third-party alternative add-ons or
|
|
2122
|
+
* self-manage the default networking add-ons.</p>
|
|
2103
2123
|
* @public
|
|
2104
2124
|
*/
|
|
2105
2125
|
bootstrapSelfManagedAddons?: boolean | undefined;
|
|
2106
2126
|
/**
|
|
2107
|
-
* <p>New clusters, by default, have extended support enabled. You can disable extended
|
|
2127
|
+
* <p>New clusters, by default, have extended support enabled. You can disable extended
|
|
2128
|
+
* support when creating a cluster by setting this value to <code>STANDARD</code>.</p>
|
|
2108
2129
|
* @public
|
|
2109
2130
|
*/
|
|
2110
2131
|
upgradePolicy?: UpgradePolicyRequest | undefined;
|
|
2111
2132
|
/**
|
|
2112
2133
|
* <p>Enable or disable ARC zonal shift for the cluster. If zonal shift is enabled, Amazon Web Services
|
|
2113
2134
|
* configures zonal autoshift for the cluster.</p>
|
|
2114
|
-
* <p>Zonal shift is a feature of
|
|
2115
|
-
*
|
|
2116
|
-
*
|
|
2117
|
-
*
|
|
2118
|
-
* <p>You can start a zonal shift for an Amazon EKS cluster, or you can allow Amazon Web Services to do it for
|
|
2119
|
-
* by enabling <i>zonal autoshift</i>. This shift updates the flow of
|
|
2135
|
+
* <p>Zonal shift is a feature of Amazon Application Recovery Controller (ARC). ARC zonal shift is designed to be a
|
|
2136
|
+
* temporary measure that allows you to move traffic for a resource away from an impaired
|
|
2137
|
+
* AZ until the zonal shift expires or you cancel it. You can extend the zonal shift if
|
|
2138
|
+
* necessary.</p>
|
|
2139
|
+
* <p>You can start a zonal shift for an Amazon EKS cluster, or you can allow Amazon Web Services to do it for
|
|
2140
|
+
* you by enabling <i>zonal autoshift</i>. This shift updates the flow of
|
|
2120
2141
|
* east-to-west network traffic in your cluster to only consider network endpoints for Pods
|
|
2121
2142
|
* running on worker nodes in healthy AZs. Additionally, any ALB or NLB handling ingress
|
|
2122
|
-
* traffic for applications in your Amazon EKS cluster will automatically route traffic to
|
|
2123
|
-
* the healthy AZs. For more information about zonal shift in EKS, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/zone-shift.html">Learn about
|
|
2124
|
-
* Zonal Shift in Amazon EKS</a> in the
|
|
2125
|
-
*
|
|
2143
|
+
* traffic for applications in your Amazon EKS cluster will automatically route traffic to
|
|
2144
|
+
* targets in the healthy AZs. For more information about zonal shift in EKS, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/zone-shift.html">Learn about
|
|
2145
|
+
* Amazon Application Recovery Controller (ARC) Zonal Shift in Amazon EKS</a> in the
|
|
2146
|
+
* <i>
|
|
2126
2147
|
* <i>Amazon EKS User Guide</i>
|
|
2127
2148
|
* </i>.</p>
|
|
2128
2149
|
* @public
|
|
@@ -2135,12 +2156,16 @@ export interface CreateClusterRequest {
|
|
|
2135
2156
|
*/
|
|
2136
2157
|
remoteNetworkConfig?: RemoteNetworkConfigRequest | undefined;
|
|
2137
2158
|
/**
|
|
2138
|
-
* <p>Enable or disable the compute capability of EKS Auto Mode when creating your EKS Auto
|
|
2159
|
+
* <p>Enable or disable the compute capability of EKS Auto Mode when creating your EKS Auto
|
|
2160
|
+
* Mode cluster. If the compute capability is enabled, EKS Auto Mode will create and delete
|
|
2161
|
+
* EC2 Managed Instances in your Amazon Web Services account</p>
|
|
2139
2162
|
* @public
|
|
2140
2163
|
*/
|
|
2141
2164
|
computeConfig?: ComputeConfigRequest | undefined;
|
|
2142
2165
|
/**
|
|
2143
|
-
* <p>Enable or disable the block storage capability of EKS Auto Mode when creating your EKS
|
|
2166
|
+
* <p>Enable or disable the block storage capability of EKS Auto Mode when creating your EKS
|
|
2167
|
+
* Auto Mode cluster. If the block storage capability is enabled, EKS Auto Mode will create
|
|
2168
|
+
* and delete EBS volumes in your Amazon Web Services account.</p>
|
|
2144
2169
|
* @public
|
|
2145
2170
|
*/
|
|
2146
2171
|
storageConfig?: StorageConfigRequest | undefined;
|
|
@@ -2160,22 +2185,27 @@ export interface Certificate {
|
|
|
2160
2185
|
data?: string | undefined;
|
|
2161
2186
|
}
|
|
2162
2187
|
/**
|
|
2163
|
-
* <p>Indicates the status of the request to update the compute capability of your EKS Auto
|
|
2188
|
+
* <p>Indicates the status of the request to update the compute capability of your EKS Auto
|
|
2189
|
+
* Mode cluster.</p>
|
|
2164
2190
|
* @public
|
|
2165
2191
|
*/
|
|
2166
2192
|
export interface ComputeConfigResponse {
|
|
2167
2193
|
/**
|
|
2168
|
-
* <p>Indicates if the compute capability is enabled on your EKS Auto Mode cluster. If the
|
|
2194
|
+
* <p>Indicates if the compute capability is enabled on your EKS Auto Mode cluster. If the
|
|
2195
|
+
* compute capability is enabled, EKS Auto Mode will create and delete EC2 Managed
|
|
2196
|
+
* Instances in your Amazon Web Services account.</p>
|
|
2169
2197
|
* @public
|
|
2170
2198
|
*/
|
|
2171
2199
|
enabled?: boolean | undefined;
|
|
2172
2200
|
/**
|
|
2173
|
-
* <p>Indicates the current configuration of node pools in your EKS Auto Mode cluster. For
|
|
2201
|
+
* <p>Indicates the current configuration of node pools in your EKS Auto Mode cluster. For
|
|
2202
|
+
* more information, see EKS Auto Mode Node Pools in the <i>Amazon EKS User Guide</i>.</p>
|
|
2174
2203
|
* @public
|
|
2175
2204
|
*/
|
|
2176
2205
|
nodePools?: string[] | undefined;
|
|
2177
2206
|
/**
|
|
2178
|
-
* <p>The ARN of the IAM Role EKS will assign to EC2 Managed Instances in your EKS Auto
|
|
2207
|
+
* <p>The ARN of the IAM Role EKS will assign to EC2 Managed Instances in your EKS Auto
|
|
2208
|
+
* Mode cluster.</p>
|
|
2179
2209
|
* @public
|
|
2180
2210
|
*/
|
|
2181
2211
|
nodeRoleArn?: string | undefined;
|
|
@@ -2335,15 +2365,15 @@ export interface KubernetesNetworkConfigResponse {
|
|
|
2335
2365
|
*/
|
|
2336
2366
|
ipFamily?: IpFamily | undefined;
|
|
2337
2367
|
/**
|
|
2338
|
-
* <p>Indicates the current configuration of the load balancing capability on your EKS Auto
|
|
2368
|
+
* <p>Indicates the current configuration of the load balancing capability on your EKS Auto
|
|
2369
|
+
* Mode cluster. For example, if the capability is enabled or disabled.</p>
|
|
2339
2370
|
* @public
|
|
2340
2371
|
*/
|
|
2341
2372
|
elasticLoadBalancing?: ElasticLoadBalancing | undefined;
|
|
2342
2373
|
}
|
|
2343
2374
|
/**
|
|
2344
2375
|
* <p>The placement configuration for all the control plane instances of your local Amazon EKS
|
|
2345
|
-
*
|
|
2346
|
-
* <a href="https://docs.aws.amazon.com/eks/latest/userguide/eks-outposts-capacity-considerations.html">Capacity considerations</a> in the <i>Amazon EKS User Guide</i>.</p>
|
|
2376
|
+
* cluster on an Amazon Web Services Outpost. For more information, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/eks-outposts-capacity-considerations.html">Capacity considerations</a> in the <i>Amazon EKS User Guide</i>.</p>
|
|
2347
2377
|
* @public
|
|
2348
2378
|
*/
|
|
2349
2379
|
export interface ControlPlanePlacementResponse {
|
|
@@ -2354,28 +2384,26 @@ export interface ControlPlanePlacementResponse {
|
|
|
2354
2384
|
groupName?: string | undefined;
|
|
2355
2385
|
}
|
|
2356
2386
|
/**
|
|
2357
|
-
* <p>An object representing the configuration of your local Amazon EKS cluster on
|
|
2358
|
-
*
|
|
2359
|
-
* on the Amazon Web Services cloud.</p>
|
|
2387
|
+
* <p>An object representing the configuration of your local Amazon EKS cluster on an Amazon Web Services
|
|
2388
|
+
* Outpost. This API isn't available for Amazon EKS clusters on the Amazon Web Services cloud.</p>
|
|
2360
2389
|
* @public
|
|
2361
2390
|
*/
|
|
2362
2391
|
export interface OutpostConfigResponse {
|
|
2363
2392
|
/**
|
|
2364
|
-
* <p>The ARN of the Outpost that you specified for use with your local Amazon EKS
|
|
2365
|
-
*
|
|
2393
|
+
* <p>The ARN of the Outpost that you specified for use with your local Amazon EKS cluster on
|
|
2394
|
+
* Outposts.</p>
|
|
2366
2395
|
* @public
|
|
2367
2396
|
*/
|
|
2368
2397
|
outpostArns: string[] | undefined;
|
|
2369
2398
|
/**
|
|
2370
|
-
* <p>The Amazon EC2 instance type used for the control plane. The instance type is
|
|
2371
|
-
*
|
|
2399
|
+
* <p>The Amazon EC2 instance type used for the control plane. The instance type is the same for
|
|
2400
|
+
* all control plane instances.</p>
|
|
2372
2401
|
* @public
|
|
2373
2402
|
*/
|
|
2374
2403
|
controlPlaneInstanceType: string | undefined;
|
|
2375
2404
|
/**
|
|
2376
2405
|
* <p>An object representing the placement configuration for all the control plane instances
|
|
2377
|
-
* of your local Amazon EKS cluster on an Amazon Web Services Outpost. For more
|
|
2378
|
-
* information, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/eks-outposts-capacity-considerations.html">Capacity
|
|
2406
|
+
* of your local Amazon EKS cluster on an Amazon Web Services Outpost. For more information, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/eks-outposts-capacity-considerations.html">Capacity
|
|
2379
2407
|
* considerations</a> in the <i>Amazon EKS User Guide</i>.</p>
|
|
2380
2408
|
* @public
|
|
2381
2409
|
*/
|
|
@@ -2393,14 +2421,14 @@ export interface RemoteNetworkConfigResponse {
|
|
|
2393
2421
|
*/
|
|
2394
2422
|
remoteNodeNetworks?: RemoteNodeNetwork[] | undefined;
|
|
2395
2423
|
/**
|
|
2396
|
-
* <p>The list of network CIDRs that can contain pods that run Kubernetes webhooks on hybrid
|
|
2424
|
+
* <p>The list of network CIDRs that can contain pods that run Kubernetes webhooks on hybrid
|
|
2425
|
+
* nodes.</p>
|
|
2397
2426
|
* @public
|
|
2398
2427
|
*/
|
|
2399
2428
|
remotePodNetworks?: RemotePodNetwork[] | undefined;
|
|
2400
2429
|
}
|
|
2401
2430
|
/**
|
|
2402
|
-
* <p>An object representing an Amazon EKS cluster VPC configuration
|
|
2403
|
-
* response.</p>
|
|
2431
|
+
* <p>An object representing an Amazon EKS cluster VPC configuration response.</p>
|
|
2404
2432
|
* @public
|
|
2405
2433
|
*/
|
|
2406
2434
|
export interface VpcConfigResponse {
|
|
@@ -2416,9 +2444,8 @@ export interface VpcConfigResponse {
|
|
|
2416
2444
|
*/
|
|
2417
2445
|
securityGroupIds?: string[] | undefined;
|
|
2418
2446
|
/**
|
|
2419
|
-
* <p>The cluster security group that was created by Amazon EKS for the cluster.
|
|
2420
|
-
*
|
|
2421
|
-
* communication.</p>
|
|
2447
|
+
* <p>The cluster security group that was created by Amazon EKS for the cluster. Managed node
|
|
2448
|
+
* groups use this security group for control-plane-to-data-plane communication.</p>
|
|
2422
2449
|
* @public
|
|
2423
2450
|
*/
|
|
2424
2451
|
clusterSecurityGroupId?: string | undefined;
|
|
@@ -2433,15 +2460,15 @@ export interface VpcConfigResponse {
|
|
|
2433
2460
|
*/
|
|
2434
2461
|
endpointPublicAccess?: boolean | undefined;
|
|
2435
2462
|
/**
|
|
2436
|
-
* <p>This parameter indicates whether the Amazon EKS private API server endpoint is
|
|
2437
|
-
*
|
|
2438
|
-
*
|
|
2439
|
-
*
|
|
2440
|
-
*
|
|
2441
|
-
*
|
|
2442
|
-
*
|
|
2443
|
-
*
|
|
2444
|
-
*
|
|
2463
|
+
* <p>This parameter indicates whether the Amazon EKS private API server endpoint is enabled. If
|
|
2464
|
+
* the Amazon EKS private API server endpoint is enabled, Kubernetes API requests that originate from
|
|
2465
|
+
* within your cluster's VPC use the private VPC endpoint instead of traversing the
|
|
2466
|
+
* internet. If this value is disabled and you have nodes or Fargate pods in the
|
|
2467
|
+
* cluster, then ensure that <code>publicAccessCidrs</code> includes the necessary CIDR
|
|
2468
|
+
* blocks for communication with the nodes or Fargate pods. For more information, see
|
|
2469
|
+
* <a href="https://docs.aws.amazon.com/eks/latest/userguide/cluster-endpoint.html">Amazon EKS
|
|
2470
|
+
* cluster endpoint access control</a> in the
|
|
2471
|
+
* <i>
|
|
2445
2472
|
* <i>Amazon EKS User Guide</i>
|
|
2446
2473
|
* </i>.</p>
|
|
2447
2474
|
* @public
|
|
@@ -2471,18 +2498,21 @@ export declare const ClusterStatus: {
|
|
|
2471
2498
|
*/
|
|
2472
2499
|
export type ClusterStatus = (typeof ClusterStatus)[keyof typeof ClusterStatus];
|
|
2473
2500
|
/**
|
|
2474
|
-
* <p>Indicates the status of the request to update the block storage capability of your EKS
|
|
2501
|
+
* <p>Indicates the status of the request to update the block storage capability of your EKS
|
|
2502
|
+
* Auto Mode cluster.</p>
|
|
2475
2503
|
* @public
|
|
2476
2504
|
*/
|
|
2477
2505
|
export interface StorageConfigResponse {
|
|
2478
2506
|
/**
|
|
2479
|
-
* <p>Indicates the current configuration of the block storage capability on your EKS Auto
|
|
2507
|
+
* <p>Indicates the current configuration of the block storage capability on your EKS Auto
|
|
2508
|
+
* Mode cluster. For example, if the capability is enabled or disabled.</p>
|
|
2480
2509
|
* @public
|
|
2481
2510
|
*/
|
|
2482
2511
|
blockStorage?: BlockStorage | undefined;
|
|
2483
2512
|
}
|
|
2484
2513
|
/**
|
|
2485
|
-
* <p>This value indicates if extended support is enabled or disabled for the
|
|
2514
|
+
* <p>This value indicates if extended support is enabled or disabled for the
|
|
2515
|
+
* cluster.</p>
|
|
2486
2516
|
* <p>
|
|
2487
2517
|
* <a href="https://docs.aws.amazon.com/eks/latest/userguide/extended-support-control.html">Learn more about EKS Extended Support in the <i>Amazon EKS User Guide</i>.</a>
|
|
2488
2518
|
* </p>
|
|
@@ -2490,7 +2520,9 @@ export interface StorageConfigResponse {
|
|
|
2490
2520
|
*/
|
|
2491
2521
|
export interface UpgradePolicyResponse {
|
|
2492
2522
|
/**
|
|
2493
|
-
* <p>If the cluster is set to <code>EXTENDED</code>, it will enter extended support at the
|
|
2523
|
+
* <p>If the cluster is set to <code>EXTENDED</code>, it will enter extended support at the
|
|
2524
|
+
* end of standard support. If the cluster is set to <code>STANDARD</code>, it will be
|
|
2525
|
+
* automatically upgraded at the end of standard support.</p>
|
|
2494
2526
|
* <p>
|
|
2495
2527
|
* <a href="https://docs.aws.amazon.com/eks/latest/userguide/extended-support-control.html">Learn more about EKS Extended Support in the <i>Amazon EKS User Guide</i>.</a>
|
|
2496
2528
|
* </p>
|
|
@@ -2540,15 +2572,14 @@ export interface Cluster {
|
|
|
2540
2572
|
*/
|
|
2541
2573
|
endpoint?: string | undefined;
|
|
2542
2574
|
/**
|
|
2543
|
-
* <p>The Amazon Resource Name (ARN) of the IAM role that provides permissions for the Kubernetes
|
|
2544
|
-
*
|
|
2575
|
+
* <p>The Amazon Resource Name (ARN) of the IAM role that provides permissions for the Kubernetes control plane
|
|
2576
|
+
* to make calls to Amazon Web Services API operations on your behalf.</p>
|
|
2545
2577
|
* @public
|
|
2546
2578
|
*/
|
|
2547
2579
|
roleArn?: string | undefined;
|
|
2548
2580
|
/**
|
|
2549
|
-
* <p>The VPC configuration used by the cluster control plane. Amazon EKS VPC
|
|
2550
|
-
*
|
|
2551
|
-
* see <a href="https://docs.aws.amazon.com/eks/latest/userguide/network_reqs.html">Cluster VPC
|
|
2581
|
+
* <p>The VPC configuration used by the cluster control plane. Amazon EKS VPC resources have
|
|
2582
|
+
* specific requirements to work properly with Kubernetes. For more information, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/network_reqs.html">Cluster VPC
|
|
2552
2583
|
* considerations</a> and <a href="https://docs.aws.amazon.com/eks/latest/userguide/sec-group-reqs.html">Cluster security group considerations</a> in the
|
|
2553
2584
|
* <i>Amazon EKS User Guide</i>.</p>
|
|
2554
2585
|
* @public
|
|
@@ -2586,8 +2617,8 @@ export interface Cluster {
|
|
|
2586
2617
|
*/
|
|
2587
2618
|
clientRequestToken?: string | undefined;
|
|
2588
2619
|
/**
|
|
2589
|
-
* <p>The platform version of your Amazon EKS cluster. For more information about
|
|
2590
|
-
*
|
|
2620
|
+
* <p>The platform version of your Amazon EKS cluster. For more information about clusters
|
|
2621
|
+
* deployed on the Amazon Web Services Cloud, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/platform-versions.html">Platform
|
|
2591
2622
|
* versions</a> in the <i>
|
|
2592
2623
|
* <i>Amazon EKS User Guide</i>
|
|
2593
2624
|
* </i>. For more information
|
|
@@ -2616,9 +2647,8 @@ export interface Cluster {
|
|
|
2616
2647
|
*/
|
|
2617
2648
|
connectorConfig?: ConnectorConfigResponse | undefined;
|
|
2618
2649
|
/**
|
|
2619
|
-
* <p>The ID of your local Amazon EKS cluster on an Amazon Web Services Outpost. This
|
|
2620
|
-
*
|
|
2621
|
-
* cloud.</p>
|
|
2650
|
+
* <p>The ID of your local Amazon EKS cluster on an Amazon Web Services Outpost. This property isn't available
|
|
2651
|
+
* for an Amazon EKS cluster on the Amazon Web Services cloud.</p>
|
|
2622
2652
|
* @public
|
|
2623
2653
|
*/
|
|
2624
2654
|
id?: string | undefined;
|
|
@@ -2628,9 +2658,8 @@ export interface Cluster {
|
|
|
2628
2658
|
*/
|
|
2629
2659
|
health?: ClusterHealth | undefined;
|
|
2630
2660
|
/**
|
|
2631
|
-
* <p>An object representing the configuration of your local Amazon EKS cluster on
|
|
2632
|
-
*
|
|
2633
|
-
* cloud.</p>
|
|
2661
|
+
* <p>An object representing the configuration of your local Amazon EKS cluster on an Amazon Web Services
|
|
2662
|
+
* Outpost. This object isn't available for clusters on the Amazon Web Services cloud.</p>
|
|
2634
2663
|
* @public
|
|
2635
2664
|
*/
|
|
2636
2665
|
outpostConfig?: OutpostConfigResponse | undefined;
|
|
@@ -2640,7 +2669,8 @@ export interface Cluster {
|
|
|
2640
2669
|
*/
|
|
2641
2670
|
accessConfig?: AccessConfigResponse | undefined;
|
|
2642
2671
|
/**
|
|
2643
|
-
* <p>This value indicates if extended support is enabled or disabled for the
|
|
2672
|
+
* <p>This value indicates if extended support is enabled or disabled for the
|
|
2673
|
+
* cluster.</p>
|
|
2644
2674
|
* <p>
|
|
2645
2675
|
* <a href="https://docs.aws.amazon.com/eks/latest/userguide/extended-support-control.html">Learn more about EKS Extended Support in the <i>Amazon EKS User Guide</i>.</a>
|
|
2646
2676
|
* </p>
|
|
@@ -2659,12 +2689,20 @@ export interface Cluster {
|
|
|
2659
2689
|
*/
|
|
2660
2690
|
remoteNetworkConfig?: RemoteNetworkConfigResponse | undefined;
|
|
2661
2691
|
/**
|
|
2662
|
-
* <p>Indicates the current configuration of the compute capability on your EKS Auto Mode
|
|
2692
|
+
* <p>Indicates the current configuration of the compute capability on your EKS Auto Mode
|
|
2693
|
+
* cluster. For example, if the capability is enabled or disabled. If the compute
|
|
2694
|
+
* capability is enabled, EKS Auto Mode will create and delete EC2 Managed Instances in
|
|
2695
|
+
* your Amazon Web Services account. For more information, see EKS Auto Mode compute capability in the
|
|
2696
|
+
* <i>Amazon EKS User Guide</i>.</p>
|
|
2663
2697
|
* @public
|
|
2664
2698
|
*/
|
|
2665
2699
|
computeConfig?: ComputeConfigResponse | undefined;
|
|
2666
2700
|
/**
|
|
2667
|
-
* <p>Indicates the current configuration of the block storage capability on your EKS Auto
|
|
2701
|
+
* <p>Indicates the current configuration of the block storage capability on your EKS Auto
|
|
2702
|
+
* Mode cluster. For example, if the capability is enabled or disabled. If the block
|
|
2703
|
+
* storage capability is enabled, EKS Auto Mode will create and delete EBS volumes in your
|
|
2704
|
+
* Amazon Web Services account. For more information, see EKS Auto Mode block storage capability in the
|
|
2705
|
+
* <i>Amazon EKS User Guide</i>.</p>
|
|
2668
2706
|
* @public
|
|
2669
2707
|
*/
|
|
2670
2708
|
storageConfig?: StorageConfigResponse | undefined;
|
|
@@ -2692,10 +2730,9 @@ export declare class ServiceUnavailableException extends __BaseException {
|
|
|
2692
2730
|
constructor(opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>);
|
|
2693
2731
|
}
|
|
2694
2732
|
/**
|
|
2695
|
-
* <p>At least one of your specified cluster subnets is in an Availability Zone that does
|
|
2696
|
-
*
|
|
2697
|
-
*
|
|
2698
|
-
* cluster.</p>
|
|
2733
|
+
* <p>At least one of your specified cluster subnets is in an Availability Zone that does not support
|
|
2734
|
+
* Amazon EKS. The exception output specifies the supported Availability Zones for your account, from which
|
|
2735
|
+
* you can choose subnets for your cluster.</p>
|
|
2699
2736
|
* @public
|
|
2700
2737
|
*/
|
|
2701
2738
|
export declare class UnsupportedAvailabilityZoneException extends __BaseException {
|
|
@@ -2712,8 +2749,8 @@ export declare class UnsupportedAvailabilityZoneException extends __BaseExceptio
|
|
|
2712
2749
|
*/
|
|
2713
2750
|
nodegroupName?: string | undefined;
|
|
2714
2751
|
/**
|
|
2715
|
-
* <p>The supported Availability Zones for your account. Choose subnets in these
|
|
2716
|
-
*
|
|
2752
|
+
* <p>The supported Availability Zones for your account. Choose subnets in these Availability Zones for your
|
|
2753
|
+
* cluster.</p>
|
|
2717
2754
|
* @public
|
|
2718
2755
|
*/
|
|
2719
2756
|
validZones?: string[] | undefined;
|
|
@@ -2816,6 +2853,22 @@ export interface CreateEksAnywhereSubscriptionRequest {
|
|
|
2816
2853
|
*/
|
|
2817
2854
|
tags?: Record<string, string> | undefined;
|
|
2818
2855
|
}
|
|
2856
|
+
/**
|
|
2857
|
+
* <p>An EKS Anywhere license associated with a subscription.</p>
|
|
2858
|
+
* @public
|
|
2859
|
+
*/
|
|
2860
|
+
export interface License {
|
|
2861
|
+
/**
|
|
2862
|
+
* <p>An id associated with an EKS Anywhere subscription license.</p>
|
|
2863
|
+
* @public
|
|
2864
|
+
*/
|
|
2865
|
+
id?: string | undefined;
|
|
2866
|
+
/**
|
|
2867
|
+
* <p>An optional license token that can be used for extended support verification.</p>
|
|
2868
|
+
* @public
|
|
2869
|
+
*/
|
|
2870
|
+
token?: string | undefined;
|
|
2871
|
+
}
|
|
2819
2872
|
/**
|
|
2820
2873
|
* <p>An EKS Anywhere subscription authorizing the customer to support for licensed clusters
|
|
2821
2874
|
* and access to EKS Anywhere Curated Packages.</p>
|
|
@@ -2882,6 +2935,12 @@ export interface EksAnywhereSubscription {
|
|
|
2882
2935
|
* @public
|
|
2883
2936
|
*/
|
|
2884
2937
|
licenseArns?: string[] | undefined;
|
|
2938
|
+
/**
|
|
2939
|
+
* <p>Includes all of the claims in the license token necessary to validate the license for
|
|
2940
|
+
* extended support.</p>
|
|
2941
|
+
* @public
|
|
2942
|
+
*/
|
|
2943
|
+
licenses?: License[] | undefined;
|
|
2885
2944
|
/**
|
|
2886
2945
|
* <p>The metadata for a subscription to assist with categorization and organization. Each
|
|
2887
2946
|
* tag consists of a key and an optional value. Subscription tags do not propagate to any
|
|
@@ -2933,27 +2992,25 @@ export interface CreateFargateProfileRequest {
|
|
|
2933
2992
|
clusterName: string | undefined;
|
|
2934
2993
|
/**
|
|
2935
2994
|
* <p>The Amazon Resource Name (ARN) of the <code>Pod</code> execution role to use for a <code>Pod</code>
|
|
2936
|
-
* that matches the selectors in the Fargate profile. The <code>Pod</code>
|
|
2937
|
-
*
|
|
2938
|
-
*
|
|
2939
|
-
*
|
|
2940
|
-
* <code>Pod</code> execution
|
|
2941
|
-
* role</a> in the <i>Amazon EKS User Guide</i>.</p>
|
|
2995
|
+
* that matches the selectors in the Fargate profile. The <code>Pod</code> execution role
|
|
2996
|
+
* allows Fargate infrastructure to register with your cluster as a node, and it provides
|
|
2997
|
+
* read access to Amazon ECR image repositories. For more information, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/pod-execution-role.html">
|
|
2998
|
+
* <code>Pod</code> execution role</a> in the <i>Amazon EKS User Guide</i>.</p>
|
|
2942
2999
|
* @public
|
|
2943
3000
|
*/
|
|
2944
3001
|
podExecutionRoleArn: string | undefined;
|
|
2945
3002
|
/**
|
|
2946
3003
|
* <p>The IDs of subnets to launch a <code>Pod</code> into. A <code>Pod</code> running on
|
|
2947
|
-
*
|
|
2948
|
-
*
|
|
3004
|
+
* Fargate isn't assigned a public IP address, so only private subnets (with no direct
|
|
3005
|
+
* route to an Internet Gateway) are accepted for this parameter.</p>
|
|
2949
3006
|
* @public
|
|
2950
3007
|
*/
|
|
2951
3008
|
subnets?: string[] | undefined;
|
|
2952
3009
|
/**
|
|
2953
|
-
* <p>The selectors to match for a <code>Pod</code> to use this Fargate
|
|
2954
|
-
*
|
|
2955
|
-
*
|
|
2956
|
-
*
|
|
3010
|
+
* <p>The selectors to match for a <code>Pod</code> to use this Fargate profile. Each
|
|
3011
|
+
* selector must have an associated Kubernetes <code>namespace</code>. Optionally, you can also
|
|
3012
|
+
* specify <code>labels</code> for a <code>namespace</code>. You may specify up to five
|
|
3013
|
+
* selectors in a Fargate profile.</p>
|
|
2957
3014
|
* @public
|
|
2958
3015
|
*/
|
|
2959
3016
|
selectors?: FargateProfileSelector[] | undefined;
|
|
@@ -3007,8 +3064,8 @@ export interface FargateProfileIssue {
|
|
|
3007
3064
|
resourceIds?: string[] | undefined;
|
|
3008
3065
|
}
|
|
3009
3066
|
/**
|
|
3010
|
-
* <p>The health status of the Fargate
|
|
3011
|
-
*
|
|
3067
|
+
* <p>The health status of the Fargate profile. If there are issues with your Fargate
|
|
3068
|
+
* profile's health, they are listed here.</p>
|
|
3012
3069
|
* @public
|
|
3013
3070
|
*/
|
|
3014
3071
|
export interface FargateProfileHealth {
|
|
@@ -3060,8 +3117,7 @@ export interface FargateProfile {
|
|
|
3060
3117
|
createdAt?: Date | undefined;
|
|
3061
3118
|
/**
|
|
3062
3119
|
* <p>The Amazon Resource Name (ARN) of the <code>Pod</code> execution role to use for any <code>Pod</code>
|
|
3063
|
-
* that matches the selectors in the Fargate profile. For more information,
|
|
3064
|
-
* see <a href="https://docs.aws.amazon.com/eks/latest/userguide/pod-execution-role.html">
|
|
3120
|
+
* that matches the selectors in the Fargate profile. For more information, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/pod-execution-role.html">
|
|
3065
3121
|
* <code>Pod</code> execution role</a> in the <i>Amazon EKS User Guide</i>.</p>
|
|
3066
3122
|
* @public
|
|
3067
3123
|
*/
|
|
@@ -3072,8 +3128,7 @@ export interface FargateProfile {
|
|
|
3072
3128
|
*/
|
|
3073
3129
|
subnets?: string[] | undefined;
|
|
3074
3130
|
/**
|
|
3075
|
-
* <p>The selectors to match for a <code>Pod</code> to use this Fargate
|
|
3076
|
-
* profile.</p>
|
|
3131
|
+
* <p>The selectors to match for a <code>Pod</code> to use this Fargate profile.</p>
|
|
3077
3132
|
* @public
|
|
3078
3133
|
*/
|
|
3079
3134
|
selectors?: FargateProfileSelector[] | undefined;
|
|
@@ -3090,8 +3145,8 @@ export interface FargateProfile {
|
|
|
3090
3145
|
*/
|
|
3091
3146
|
tags?: Record<string, string> | undefined;
|
|
3092
3147
|
/**
|
|
3093
|
-
* <p>The health status of the Fargate
|
|
3094
|
-
*
|
|
3148
|
+
* <p>The health status of the Fargate profile. If there are issues with your Fargate
|
|
3149
|
+
* profile's health, they are listed here.</p>
|
|
3095
3150
|
* @public
|
|
3096
3151
|
*/
|
|
3097
3152
|
health?: FargateProfileHealth | undefined;
|
|
@@ -3134,8 +3189,8 @@ export type CapacityTypes = (typeof CapacityTypes)[keyof typeof CapacityTypes];
|
|
|
3134
3189
|
* </a>, or the node group deployment or
|
|
3135
3190
|
* update will fail. For more information about launch templates, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_CreateLaunchTemplate.html">
|
|
3136
3191
|
* <code>CreateLaunchTemplate</code>
|
|
3137
|
-
* </a> in the Amazon EC2 API
|
|
3138
|
-
*
|
|
3192
|
+
* </a> in the Amazon EC2 API Reference.
|
|
3193
|
+
* For more information about using launch templates with Amazon EKS, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/launch-templates.html">Customizing managed nodes with launch templates</a> in the <i>Amazon EKS User Guide</i>.</p>
|
|
3139
3194
|
* <p>You must specify either the launch template ID or the launch template name in the
|
|
3140
3195
|
* request, but not both.</p>
|
|
3141
3196
|
* @public
|
|
@@ -3144,20 +3199,22 @@ export interface LaunchTemplateSpecification {
|
|
|
3144
3199
|
/**
|
|
3145
3200
|
* <p>The name of the launch template.</p>
|
|
3146
3201
|
* <p>You must specify either the launch template name or the launch template ID in the
|
|
3147
|
-
* request, but not both
|
|
3202
|
+
* request, but not both. After node group creation, you cannot use a different
|
|
3203
|
+
* name.</p>
|
|
3148
3204
|
* @public
|
|
3149
3205
|
*/
|
|
3150
3206
|
name?: string | undefined;
|
|
3151
3207
|
/**
|
|
3152
3208
|
* <p>The version number of the launch template to use. If no version is specified, then the
|
|
3153
|
-
* template's default version is used
|
|
3209
|
+
* template's default version is used. You can use a different version for node group
|
|
3210
|
+
* updates.</p>
|
|
3154
3211
|
* @public
|
|
3155
3212
|
*/
|
|
3156
3213
|
version?: string | undefined;
|
|
3157
3214
|
/**
|
|
3158
3215
|
* <p>The ID of the launch template.</p>
|
|
3159
3216
|
* <p>You must specify either the launch template ID or the launch template name in the
|
|
3160
|
-
* request, but not both.</p>
|
|
3217
|
+
* request, but not both. After node group creation, you cannot use a different ID.</p>
|
|
3161
3218
|
* @public
|
|
3162
3219
|
*/
|
|
3163
3220
|
id?: string | undefined;
|
|
@@ -3169,7 +3226,7 @@ export interface LaunchTemplateSpecification {
|
|
|
3169
3226
|
export interface NodeRepairConfig {
|
|
3170
3227
|
/**
|
|
3171
3228
|
* <p>Specifies whether to enable node auto repair for the node group. Node auto repair is
|
|
3172
|
-
*
|
|
3229
|
+
* disabled by default.</p>
|
|
3173
3230
|
* @public
|
|
3174
3231
|
*/
|
|
3175
3232
|
enabled?: boolean | undefined;
|
|
@@ -3181,30 +3238,29 @@ export interface NodeRepairConfig {
|
|
|
3181
3238
|
*/
|
|
3182
3239
|
export interface RemoteAccessConfig {
|
|
3183
3240
|
/**
|
|
3184
|
-
* <p>The Amazon EC2 SSH key name that provides access for SSH communication with
|
|
3185
|
-
* the
|
|
3186
|
-
*
|
|
3187
|
-
*
|
|
3188
|
-
*
|
|
3189
|
-
* the <i>Amazon Elastic Compute Cloud User Guide for Windows Instances</i>.</p>
|
|
3241
|
+
* <p>The Amazon EC2 SSH key name that provides access for SSH communication with the nodes in
|
|
3242
|
+
* the managed node group. For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-key-pairs.html">Amazon EC2 key
|
|
3243
|
+
* pairs and Linux instances</a> in the <i>Amazon Elastic Compute Cloud User Guide for Linux Instances</i>. For Windows, an Amazon EC2 SSH
|
|
3244
|
+
* key is used to obtain the RDP password. For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/WindowsGuide/ec2-key-pairs.html">Amazon EC2 key
|
|
3245
|
+
* pairs and Windows instances</a> in the <i>Amazon Elastic Compute Cloud User Guide for Windows Instances</i>.</p>
|
|
3190
3246
|
* @public
|
|
3191
3247
|
*/
|
|
3192
3248
|
ec2SshKey?: string | undefined;
|
|
3193
3249
|
/**
|
|
3194
3250
|
* <p>The security group IDs that are allowed SSH access (port 22) to the nodes. For
|
|
3195
|
-
* Windows, the port is 3389. If you specify an Amazon EC2 SSH key but don't
|
|
3196
|
-
*
|
|
3197
|
-
*
|
|
3198
|
-
*
|
|
3251
|
+
* Windows, the port is 3389. If you specify an Amazon EC2 SSH key but don't specify a source
|
|
3252
|
+
* security group when you create a managed node group, then the port on the nodes is
|
|
3253
|
+
* opened to the internet (<code>0.0.0.0/0</code>). For more information, see <a href="https://docs.aws.amazon.com/vpc/latest/userguide/VPC_SecurityGroups.html">Security
|
|
3254
|
+
* Groups for Your VPC</a> in the <i>Amazon Virtual Private Cloud User Guide</i>.</p>
|
|
3199
3255
|
* @public
|
|
3200
3256
|
*/
|
|
3201
3257
|
sourceSecurityGroups?: string[] | undefined;
|
|
3202
3258
|
}
|
|
3203
3259
|
/**
|
|
3204
|
-
* <p>An object representing the scaling configuration details for the Auto Scaling
|
|
3205
|
-
*
|
|
3206
|
-
*
|
|
3207
|
-
*
|
|
3260
|
+
* <p>An object representing the scaling configuration details for the Auto Scaling group that is
|
|
3261
|
+
* associated with your node group. When creating a node group, you must specify all or
|
|
3262
|
+
* none of the properties. When updating a node group, you can specify any or none of the
|
|
3263
|
+
* properties.</p>
|
|
3208
3264
|
* @public
|
|
3209
3265
|
*/
|
|
3210
3266
|
export interface NodegroupScalingConfig {
|
|
@@ -3216,7 +3272,7 @@ export interface NodegroupScalingConfig {
|
|
|
3216
3272
|
/**
|
|
3217
3273
|
* <p>The maximum number of nodes that the managed node group can scale out to. For
|
|
3218
3274
|
* information about the maximum number that you can specify, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/service-quotas.html">Amazon EKS service
|
|
3219
|
-
*
|
|
3275
|
+
* quotas</a> in the <i>Amazon EKS User Guide</i>.</p>
|
|
3220
3276
|
* @public
|
|
3221
3277
|
*/
|
|
3222
3278
|
maxSize?: number | undefined;
|
|
@@ -3239,7 +3295,7 @@ export interface NodegroupScalingConfig {
|
|
|
3239
3295
|
* starting with extra hosts for testing. This parameter can also be different when you
|
|
3240
3296
|
* want to start with an estimated number of needed hosts, but let the Cluster Autoscaler
|
|
3241
3297
|
* reduce the number if there are too many. When the Cluster Autoscaler is used, the
|
|
3242
|
-
*
|
|
3298
|
+
* <code>desiredSize</code> parameter is altered by the Cluster Autoscaler (but can be
|
|
3243
3299
|
* out-of-date for short periods of time). the Cluster Autoscaler doesn't scale a managed
|
|
3244
3300
|
* node group lower than <code>minSize</code> or higher than <code>maxSize</code>.</p>
|
|
3245
3301
|
* @public
|
|
@@ -3295,8 +3351,8 @@ export declare const NodegroupUpdateStrategies: {
|
|
|
3295
3351
|
*/
|
|
3296
3352
|
export type NodegroupUpdateStrategies = (typeof NodegroupUpdateStrategies)[keyof typeof NodegroupUpdateStrategies];
|
|
3297
3353
|
/**
|
|
3298
|
-
* <p>The node group update configuration. An Amazon EKS managed node group updates by replacing
|
|
3299
|
-
* nodes of newer AMI versions in parallel. You choose the <i>maximum
|
|
3354
|
+
* <p>The node group update configuration. An Amazon EKS managed node group updates by replacing
|
|
3355
|
+
* nodes with new nodes of newer AMI versions in parallel. You choose the <i>maximum
|
|
3300
3356
|
* unavailable</i> and the <i>update strategy</i>.</p>
|
|
3301
3357
|
* @public
|
|
3302
3358
|
*/
|
|
@@ -3316,9 +3372,9 @@ export interface NodegroupUpdateConfig {
|
|
|
3316
3372
|
*/
|
|
3317
3373
|
maxUnavailablePercentage?: number | undefined;
|
|
3318
3374
|
/**
|
|
3319
|
-
* <p>The configuration for the behavior to follow during a node group version update of
|
|
3320
|
-
* node group. You choose between two possible strategies for replacing nodes
|
|
3321
|
-
*
|
|
3375
|
+
* <p>The configuration for the behavior to follow during a node group version update of
|
|
3376
|
+
* this managed node group. You choose between two possible strategies for replacing nodes
|
|
3377
|
+
* during an <a href="https://docs.aws.amazon.com/eks/latest/APIReference/API_UpdateNodegroupVersion.html">
|
|
3322
3378
|
* <code>UpdateNodegroupVersion</code>
|
|
3323
3379
|
* </a> action.</p>
|
|
3324
3380
|
* <p>An Amazon EKS managed node group updates by replacing nodes with new nodes of newer AMI
|
|
@@ -3327,9 +3383,9 @@ export interface NodegroupUpdateConfig {
|
|
|
3327
3383
|
* <i>default</i> strategy has guardrails to protect you from
|
|
3328
3384
|
* misconfiguration and launches the new instances first, before terminating the old
|
|
3329
3385
|
* instances. The <i>minimal</i> strategy removes the guardrails and
|
|
3330
|
-
* terminates the old instances before launching the new instances. This minimal
|
|
3331
|
-
*
|
|
3332
|
-
*
|
|
3386
|
+
* terminates the old instances before launching the new instances. This minimal strategy
|
|
3387
|
+
* is useful in scenarios where you are constrained to resources or costs (for example,
|
|
3388
|
+
* with hardware accelerators such as GPUs).</p>
|
|
3333
3389
|
* @public
|
|
3334
3390
|
*/
|
|
3335
3391
|
updateStrategy?: NodegroupUpdateStrategies | undefined;
|
|
@@ -3381,8 +3437,8 @@ export interface CreateNodegroupRequest {
|
|
|
3381
3437
|
* deployment will fail. If you don't specify an instance type in a launch template or for
|
|
3382
3438
|
* <code>instanceTypes</code>, then <code>t3.medium</code> is used, by default. If you
|
|
3383
3439
|
* specify <code>Spot</code> for <code>capacityType</code>, then we recommend specifying
|
|
3384
|
-
* multiple values for <code>instanceTypes</code>. For more information, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/managed-node-groups.html#managed-node-group-capacity-types">Managed node group capacity types</a> and <a href="https://docs.aws.amazon.com/eks/latest/userguide/launch-templates.html">Customizing managed nodes with
|
|
3385
|
-
*
|
|
3440
|
+
* multiple values for <code>instanceTypes</code>. For more information, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/managed-node-groups.html#managed-node-group-capacity-types">Managed node group capacity types</a> and <a href="https://docs.aws.amazon.com/eks/latest/userguide/launch-templates.html">Customizing managed nodes with
|
|
3441
|
+
* launch templates</a> in the <i>Amazon EKS User Guide</i>.</p>
|
|
3386
3442
|
* @public
|
|
3387
3443
|
*/
|
|
3388
3444
|
instanceTypes?: string[] | undefined;
|
|
@@ -3405,17 +3461,16 @@ export interface CreateNodegroupRequest {
|
|
|
3405
3461
|
*/
|
|
3406
3462
|
remoteAccess?: RemoteAccessConfig | undefined;
|
|
3407
3463
|
/**
|
|
3408
|
-
* <p>The Amazon Resource Name (ARN) of the IAM role to associate with your node group. The
|
|
3409
|
-
*
|
|
3410
|
-
*
|
|
3411
|
-
*
|
|
3412
|
-
*
|
|
3413
|
-
*
|
|
3414
|
-
*
|
|
3415
|
-
* <i>
|
|
3464
|
+
* <p>The Amazon Resource Name (ARN) of the IAM role to associate with your node group. The Amazon EKS worker
|
|
3465
|
+
* node <code>kubelet</code> daemon makes calls to Amazon Web Services APIs on your behalf. Nodes receive
|
|
3466
|
+
* permissions for these API calls through an IAM instance profile and associated
|
|
3467
|
+
* policies. Before you can launch nodes and register them into a cluster, you must create
|
|
3468
|
+
* an IAM role for those nodes to use when they are launched. For more information, see
|
|
3469
|
+
* <a href="https://docs.aws.amazon.com/eks/latest/userguide/create-node-role.html">Amazon EKS
|
|
3470
|
+
* node IAM role</a> in the <i>
|
|
3416
3471
|
* <i>Amazon EKS User Guide</i>
|
|
3417
|
-
* </i>.
|
|
3418
|
-
*
|
|
3472
|
+
* </i>.
|
|
3473
|
+
* If you specify <code>launchTemplate</code>, then don't specify <code>
|
|
3419
3474
|
* <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_IamInstanceProfile.html">IamInstanceProfile</a>
|
|
3420
3475
|
* </code> in your launch template, or the node group
|
|
3421
3476
|
* deployment will fail. For more information about using launch templates with Amazon EKS, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/launch-templates.html">Customizing managed nodes with launch templates</a> in the <i>Amazon EKS User Guide</i>.</p>
|
|
@@ -3451,10 +3506,11 @@ export interface CreateNodegroupRequest {
|
|
|
3451
3506
|
/**
|
|
3452
3507
|
* <p>An object representing a node group's launch template specification. When using this
|
|
3453
3508
|
* object, don't directly specify <code>instanceTypes</code>, <code>diskSize</code>, or
|
|
3454
|
-
*
|
|
3455
|
-
*
|
|
3456
|
-
*
|
|
3457
|
-
*
|
|
3509
|
+
* <code>remoteAccess</code>. You cannot later specify a different launch template ID
|
|
3510
|
+
* or name than what was used to create the node group.</p>
|
|
3511
|
+
* <p>Make sure that the launch template meets the requirements in
|
|
3512
|
+
* <code>launchTemplateSpecification</code>. Also refer to <a href="https://docs.aws.amazon.com/eks/latest/userguide/launch-templates.html">Customizing managed nodes with
|
|
3513
|
+
* launch templates</a> in the <i>Amazon EKS User Guide</i>.</p>
|
|
3458
3514
|
* @public
|
|
3459
3515
|
*/
|
|
3460
3516
|
launchTemplate?: LaunchTemplateSpecification | undefined;
|
|
@@ -3482,13 +3538,13 @@ export interface CreateNodegroupRequest {
|
|
|
3482
3538
|
*/
|
|
3483
3539
|
version?: string | undefined;
|
|
3484
3540
|
/**
|
|
3485
|
-
* <p>The AMI version of the Amazon EKS optimized AMI to use with your node group.
|
|
3486
|
-
*
|
|
3487
|
-
*
|
|
3488
|
-
*
|
|
3489
|
-
*
|
|
3490
|
-
*
|
|
3491
|
-
*
|
|
3541
|
+
* <p>The AMI version of the Amazon EKS optimized AMI to use with your node group. By default,
|
|
3542
|
+
* the latest available AMI version for the node group's current Kubernetes version is used. For
|
|
3543
|
+
* information about Linux versions, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/eks-linux-ami-versions.html">Amazon EKS
|
|
3544
|
+
* optimized Amazon Linux AMI versions</a> in the <i>Amazon EKS User Guide</i>. Amazon EKS managed node
|
|
3545
|
+
* groups support the November 2022 and later releases of the Windows AMIs. For information
|
|
3546
|
+
* about Windows versions, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/eks-ami-versions-windows.html">Amazon EKS
|
|
3547
|
+
* optimized Windows AMI versions</a> in the <i>Amazon EKS User Guide</i>.</p>
|
|
3492
3548
|
* <p>If you specify <code>launchTemplate</code>, and your launch template uses a custom AMI, then don't specify
|
|
3493
3549
|
* <code>releaseVersion</code>, or the node group deployment will fail.
|
|
3494
3550
|
* For more information about using launch templates with Amazon EKS, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/launch-templates.html">Customizing managed nodes with launch templates</a> in the <i>Amazon EKS User Guide</i>.</p>
|
|
@@ -3552,29 +3608,27 @@ export interface Issue {
|
|
|
3552
3608
|
* <ul>
|
|
3553
3609
|
* <li>
|
|
3554
3610
|
* <p>
|
|
3555
|
-
* <b>AccessDenied</b>: Amazon EKS or one or
|
|
3556
|
-
*
|
|
3557
|
-
*
|
|
3611
|
+
* <b>AccessDenied</b>: Amazon EKS or one or more of your
|
|
3612
|
+
* managed nodes is failing to authenticate or authorize with your Kubernetes cluster
|
|
3613
|
+
* API server.</p>
|
|
3558
3614
|
* </li>
|
|
3559
3615
|
* <li>
|
|
3560
3616
|
* <p>
|
|
3561
|
-
* <b>AsgInstanceLaunchFailures</b>: Your Auto Scaling
|
|
3562
|
-
*
|
|
3563
|
-
* instances.</p>
|
|
3617
|
+
* <b>AsgInstanceLaunchFailures</b>: Your Auto Scaling group is
|
|
3618
|
+
* experiencing failures while attempting to launch instances.</p>
|
|
3564
3619
|
* </li>
|
|
3565
3620
|
* <li>
|
|
3566
3621
|
* <p>
|
|
3567
3622
|
* <b>AutoScalingGroupNotFound</b>: We couldn't find
|
|
3568
|
-
* the Auto Scaling group associated with the managed node group. You may be
|
|
3569
|
-
*
|
|
3570
|
-
* recover.</p>
|
|
3623
|
+
* the Auto Scaling group associated with the managed node group. You may be able to
|
|
3624
|
+
* recreate an Auto Scaling group with the same settings to recover.</p>
|
|
3571
3625
|
* </li>
|
|
3572
3626
|
* <li>
|
|
3573
3627
|
* <p>
|
|
3574
|
-
* <b>ClusterUnreachable</b>: Amazon EKS or one
|
|
3575
|
-
*
|
|
3576
|
-
*
|
|
3577
|
-
*
|
|
3628
|
+
* <b>ClusterUnreachable</b>: Amazon EKS or one or more of
|
|
3629
|
+
* your managed nodes is unable to to communicate with your Kubernetes cluster API
|
|
3630
|
+
* server. This can happen if there are network disruptions or if API servers are
|
|
3631
|
+
* timing out processing requests. </p>
|
|
3578
3632
|
* </li>
|
|
3579
3633
|
* <li>
|
|
3580
3634
|
* <p>
|
|
@@ -3586,15 +3640,15 @@ export interface Issue {
|
|
|
3586
3640
|
* <li>
|
|
3587
3641
|
* <p>
|
|
3588
3642
|
* <b>Ec2LaunchTemplateNotFound</b>: We couldn't find
|
|
3589
|
-
* the Amazon EC2 launch template for your managed node group. You may be
|
|
3590
|
-
*
|
|
3643
|
+
* the Amazon EC2 launch template for your managed node group. You may be able to
|
|
3644
|
+
* recreate a launch template with the same settings to recover.</p>
|
|
3591
3645
|
* </li>
|
|
3592
3646
|
* <li>
|
|
3593
3647
|
* <p>
|
|
3594
3648
|
* <b>Ec2LaunchTemplateVersionMismatch</b>: The Amazon EC2
|
|
3595
|
-
*
|
|
3596
|
-
*
|
|
3597
|
-
*
|
|
3649
|
+
* launch template version for your managed node group does not match the version
|
|
3650
|
+
* that Amazon EKS created. You may be able to revert to the version that Amazon EKS created
|
|
3651
|
+
* to recover.</p>
|
|
3598
3652
|
* </li>
|
|
3599
3653
|
* <li>
|
|
3600
3654
|
* <p>
|
|
@@ -3611,32 +3665,30 @@ export interface Issue {
|
|
|
3611
3665
|
* <li>
|
|
3612
3666
|
* <p>
|
|
3613
3667
|
* <b>Ec2SubnetInvalidConfiguration</b>: One or more
|
|
3614
|
-
*
|
|
3615
|
-
*
|
|
3616
|
-
*
|
|
3617
|
-
*
|
|
3618
|
-
* <a href="https://docs.aws.amazon.com/vpc/latest/userguide/vpc-ip-addressing.html#subnet-public-ip">Modifying
|
|
3668
|
+
* Amazon EC2 subnets specified for a node group do not automatically assign public IP
|
|
3669
|
+
* addresses to instances launched into it. If you want your instances to be
|
|
3670
|
+
* assigned a public IP address, then you need to enable the <code>auto-assign
|
|
3671
|
+
* public IP address</code> setting for the subnet. See <a href="https://docs.aws.amazon.com/vpc/latest/userguide/vpc-ip-addressing.html#subnet-public-ip">Modifying
|
|
3619
3672
|
* the public <code>IPv4</code> addressing attribute for your subnet</a> in
|
|
3620
3673
|
* the <i>Amazon VPC User Guide</i>.</p>
|
|
3621
3674
|
* </li>
|
|
3622
3675
|
* <li>
|
|
3623
3676
|
* <p>
|
|
3624
3677
|
* <b>IamInstanceProfileNotFound</b>: We couldn't find
|
|
3625
|
-
* the IAM instance profile for your managed node group. You may be
|
|
3626
|
-
*
|
|
3678
|
+
* the IAM instance profile for your managed node group. You may be able to
|
|
3679
|
+
* recreate an instance profile with the same settings to recover.</p>
|
|
3627
3680
|
* </li>
|
|
3628
3681
|
* <li>
|
|
3629
3682
|
* <p>
|
|
3630
3683
|
* <b>IamNodeRoleNotFound</b>: We couldn't find the
|
|
3631
|
-
*
|
|
3632
|
-
*
|
|
3684
|
+
* IAM role for your managed node group. You may be able to recreate an IAM
|
|
3685
|
+
* role with the same settings to recover.</p>
|
|
3633
3686
|
* </li>
|
|
3634
3687
|
* <li>
|
|
3635
3688
|
* <p>
|
|
3636
|
-
* <b>InstanceLimitExceeded</b>: Your Amazon Web Services
|
|
3637
|
-
*
|
|
3638
|
-
*
|
|
3639
|
-
* to recover.</p>
|
|
3689
|
+
* <b>InstanceLimitExceeded</b>: Your Amazon Web Services account is
|
|
3690
|
+
* unable to launch any more instances of the specified instance type. You may be
|
|
3691
|
+
* able to request an Amazon EC2 instance limit increase to recover.</p>
|
|
3640
3692
|
* </li>
|
|
3641
3693
|
* <li>
|
|
3642
3694
|
* <p>
|
|
@@ -3652,10 +3704,9 @@ export interface Issue {
|
|
|
3652
3704
|
* <li>
|
|
3653
3705
|
* <p>
|
|
3654
3706
|
* <b>NodeCreationFailure</b>: Your launched instances
|
|
3655
|
-
* are unable to register with your Amazon EKS cluster. Common causes of
|
|
3656
|
-
*
|
|
3657
|
-
*
|
|
3658
|
-
* </p>
|
|
3707
|
+
* are unable to register with your Amazon EKS cluster. Common causes of this failure
|
|
3708
|
+
* are insufficient <a href="https://docs.aws.amazon.com/eks/latest/userguide/create-node-role.html">node IAM role</a>
|
|
3709
|
+
* permissions or lack of outbound internet access for the nodes. </p>
|
|
3659
3710
|
* </li>
|
|
3660
3711
|
* </ul>
|
|
3661
3712
|
* @public
|
|
@@ -3746,8 +3797,8 @@ export interface Nodegroup {
|
|
|
3746
3797
|
/**
|
|
3747
3798
|
* <p>If the node group was deployed using a launch template with a custom AMI, then this is
|
|
3748
3799
|
* the AMI ID that was specified in the launch template. For node groups that weren't
|
|
3749
|
-
* deployed using a launch template, this is the version of the Amazon EKS
|
|
3750
|
-
*
|
|
3800
|
+
* deployed using a launch template, this is the version of the Amazon EKS optimized AMI that
|
|
3801
|
+
* the node group was deployed with.</p>
|
|
3751
3802
|
* @public
|
|
3752
3803
|
*/
|
|
3753
3804
|
releaseVersion?: string | undefined;
|
|
@@ -3805,19 +3856,17 @@ export interface Nodegroup {
|
|
|
3805
3856
|
*/
|
|
3806
3857
|
amiType?: AMITypes | undefined;
|
|
3807
3858
|
/**
|
|
3808
|
-
* <p>The IAM role associated with your node group. The Amazon EKS
|
|
3809
|
-
*
|
|
3810
|
-
*
|
|
3811
|
-
* profile and associated policies.</p>
|
|
3859
|
+
* <p>The IAM role associated with your node group. The Amazon EKS node <code>kubelet</code>
|
|
3860
|
+
* daemon makes calls to Amazon Web Services APIs on your behalf. Nodes receive permissions for these API
|
|
3861
|
+
* calls through an IAM instance profile and associated policies.</p>
|
|
3812
3862
|
* @public
|
|
3813
3863
|
*/
|
|
3814
3864
|
nodeRole?: string | undefined;
|
|
3815
3865
|
/**
|
|
3816
3866
|
* <p>The Kubernetes <code>labels</code> applied to the nodes in the node group.</p>
|
|
3817
3867
|
* <note>
|
|
3818
|
-
* <p>Only <code>labels</code> that are applied with the Amazon EKS API are
|
|
3819
|
-
*
|
|
3820
|
-
* this group.</p>
|
|
3868
|
+
* <p>Only <code>labels</code> that are applied with the Amazon EKS API are shown here. There
|
|
3869
|
+
* may be other Kubernetes <code>labels</code> applied to the nodes in this group.</p>
|
|
3821
3870
|
* </note>
|
|
3822
3871
|
* @public
|
|
3823
3872
|
*/
|
|
@@ -3901,7 +3950,7 @@ export interface CreatePodIdentityAssociationRequest {
|
|
|
3901
3950
|
namespace: string | undefined;
|
|
3902
3951
|
/**
|
|
3903
3952
|
* <p>The name of the Kubernetes service account inside the cluster to associate the IAM
|
|
3904
|
-
*
|
|
3953
|
+
* credentials with.</p>
|
|
3905
3954
|
* @public
|
|
3906
3955
|
*/
|
|
3907
3956
|
serviceAccount: string | undefined;
|
|
@@ -3976,7 +4025,7 @@ export interface PodIdentityAssociation {
|
|
|
3976
4025
|
namespace?: string | undefined;
|
|
3977
4026
|
/**
|
|
3978
4027
|
* <p>The name of the Kubernetes service account inside the cluster to associate the IAM
|
|
3979
|
-
*
|
|
4028
|
+
* credentials with.</p>
|
|
3980
4029
|
* @public
|
|
3981
4030
|
*/
|
|
3982
4031
|
serviceAccount?: string | undefined;
|
|
@@ -4100,9 +4149,9 @@ export interface DeleteAddonRequest {
|
|
|
4100
4149
|
*/
|
|
4101
4150
|
addonName: string | undefined;
|
|
4102
4151
|
/**
|
|
4103
|
-
* <p>Specifying this option preserves the add-on software on your cluster but Amazon EKS
|
|
4104
|
-
*
|
|
4105
|
-
*
|
|
4152
|
+
* <p>Specifying this option preserves the add-on software on your cluster but Amazon EKS stops
|
|
4153
|
+
* managing any settings for the add-on. If an IAM account is associated with the add-on,
|
|
4154
|
+
* it isn't removed.</p>
|
|
4106
4155
|
* @public
|
|
4107
4156
|
*/
|
|
4108
4157
|
preserve?: boolean | undefined;
|
|
@@ -4112,8 +4161,8 @@ export interface DeleteAddonRequest {
|
|
|
4112
4161
|
*/
|
|
4113
4162
|
export interface DeleteAddonResponse {
|
|
4114
4163
|
/**
|
|
4115
|
-
* <p>An Amazon EKS add-on. For more information, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/eks-add-ons.html">Amazon EKS add-ons</a> in
|
|
4116
|
-
*
|
|
4164
|
+
* <p>An Amazon EKS add-on. For more information, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/eks-add-ons.html">Amazon EKS add-ons</a> in the
|
|
4165
|
+
* <i>Amazon EKS User Guide</i>.</p>
|
|
4117
4166
|
* @public
|
|
4118
4167
|
*/
|
|
4119
4168
|
addon?: Addon | undefined;
|
|
@@ -4300,8 +4349,8 @@ export interface DescribeAddonRequest {
|
|
|
4300
4349
|
*/
|
|
4301
4350
|
export interface DescribeAddonResponse {
|
|
4302
4351
|
/**
|
|
4303
|
-
* <p>An Amazon EKS add-on. For more information, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/eks-add-ons.html">Amazon EKS add-ons</a> in
|
|
4304
|
-
*
|
|
4352
|
+
* <p>An Amazon EKS add-on. For more information, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/eks-add-ons.html">Amazon EKS add-ons</a> in the
|
|
4353
|
+
* <i>Amazon EKS User Guide</i>.</p>
|
|
4305
4354
|
* @public
|
|
4306
4355
|
*/
|
|
4307
4356
|
addon?: Addon | undefined;
|
|
@@ -4347,7 +4396,8 @@ export interface DescribeAddonConfigurationResponse {
|
|
|
4347
4396
|
*/
|
|
4348
4397
|
configurationSchema?: string | undefined;
|
|
4349
4398
|
/**
|
|
4350
|
-
* <p>The Kubernetes service account name used by the addon, and any suggested IAM policies.
|
|
4399
|
+
* <p>The Kubernetes service account name used by the addon, and any suggested IAM policies.
|
|
4400
|
+
* Use this information to create an IAM Role for the Addon.</p>
|
|
4351
4401
|
* @public
|
|
4352
4402
|
*/
|
|
4353
4403
|
podIdentityConfiguration?: AddonPodIdentityConfiguration[] | undefined;
|
|
@@ -4516,7 +4566,7 @@ export interface DescribeClusterVersionsRequest {
|
|
|
4516
4566
|
/**
|
|
4517
4567
|
* <important>
|
|
4518
4568
|
* <p>This field is deprecated. Use <code>versionStatus</code> instead, as that field
|
|
4519
|
-
*
|
|
4569
|
+
* matches for input and output of this action.</p>
|
|
4520
4570
|
* </important>
|
|
4521
4571
|
* <p>Filter versions by their current status.</p>
|
|
4522
4572
|
*
|
|
@@ -5091,8 +5141,8 @@ export interface DescribeUpdateRequest {
|
|
|
5091
5141
|
*/
|
|
5092
5142
|
updateId: string | undefined;
|
|
5093
5143
|
/**
|
|
5094
|
-
* <p>The name of the Amazon EKS node group associated with the update. This
|
|
5095
|
-
*
|
|
5144
|
+
* <p>The name of the Amazon EKS node group associated with the update. This parameter is
|
|
5145
|
+
* required if the update is a node group update.</p>
|
|
5096
5146
|
* @public
|
|
5097
5147
|
*/
|
|
5098
5148
|
nodegroupName?: string | undefined;
|
|
@@ -5433,8 +5483,8 @@ export interface ListClustersRequest {
|
|
|
5433
5483
|
/**
|
|
5434
5484
|
* <p>Indicates whether external clusters are included in the returned list. Use
|
|
5435
5485
|
* '<code>all</code>' to return <a href="https://docs.aws.amazon.com/eks/latest/userguide/eks-connector.html">https://docs.aws.amazon.com/eks/latest/userguide/eks-connector.html</a>connected clusters, or blank to
|
|
5436
|
-
* return only Amazon EKS clusters. '<code>all</code>' must be in lowercase
|
|
5437
|
-
*
|
|
5486
|
+
* return only Amazon EKS clusters. '<code>all</code>' must be in lowercase otherwise an error
|
|
5487
|
+
* occurs.</p>
|
|
5438
5488
|
* @public
|
|
5439
5489
|
*/
|
|
5440
5490
|
include?: string[] | undefined;
|
|
@@ -5444,8 +5494,7 @@ export interface ListClustersRequest {
|
|
|
5444
5494
|
*/
|
|
5445
5495
|
export interface ListClustersResponse {
|
|
5446
5496
|
/**
|
|
5447
|
-
* <p>A list of all of the clusters for your account in the specified Amazon Web Services Region
|
|
5448
|
-
* .</p>
|
|
5497
|
+
* <p>A list of all of the clusters for your account in the specified Amazon Web Services Region .</p>
|
|
5449
5498
|
* @public
|
|
5450
5499
|
*/
|
|
5451
5500
|
clusters?: string[] | undefined;
|
|
@@ -5562,8 +5611,7 @@ export interface ListFargateProfilesRequest {
|
|
|
5562
5611
|
*/
|
|
5563
5612
|
export interface ListFargateProfilesResponse {
|
|
5564
5613
|
/**
|
|
5565
|
-
* <p>A list of all of the Fargate profiles associated with the specified
|
|
5566
|
-
* cluster.</p>
|
|
5614
|
+
* <p>A list of all of the Fargate profiles associated with the specified cluster.</p>
|
|
5567
5615
|
* @public
|
|
5568
5616
|
*/
|
|
5569
5617
|
fargateProfileNames?: string[] | undefined;
|
|
@@ -6120,8 +6168,8 @@ export interface RegisterClusterRequest {
|
|
|
6120
6168
|
*/
|
|
6121
6169
|
name: string | undefined;
|
|
6122
6170
|
/**
|
|
6123
|
-
* <p>The configuration settings required to connect the Kubernetes cluster to the Amazon EKS
|
|
6124
|
-
*
|
|
6171
|
+
* <p>The configuration settings required to connect the Kubernetes cluster to the Amazon EKS control
|
|
6172
|
+
* plane.</p>
|
|
6125
6173
|
* @public
|
|
6126
6174
|
*/
|
|
6127
6175
|
connectorConfig: ConnectorConfigRequest | undefined;
|
|
@@ -6221,9 +6269,9 @@ export interface UpdateAccessEntryRequest {
|
|
|
6221
6269
|
/**
|
|
6222
6270
|
* <p>The value for <code>name</code> that you've specified for <code>kind: Group</code> as
|
|
6223
6271
|
* a <code>subject</code> in a Kubernetes <code>RoleBinding</code> or
|
|
6224
|
-
* <code>ClusterRoleBinding</code> object. Amazon EKS doesn't confirm that the
|
|
6225
|
-
*
|
|
6226
|
-
*
|
|
6272
|
+
* <code>ClusterRoleBinding</code> object. Amazon EKS doesn't confirm that the value for
|
|
6273
|
+
* <code>name</code> exists in any bindings on your cluster. You can specify one or
|
|
6274
|
+
* more names.</p>
|
|
6227
6275
|
* <p>Kubernetes authorizes the <code>principalArn</code> of the access entry to access any
|
|
6228
6276
|
* cluster objects that you've specified in a Kubernetes <code>Role</code> or
|
|
6229
6277
|
* <code>ClusterRole</code> object that is also specified in a binding's
|
|
@@ -6231,13 +6279,13 @@ export interface UpdateAccessEntryRequest {
|
|
|
6231
6279
|
* <code>RoleBinding</code>, <code>ClusterRoleBinding</code>, <code>Role</code>, or
|
|
6232
6280
|
* <code>ClusterRole</code> objects, see <a href="https://kubernetes.io/docs/reference/access-authn-authz/rbac/">Using RBAC
|
|
6233
6281
|
* Authorization in the Kubernetes documentation</a>.</p>
|
|
6234
|
-
* <p>If you want Amazon EKS to authorize the <code>principalArn</code> (instead of,
|
|
6235
|
-
*
|
|
6236
|
-
*
|
|
6237
|
-
*
|
|
6238
|
-
*
|
|
6239
|
-
*
|
|
6240
|
-
*
|
|
6282
|
+
* <p>If you want Amazon EKS to authorize the <code>principalArn</code> (instead of, or in
|
|
6283
|
+
* addition to Kubernetes authorizing the <code>principalArn</code>), you can associate one or
|
|
6284
|
+
* more access policies to the access entry using <code>AssociateAccessPolicy</code>. If
|
|
6285
|
+
* you associate any access policies, the <code>principalARN</code> has all permissions
|
|
6286
|
+
* assigned in the associated access policies and all permissions in any Kubernetes
|
|
6287
|
+
* <code>Role</code> or <code>ClusterRole</code> objects that the group names are bound
|
|
6288
|
+
* to.</p>
|
|
6241
6289
|
* @public
|
|
6242
6290
|
*/
|
|
6243
6291
|
kubernetesGroups?: string[] | undefined;
|
|
@@ -6249,9 +6297,8 @@ export interface UpdateAccessEntryRequest {
|
|
|
6249
6297
|
clientRequestToken?: string | undefined;
|
|
6250
6298
|
/**
|
|
6251
6299
|
* <p>The username to authenticate to Kubernetes with. We recommend not specifying a username and
|
|
6252
|
-
* letting Amazon EKS specify it for you. For more information about the value
|
|
6253
|
-
*
|
|
6254
|
-
* username, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/access-entries.html#creating-access-entries">Creating
|
|
6300
|
+
* letting Amazon EKS specify it for you. For more information about the value Amazon EKS specifies
|
|
6301
|
+
* for you, or constraints before specifying your own username, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/access-entries.html#creating-access-entries">Creating
|
|
6255
6302
|
* access entries</a> in the <i>Amazon EKS User Guide</i>.</p>
|
|
6256
6303
|
* @public
|
|
6257
6304
|
*/
|
|
@@ -6303,27 +6350,26 @@ export interface UpdateAddonRequest {
|
|
|
6303
6350
|
*/
|
|
6304
6351
|
serviceAccountRoleArn?: string | undefined;
|
|
6305
6352
|
/**
|
|
6306
|
-
* <p>How to resolve field value conflicts for an Amazon EKS add-on if you've
|
|
6307
|
-
*
|
|
6308
|
-
*
|
|
6353
|
+
* <p>How to resolve field value conflicts for an Amazon EKS add-on if you've changed a value
|
|
6354
|
+
* from the Amazon EKS default value. Conflicts are handled based on the option you
|
|
6355
|
+
* choose:</p>
|
|
6309
6356
|
* <ul>
|
|
6310
6357
|
* <li>
|
|
6311
6358
|
* <p>
|
|
6312
|
-
* <b>None</b> – Amazon EKS doesn't
|
|
6313
|
-
*
|
|
6359
|
+
* <b>None</b> – Amazon EKS doesn't change the value.
|
|
6360
|
+
* The update might fail.</p>
|
|
6314
6361
|
* </li>
|
|
6315
6362
|
* <li>
|
|
6316
6363
|
* <p>
|
|
6317
|
-
* <b>Overwrite</b> – Amazon EKS
|
|
6318
|
-
*
|
|
6319
|
-
* value.</p>
|
|
6364
|
+
* <b>Overwrite</b> – Amazon EKS overwrites the
|
|
6365
|
+
* changed value back to the Amazon EKS default value.</p>
|
|
6320
6366
|
* </li>
|
|
6321
6367
|
* <li>
|
|
6322
6368
|
* <p>
|
|
6323
|
-
* <b>Preserve</b> – Amazon EKS
|
|
6324
|
-
*
|
|
6325
|
-
*
|
|
6326
|
-
*
|
|
6369
|
+
* <b>Preserve</b> – Amazon EKS preserves the value.
|
|
6370
|
+
* If you choose this option, we recommend that you test any field and value
|
|
6371
|
+
* changes on a non-production cluster before updating the add-on on your
|
|
6372
|
+
* production cluster.</p>
|
|
6327
6373
|
* </li>
|
|
6328
6374
|
* </ul>
|
|
6329
6375
|
* @public
|
|
@@ -6343,8 +6389,12 @@ export interface UpdateAddonRequest {
|
|
|
6343
6389
|
*/
|
|
6344
6390
|
configurationValues?: string | undefined;
|
|
6345
6391
|
/**
|
|
6346
|
-
* <p>An array of Pod Identity Assocations to be updated. Each EKS Pod Identity association
|
|
6347
|
-
*
|
|
6392
|
+
* <p>An array of Pod Identity Assocations to be updated. Each EKS Pod Identity association
|
|
6393
|
+
* maps a Kubernetes service account to an IAM Role. If this value is left blank, no change.
|
|
6394
|
+
* If an empty array is provided, existing Pod Identity Assocations owned by the Addon are
|
|
6395
|
+
* deleted.</p>
|
|
6396
|
+
* <p>For more information, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/add-ons-iam.html">Attach an IAM Role to an Amazon EKS add-on
|
|
6397
|
+
* using Pod Identity</a> in the <i>Amazon EKS User Guide</i>.</p>
|
|
6348
6398
|
* @public
|
|
6349
6399
|
*/
|
|
6350
6400
|
podIdentityAssociations?: AddonPodIdentityAssociations[] | undefined;
|
|
@@ -6380,23 +6430,21 @@ export interface UpdateClusterConfigRequest {
|
|
|
6380
6430
|
*/
|
|
6381
6431
|
name: string | undefined;
|
|
6382
6432
|
/**
|
|
6383
|
-
* <p>An object representing the VPC configuration to use for an Amazon EKS
|
|
6384
|
-
* cluster.</p>
|
|
6433
|
+
* <p>An object representing the VPC configuration to use for an Amazon EKS cluster.</p>
|
|
6385
6434
|
* @public
|
|
6386
6435
|
*/
|
|
6387
6436
|
resourcesVpcConfig?: VpcConfigRequest | undefined;
|
|
6388
6437
|
/**
|
|
6389
|
-
* <p>Enable or disable exporting the Kubernetes control plane logs for your cluster to CloudWatch Logs
|
|
6390
|
-
*
|
|
6391
|
-
*
|
|
6392
|
-
*
|
|
6393
|
-
*
|
|
6438
|
+
* <p>Enable or disable exporting the Kubernetes control plane logs for your cluster to CloudWatch Logs .
|
|
6439
|
+
* By default, cluster control plane logs aren't exported to CloudWatch Logs . For more information,
|
|
6440
|
+
* see <a href="https://docs.aws.amazon.com/eks/latest/userguide/control-plane-logs.html">Amazon EKS
|
|
6441
|
+
* cluster control plane logs</a> in the
|
|
6442
|
+
* <i>
|
|
6394
6443
|
* <i>Amazon EKS User Guide</i>
|
|
6395
6444
|
* </i>.</p>
|
|
6396
6445
|
* <note>
|
|
6397
|
-
* <p>CloudWatch Logs ingestion, archive storage, and data scanning rates apply to
|
|
6398
|
-
*
|
|
6399
|
-
* Pricing</a>.</p>
|
|
6446
|
+
* <p>CloudWatch Logs ingestion, archive storage, and data scanning rates apply to exported
|
|
6447
|
+
* control plane logs. For more information, see <a href="http://aws.amazon.com/cloudwatch/pricing/">CloudWatch Pricing</a>.</p>
|
|
6400
6448
|
* </note>
|
|
6401
6449
|
* @public
|
|
6402
6450
|
*/
|
|
@@ -6413,32 +6461,35 @@ export interface UpdateClusterConfigRequest {
|
|
|
6413
6461
|
*/
|
|
6414
6462
|
accessConfig?: UpdateAccessConfigRequest | undefined;
|
|
6415
6463
|
/**
|
|
6416
|
-
* <p>You can enable or disable extended support for clusters currently on standard support.
|
|
6464
|
+
* <p>You can enable or disable extended support for clusters currently on standard support.
|
|
6465
|
+
* You cannot disable extended support once it starts. You must enable extended support
|
|
6466
|
+
* before your cluster exits standard support.</p>
|
|
6417
6467
|
* @public
|
|
6418
6468
|
*/
|
|
6419
6469
|
upgradePolicy?: UpgradePolicyRequest | undefined;
|
|
6420
6470
|
/**
|
|
6421
6471
|
* <p>Enable or disable ARC zonal shift for the cluster. If zonal shift is enabled, Amazon Web Services
|
|
6422
6472
|
* configures zonal autoshift for the cluster.</p>
|
|
6423
|
-
* <p>Zonal shift is a feature of
|
|
6424
|
-
*
|
|
6425
|
-
*
|
|
6426
|
-
*
|
|
6427
|
-
* <p>You can start a zonal shift for an EKS cluster, or you can allow Amazon Web Services to do it for
|
|
6428
|
-
* by enabling <i>zonal autoshift</i>. This shift updates the flow of
|
|
6473
|
+
* <p>Zonal shift is a feature of Amazon Application Recovery Controller (ARC). ARC zonal shift is designed to be a
|
|
6474
|
+
* temporary measure that allows you to move traffic for a resource away from an impaired
|
|
6475
|
+
* AZ until the zonal shift expires or you cancel it. You can extend the zonal shift if
|
|
6476
|
+
* necessary.</p>
|
|
6477
|
+
* <p>You can start a zonal shift for an EKS cluster, or you can allow Amazon Web Services to do it for
|
|
6478
|
+
* you by enabling <i>zonal autoshift</i>. This shift updates the flow of
|
|
6429
6479
|
* east-to-west network traffic in your cluster to only consider network endpoints for Pods
|
|
6430
6480
|
* running on worker nodes in healthy AZs. Additionally, any ALB or NLB handling ingress
|
|
6431
|
-
* traffic for applications in your EKS cluster will automatically route traffic to targets
|
|
6432
|
-
* the healthy AZs. For more information about zonal shift in EKS, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/zone-shift.html">Learn about
|
|
6433
|
-
* Zonal Shift in Amazon EKS</a> in the
|
|
6434
|
-
*
|
|
6481
|
+
* traffic for applications in your EKS cluster will automatically route traffic to targets
|
|
6482
|
+
* in the healthy AZs. For more information about zonal shift in EKS, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/zone-shift.html">Learn about
|
|
6483
|
+
* Amazon Application Recovery Controller (ARC) Zonal Shift in Amazon EKS</a> in the
|
|
6484
|
+
* <i>
|
|
6435
6485
|
* <i>Amazon EKS User Guide</i>
|
|
6436
6486
|
* </i>.</p>
|
|
6437
6487
|
* @public
|
|
6438
6488
|
*/
|
|
6439
6489
|
zonalShiftConfig?: ZonalShiftConfigRequest | undefined;
|
|
6440
6490
|
/**
|
|
6441
|
-
* <p>Update the configuration of the compute capability of your EKS Auto Mode cluster. For
|
|
6491
|
+
* <p>Update the configuration of the compute capability of your EKS Auto Mode cluster. For
|
|
6492
|
+
* example, enable the capability.</p>
|
|
6442
6493
|
* @public
|
|
6443
6494
|
*/
|
|
6444
6495
|
computeConfig?: ComputeConfigRequest | undefined;
|
|
@@ -6448,7 +6499,8 @@ export interface UpdateClusterConfigRequest {
|
|
|
6448
6499
|
*/
|
|
6449
6500
|
kubernetesNetworkConfig?: KubernetesNetworkConfigRequest | undefined;
|
|
6450
6501
|
/**
|
|
6451
|
-
* <p>Update the configuration of the block storage capability of your EKS Auto Mode
|
|
6502
|
+
* <p>Update the configuration of the block storage capability of your EKS Auto Mode
|
|
6503
|
+
* cluster. For example, enable the capability.</p>
|
|
6452
6504
|
* @public
|
|
6453
6505
|
*/
|
|
6454
6506
|
storageConfig?: StorageConfigRequest | undefined;
|
|
@@ -6642,13 +6694,12 @@ export interface UpdateNodegroupVersionRequest {
|
|
|
6642
6694
|
*/
|
|
6643
6695
|
version?: string | undefined;
|
|
6644
6696
|
/**
|
|
6645
|
-
* <p>The AMI version of the Amazon EKS optimized AMI to use for the update. By
|
|
6646
|
-
*
|
|
6647
|
-
*
|
|
6648
|
-
*
|
|
6649
|
-
*
|
|
6650
|
-
*
|
|
6651
|
-
* <i>Amazon EKS User Guide</i>.</p>
|
|
6697
|
+
* <p>The AMI version of the Amazon EKS optimized AMI to use for the update. By default, the
|
|
6698
|
+
* latest available AMI version for the node group's Kubernetes version is used. For information
|
|
6699
|
+
* about 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
|
|
6700
|
+
* <i>Amazon EKS User Guide</i>. Amazon EKS managed node groups support the November 2022 and later releases
|
|
6701
|
+
* of the Windows AMIs. For information about Windows versions, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/eks-ami-versions-windows.html">Amazon EKS
|
|
6702
|
+
* optimized Windows AMI versions</a> in the <i>Amazon EKS User Guide</i>.</p>
|
|
6652
6703
|
* <p>If you specify <code>launchTemplate</code>, and your launch template uses a custom AMI, then don't specify
|
|
6653
6704
|
* <code>releaseVersion</code>, or the node group update will fail.
|
|
6654
6705
|
* For more information about using launch templates with Amazon EKS, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/launch-templates.html">Customizing managed nodes with launch templates</a> in the <i>Amazon EKS User Guide</i>.</p>
|
|
@@ -6658,7 +6709,8 @@ export interface UpdateNodegroupVersionRequest {
|
|
|
6658
6709
|
/**
|
|
6659
6710
|
* <p>An object representing a node group's launch template specification. You can only
|
|
6660
6711
|
* update a node group using a launch template if the node group was originally deployed
|
|
6661
|
-
* with a launch template
|
|
6712
|
+
* with a launch template. When updating, you must specify the same launch template ID or
|
|
6713
|
+
* name that was used to create the node group.</p>
|
|
6662
6714
|
* @public
|
|
6663
6715
|
*/
|
|
6664
6716
|
launchTemplate?: LaunchTemplateSpecification | undefined;
|