aws-sdk-eks 1.73.0 → 1.76.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +15 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-eks/client.rb +78 -33
- data/lib/aws-sdk-eks/types.rb +131 -50
- data/lib/aws-sdk-eks.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d5153478f0a086c082ff6312714743ec3f896a52594dd6f60a14475c3956b75b
|
4
|
+
data.tar.gz: 2801d7864851484371bb11bb474a9686baf556580fdecdfff5db34aa6902e1e1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: de98df51b9b1f7590f2e29de81dfe0b1203ba74cadaeced4add7e5b5cee6023e98f946cb490e6649b3c0361bc12bb1407eba6671f72bffd563c746f13b7c81bf
|
7
|
+
data.tar.gz: 1504c201a82e11ef7f78eb27e08bfae728831ab611e975c69dbaa15102113ffa916ad58bae981581c19fafc684f9950141d56f55565ed09f33059cc914b9bf97
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,21 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.76.0 (2022-09-07)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Adds support for EKS Addons ResolveConflicts "preserve" flag. Also adds new update failed status for EKS Addons.
|
8
|
+
|
9
|
+
1.75.0 (2022-05-10)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Adds BOTTLEROCKET_ARM_64_NVIDIA and BOTTLEROCKET_x86_64_NVIDIA AMI types to EKS managed nodegroups
|
13
|
+
|
14
|
+
1.74.0 (2022-03-08)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - Introducing a new enum for NodeGroup error code: Ec2SubnetMissingIpv6Assignment
|
18
|
+
|
4
19
|
1.73.0 (2022-02-24)
|
5
20
|
------------------
|
6
21
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.76.0
|
data/lib/aws-sdk-eks/client.rb
CHANGED
@@ -555,8 +555,29 @@ module Aws::EKS
|
|
555
555
|
# [2]: https://docs.aws.amazon.com/eks/latest/userguide/enable-iam-roles-for-service-accounts.html
|
556
556
|
#
|
557
557
|
# @option params [String] :resolve_conflicts
|
558
|
-
# How to resolve
|
559
|
-
#
|
558
|
+
# How to resolve field value conflicts for an Amazon EKS add-on.
|
559
|
+
# Conflicts are handled based on the value you choose:
|
560
|
+
#
|
561
|
+
# * **None** – If the self-managed version of the add-on is installed on
|
562
|
+
# your cluster, Amazon EKS doesn't change the value. Creation of the
|
563
|
+
# add-on might fail.
|
564
|
+
#
|
565
|
+
# * **Overwrite** – If the self-managed version of the add-on is
|
566
|
+
# installed on your cluster and the Amazon EKS default value is
|
567
|
+
# different than the existing value, Amazon EKS changes the value to
|
568
|
+
# the Amazon EKS default value.
|
569
|
+
#
|
570
|
+
# * **Preserve** – Not supported. You can set this value when updating
|
571
|
+
# an add-on though. For more information, see [UpdateAddon][1].
|
572
|
+
#
|
573
|
+
# If you don't currently have the self-managed version of the add-on
|
574
|
+
# installed on your cluster, the Amazon EKS add-on is installed. Amazon
|
575
|
+
# EKS sets all values to default values, regardless of the option that
|
576
|
+
# you specify.
|
577
|
+
#
|
578
|
+
#
|
579
|
+
#
|
580
|
+
# [1]: https://docs.aws.amazon.com/eks/latest/APIReference/API_UpdateAddon.html
|
560
581
|
#
|
561
582
|
# @option params [String] :client_request_token
|
562
583
|
# A unique, case-sensitive identifier that you provide to ensure the
|
@@ -581,7 +602,7 @@ module Aws::EKS
|
|
581
602
|
# addon_name: "String", # required
|
582
603
|
# addon_version: "String",
|
583
604
|
# service_account_role_arn: "RoleArn",
|
584
|
-
# resolve_conflicts: "OVERWRITE", # accepts OVERWRITE, NONE
|
605
|
+
# resolve_conflicts: "OVERWRITE", # accepts OVERWRITE, NONE, PRESERVE
|
585
606
|
# client_request_token: "String",
|
586
607
|
# tags: {
|
587
608
|
# "TagKey" => "TagValue",
|
@@ -592,7 +613,7 @@ module Aws::EKS
|
|
592
613
|
#
|
593
614
|
# resp.addon.addon_name #=> String
|
594
615
|
# resp.addon.cluster_name #=> String
|
595
|
-
# resp.addon.status #=> String, one of "CREATING", "ACTIVE", "CREATE_FAILED", "UPDATING", "DELETING", "DELETE_FAILED", "DEGRADED"
|
616
|
+
# resp.addon.status #=> String, one of "CREATING", "ACTIVE", "CREATE_FAILED", "UPDATING", "DELETING", "DELETE_FAILED", "DEGRADED", "UPDATE_FAILED"
|
596
617
|
# resp.addon.addon_version #=> String
|
597
618
|
# resp.addon.health.issues #=> Array
|
598
619
|
# resp.addon.health.issues[0].code #=> String, one of "AccessDenied", "InternalFailure", "ClusterUnreachable", "InsufficientNumberOfReplicas", "ConfigurationConflict", "AdmissionRequestDenied", "UnsupportedAddonModification", "K8sResourceNotFound"
|
@@ -1004,7 +1025,7 @@ module Aws::EKS
|
|
1004
1025
|
# default disk size is 20 GiB. If you specify `launchTemplate`, then
|
1005
1026
|
# don't specify `diskSize`, or the node group deployment will fail. For
|
1006
1027
|
# more information about using launch templates with Amazon EKS, see
|
1007
|
-
# [Launch template support][1] in the Amazon EKS User Guide
|
1028
|
+
# [Launch template support][1] in the *Amazon EKS User Guide*.
|
1008
1029
|
#
|
1009
1030
|
#
|
1010
1031
|
#
|
@@ -1015,8 +1036,8 @@ module Aws::EKS
|
|
1015
1036
|
# node group. If you specify `launchTemplate`, then don't specify [
|
1016
1037
|
# `SubnetId` ][1] in your launch template, or the node group deployment
|
1017
1038
|
# will fail. For more information about using launch templates with
|
1018
|
-
# Amazon EKS, see [Launch template support][2] in the Amazon EKS User
|
1019
|
-
# Guide
|
1039
|
+
# Amazon EKS, see [Launch template support][2] in the *Amazon EKS User
|
1040
|
+
# Guide*.
|
1020
1041
|
#
|
1021
1042
|
#
|
1022
1043
|
#
|
@@ -1051,7 +1072,7 @@ module Aws::EKS
|
|
1051
1072
|
# you specify `launchTemplate`, and your launch template uses a custom
|
1052
1073
|
# AMI, then don't specify `amiType`, or the node group deployment will
|
1053
1074
|
# fail. For more information about using launch templates with Amazon
|
1054
|
-
# EKS, see [Launch template support][1] in the Amazon EKS User Guide
|
1075
|
+
# EKS, see [Launch template support][1] in the *Amazon EKS User Guide*.
|
1055
1076
|
#
|
1056
1077
|
#
|
1057
1078
|
#
|
@@ -1062,7 +1083,7 @@ module Aws::EKS
|
|
1062
1083
|
# you specify `launchTemplate`, then don't specify `remoteAccess`, or
|
1063
1084
|
# the node group deployment will fail. For more information about using
|
1064
1085
|
# launch templates with Amazon EKS, see [Launch template support][1] in
|
1065
|
-
# the Amazon EKS User Guide
|
1086
|
+
# the *Amazon EKS User Guide*.
|
1066
1087
|
#
|
1067
1088
|
#
|
1068
1089
|
#
|
@@ -1080,11 +1101,11 @@ module Aws::EKS
|
|
1080
1101
|
# `launchTemplate`, then don't specify [ `IamInstanceProfile` ][2] in
|
1081
1102
|
# your launch template, or the node group deployment will fail. For more
|
1082
1103
|
# information about using launch templates with Amazon EKS, see [Launch
|
1083
|
-
# template support][3] in the Amazon EKS User Guide
|
1104
|
+
# template support][3] in the *Amazon EKS User Guide*.
|
1084
1105
|
#
|
1085
1106
|
#
|
1086
1107
|
#
|
1087
|
-
# [1]: https://docs.aws.amazon.com/eks/latest/userguide/
|
1108
|
+
# [1]: https://docs.aws.amazon.com/eks/latest/userguide/create-node-role.html
|
1088
1109
|
# [2]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_IamInstanceProfile.html
|
1089
1110
|
# [3]: https://docs.aws.amazon.com/eks/latest/userguide/launch-templates.html
|
1090
1111
|
#
|
@@ -1094,6 +1115,11 @@ module Aws::EKS
|
|
1094
1115
|
#
|
1095
1116
|
# @option params [Array<Types::Taint>] :taints
|
1096
1117
|
# The Kubernetes taints to be applied to the nodes in the node group.
|
1118
|
+
# For more information, see [Node taints on managed node groups][1].
|
1119
|
+
#
|
1120
|
+
#
|
1121
|
+
#
|
1122
|
+
# [1]: https://docs.aws.amazon.com/eks/latest/userguide/node-taints-managed-node-groups.html
|
1097
1123
|
#
|
1098
1124
|
# @option params [Hash<String,String>] :tags
|
1099
1125
|
# The metadata to apply to the node group to assist with categorization
|
@@ -1128,7 +1154,7 @@ module Aws::EKS
|
|
1128
1154
|
# launch template uses a custom AMI, then don't specify `version`, or
|
1129
1155
|
# the node group deployment will fail. For more information about using
|
1130
1156
|
# launch templates with Amazon EKS, see [Launch template support][1] in
|
1131
|
-
# the Amazon EKS User Guide
|
1157
|
+
# the *Amazon EKS User Guide*.
|
1132
1158
|
#
|
1133
1159
|
#
|
1134
1160
|
#
|
@@ -1143,7 +1169,7 @@ module Aws::EKS
|
|
1143
1169
|
# template uses a custom AMI, then don't specify `releaseVersion`, or
|
1144
1170
|
# the node group deployment will fail. For more information about using
|
1145
1171
|
# launch templates with Amazon EKS, see [Launch template support][2] in
|
1146
|
-
# the Amazon EKS User Guide
|
1172
|
+
# the *Amazon EKS User Guide*.
|
1147
1173
|
#
|
1148
1174
|
#
|
1149
1175
|
#
|
@@ -1167,7 +1193,7 @@ module Aws::EKS
|
|
1167
1193
|
# disk_size: 1,
|
1168
1194
|
# subnets: ["String"], # required
|
1169
1195
|
# instance_types: ["String"],
|
1170
|
-
# ami_type: "AL2_x86_64", # accepts AL2_x86_64, AL2_x86_64_GPU, AL2_ARM_64, CUSTOM, BOTTLEROCKET_ARM_64, BOTTLEROCKET_x86_64
|
1196
|
+
# ami_type: "AL2_x86_64", # accepts AL2_x86_64, AL2_x86_64_GPU, AL2_ARM_64, CUSTOM, BOTTLEROCKET_ARM_64, BOTTLEROCKET_x86_64, BOTTLEROCKET_ARM_64_NVIDIA, BOTTLEROCKET_x86_64_NVIDIA
|
1171
1197
|
# remote_access: {
|
1172
1198
|
# ec2_ssh_key: "String",
|
1173
1199
|
# source_security_groups: ["String"],
|
@@ -1222,7 +1248,7 @@ module Aws::EKS
|
|
1222
1248
|
# resp.nodegroup.remote_access.ec2_ssh_key #=> String
|
1223
1249
|
# resp.nodegroup.remote_access.source_security_groups #=> Array
|
1224
1250
|
# resp.nodegroup.remote_access.source_security_groups[0] #=> String
|
1225
|
-
# resp.nodegroup.ami_type #=> String, one of "AL2_x86_64", "AL2_x86_64_GPU", "AL2_ARM_64", "CUSTOM", "BOTTLEROCKET_ARM_64", "BOTTLEROCKET_x86_64"
|
1251
|
+
# resp.nodegroup.ami_type #=> String, one of "AL2_x86_64", "AL2_x86_64_GPU", "AL2_ARM_64", "CUSTOM", "BOTTLEROCKET_ARM_64", "BOTTLEROCKET_x86_64", "BOTTLEROCKET_ARM_64_NVIDIA", "BOTTLEROCKET_x86_64_NVIDIA"
|
1226
1252
|
# resp.nodegroup.node_role #=> String
|
1227
1253
|
# resp.nodegroup.labels #=> Hash
|
1228
1254
|
# resp.nodegroup.labels["labelKey"] #=> String
|
@@ -1235,7 +1261,7 @@ module Aws::EKS
|
|
1235
1261
|
# resp.nodegroup.resources.remote_access_security_group #=> String
|
1236
1262
|
# resp.nodegroup.disk_size #=> Integer
|
1237
1263
|
# resp.nodegroup.health.issues #=> Array
|
1238
|
-
# resp.nodegroup.health.issues[0].code #=> String, one of "AutoScalingGroupNotFound", "AutoScalingGroupInvalidConfiguration", "Ec2SecurityGroupNotFound", "Ec2SecurityGroupDeletionFailure", "Ec2LaunchTemplateNotFound", "Ec2LaunchTemplateVersionMismatch", "Ec2SubnetNotFound", "Ec2SubnetInvalidConfiguration", "IamInstanceProfileNotFound", "IamLimitExceeded", "IamNodeRoleNotFound", "NodeCreationFailure", "AsgInstanceLaunchFailures", "InstanceLimitExceeded", "InsufficientFreeAddresses", "AccessDenied", "InternalFailure", "ClusterUnreachable"
|
1264
|
+
# resp.nodegroup.health.issues[0].code #=> String, one of "AutoScalingGroupNotFound", "AutoScalingGroupInvalidConfiguration", "Ec2SecurityGroupNotFound", "Ec2SecurityGroupDeletionFailure", "Ec2LaunchTemplateNotFound", "Ec2LaunchTemplateVersionMismatch", "Ec2SubnetNotFound", "Ec2SubnetInvalidConfiguration", "IamInstanceProfileNotFound", "IamLimitExceeded", "IamNodeRoleNotFound", "NodeCreationFailure", "AsgInstanceLaunchFailures", "InstanceLimitExceeded", "InsufficientFreeAddresses", "AccessDenied", "InternalFailure", "ClusterUnreachable", "Ec2SubnetMissingIpv6Assignment"
|
1239
1265
|
# resp.nodegroup.health.issues[0].message #=> String
|
1240
1266
|
# resp.nodegroup.health.issues[0].resource_ids #=> Array
|
1241
1267
|
# resp.nodegroup.health.issues[0].resource_ids[0] #=> String
|
@@ -1294,7 +1320,7 @@ module Aws::EKS
|
|
1294
1320
|
#
|
1295
1321
|
# resp.addon.addon_name #=> String
|
1296
1322
|
# resp.addon.cluster_name #=> String
|
1297
|
-
# resp.addon.status #=> String, one of "CREATING", "ACTIVE", "CREATE_FAILED", "UPDATING", "DELETING", "DELETE_FAILED", "DEGRADED"
|
1323
|
+
# resp.addon.status #=> String, one of "CREATING", "ACTIVE", "CREATE_FAILED", "UPDATING", "DELETING", "DELETE_FAILED", "DEGRADED", "UPDATE_FAILED"
|
1298
1324
|
# resp.addon.addon_version #=> String
|
1299
1325
|
# resp.addon.health.issues #=> Array
|
1300
1326
|
# resp.addon.health.issues[0].code #=> String, one of "AccessDenied", "InternalFailure", "ClusterUnreachable", "InsufficientNumberOfReplicas", "ConfigurationConflict", "AdmissionRequestDenied", "UnsupportedAddonModification", "K8sResourceNotFound"
|
@@ -1508,7 +1534,7 @@ module Aws::EKS
|
|
1508
1534
|
# resp.nodegroup.remote_access.ec2_ssh_key #=> String
|
1509
1535
|
# resp.nodegroup.remote_access.source_security_groups #=> Array
|
1510
1536
|
# resp.nodegroup.remote_access.source_security_groups[0] #=> String
|
1511
|
-
# resp.nodegroup.ami_type #=> String, one of "AL2_x86_64", "AL2_x86_64_GPU", "AL2_ARM_64", "CUSTOM", "BOTTLEROCKET_ARM_64", "BOTTLEROCKET_x86_64"
|
1537
|
+
# resp.nodegroup.ami_type #=> String, one of "AL2_x86_64", "AL2_x86_64_GPU", "AL2_ARM_64", "CUSTOM", "BOTTLEROCKET_ARM_64", "BOTTLEROCKET_x86_64", "BOTTLEROCKET_ARM_64_NVIDIA", "BOTTLEROCKET_x86_64_NVIDIA"
|
1512
1538
|
# resp.nodegroup.node_role #=> String
|
1513
1539
|
# resp.nodegroup.labels #=> Hash
|
1514
1540
|
# resp.nodegroup.labels["labelKey"] #=> String
|
@@ -1521,7 +1547,7 @@ module Aws::EKS
|
|
1521
1547
|
# resp.nodegroup.resources.remote_access_security_group #=> String
|
1522
1548
|
# resp.nodegroup.disk_size #=> Integer
|
1523
1549
|
# resp.nodegroup.health.issues #=> Array
|
1524
|
-
# resp.nodegroup.health.issues[0].code #=> String, one of "AutoScalingGroupNotFound", "AutoScalingGroupInvalidConfiguration", "Ec2SecurityGroupNotFound", "Ec2SecurityGroupDeletionFailure", "Ec2LaunchTemplateNotFound", "Ec2LaunchTemplateVersionMismatch", "Ec2SubnetNotFound", "Ec2SubnetInvalidConfiguration", "IamInstanceProfileNotFound", "IamLimitExceeded", "IamNodeRoleNotFound", "NodeCreationFailure", "AsgInstanceLaunchFailures", "InstanceLimitExceeded", "InsufficientFreeAddresses", "AccessDenied", "InternalFailure", "ClusterUnreachable"
|
1550
|
+
# resp.nodegroup.health.issues[0].code #=> String, one of "AutoScalingGroupNotFound", "AutoScalingGroupInvalidConfiguration", "Ec2SecurityGroupNotFound", "Ec2SecurityGroupDeletionFailure", "Ec2LaunchTemplateNotFound", "Ec2LaunchTemplateVersionMismatch", "Ec2SubnetNotFound", "Ec2SubnetInvalidConfiguration", "IamInstanceProfileNotFound", "IamLimitExceeded", "IamNodeRoleNotFound", "NodeCreationFailure", "AsgInstanceLaunchFailures", "InstanceLimitExceeded", "InsufficientFreeAddresses", "AccessDenied", "InternalFailure", "ClusterUnreachable", "Ec2SubnetMissingIpv6Assignment"
|
1525
1551
|
# resp.nodegroup.health.issues[0].message #=> String
|
1526
1552
|
# resp.nodegroup.health.issues[0].resource_ids #=> Array
|
1527
1553
|
# resp.nodegroup.health.issues[0].resource_ids[0] #=> String
|
@@ -1637,7 +1663,7 @@ module Aws::EKS
|
|
1637
1663
|
#
|
1638
1664
|
# resp.addon.addon_name #=> String
|
1639
1665
|
# resp.addon.cluster_name #=> String
|
1640
|
-
# resp.addon.status #=> String, one of "CREATING", "ACTIVE", "CREATE_FAILED", "UPDATING", "DELETING", "DELETE_FAILED", "DEGRADED"
|
1666
|
+
# resp.addon.status #=> String, one of "CREATING", "ACTIVE", "CREATE_FAILED", "UPDATING", "DELETING", "DELETE_FAILED", "DEGRADED", "UPDATE_FAILED"
|
1641
1667
|
# resp.addon.addon_version #=> String
|
1642
1668
|
# resp.addon.health.issues #=> Array
|
1643
1669
|
# resp.addon.health.issues[0].code #=> String, one of "AccessDenied", "InternalFailure", "ClusterUnreachable", "InsufficientNumberOfReplicas", "ConfigurationConflict", "AdmissionRequestDenied", "UnsupportedAddonModification", "K8sResourceNotFound"
|
@@ -1999,7 +2025,7 @@ module Aws::EKS
|
|
1999
2025
|
# resp.nodegroup.remote_access.ec2_ssh_key #=> String
|
2000
2026
|
# resp.nodegroup.remote_access.source_security_groups #=> Array
|
2001
2027
|
# resp.nodegroup.remote_access.source_security_groups[0] #=> String
|
2002
|
-
# resp.nodegroup.ami_type #=> String, one of "AL2_x86_64", "AL2_x86_64_GPU", "AL2_ARM_64", "CUSTOM", "BOTTLEROCKET_ARM_64", "BOTTLEROCKET_x86_64"
|
2028
|
+
# resp.nodegroup.ami_type #=> String, one of "AL2_x86_64", "AL2_x86_64_GPU", "AL2_ARM_64", "CUSTOM", "BOTTLEROCKET_ARM_64", "BOTTLEROCKET_x86_64", "BOTTLEROCKET_ARM_64_NVIDIA", "BOTTLEROCKET_x86_64_NVIDIA"
|
2003
2029
|
# resp.nodegroup.node_role #=> String
|
2004
2030
|
# resp.nodegroup.labels #=> Hash
|
2005
2031
|
# resp.nodegroup.labels["labelKey"] #=> String
|
@@ -2012,7 +2038,7 @@ module Aws::EKS
|
|
2012
2038
|
# resp.nodegroup.resources.remote_access_security_group #=> String
|
2013
2039
|
# resp.nodegroup.disk_size #=> Integer
|
2014
2040
|
# resp.nodegroup.health.issues #=> Array
|
2015
|
-
# resp.nodegroup.health.issues[0].code #=> String, one of "AutoScalingGroupNotFound", "AutoScalingGroupInvalidConfiguration", "Ec2SecurityGroupNotFound", "Ec2SecurityGroupDeletionFailure", "Ec2LaunchTemplateNotFound", "Ec2LaunchTemplateVersionMismatch", "Ec2SubnetNotFound", "Ec2SubnetInvalidConfiguration", "IamInstanceProfileNotFound", "IamLimitExceeded", "IamNodeRoleNotFound", "NodeCreationFailure", "AsgInstanceLaunchFailures", "InstanceLimitExceeded", "InsufficientFreeAddresses", "AccessDenied", "InternalFailure", "ClusterUnreachable"
|
2041
|
+
# resp.nodegroup.health.issues[0].code #=> String, one of "AutoScalingGroupNotFound", "AutoScalingGroupInvalidConfiguration", "Ec2SecurityGroupNotFound", "Ec2SecurityGroupDeletionFailure", "Ec2LaunchTemplateNotFound", "Ec2LaunchTemplateVersionMismatch", "Ec2SubnetNotFound", "Ec2SubnetInvalidConfiguration", "IamInstanceProfileNotFound", "IamLimitExceeded", "IamNodeRoleNotFound", "NodeCreationFailure", "AsgInstanceLaunchFailures", "InstanceLimitExceeded", "InsufficientFreeAddresses", "AccessDenied", "InternalFailure", "ClusterUnreachable", "Ec2SubnetMissingIpv6Assignment"
|
2016
2042
|
# resp.nodegroup.health.issues[0].message #=> String
|
2017
2043
|
# resp.nodegroup.health.issues[0].resource_ids #=> Array
|
2018
2044
|
# resp.nodegroup.health.issues[0].resource_ids[0] #=> String
|
@@ -2040,7 +2066,7 @@ module Aws::EKS
|
|
2040
2066
|
end
|
2041
2067
|
|
2042
2068
|
# Returns descriptive information about an update against your Amazon
|
2043
|
-
# EKS cluster or associated managed node group.
|
2069
|
+
# EKS cluster or associated managed node group or Amazon EKS add-on.
|
2044
2070
|
#
|
2045
2071
|
# When the status of the update is `Succeeded`, the update is complete.
|
2046
2072
|
# If an update fails, the status is `Failed`, and an error detail
|
@@ -2053,11 +2079,13 @@ module Aws::EKS
|
|
2053
2079
|
# The ID of the update to describe.
|
2054
2080
|
#
|
2055
2081
|
# @option params [String] :nodegroup_name
|
2056
|
-
# The name of the Amazon EKS node group associated with the update.
|
2082
|
+
# The name of the Amazon EKS node group associated with the update. This
|
2083
|
+
# parameter is required if the update is a node group update.
|
2057
2084
|
#
|
2058
2085
|
# @option params [String] :addon_name
|
2059
2086
|
# The name of the add-on. The name must match one of the names returned
|
2060
|
-
# by [ `ListAddons` ][1].
|
2087
|
+
# by [ `ListAddons` ][1]. This parameter is required if the update is an
|
2088
|
+
# add-on update.
|
2061
2089
|
#
|
2062
2090
|
#
|
2063
2091
|
#
|
@@ -2780,8 +2808,20 @@ module Aws::EKS
|
|
2780
2808
|
# [2]: https://docs.aws.amazon.com/eks/latest/userguide/enable-iam-roles-for-service-accounts.html
|
2781
2809
|
#
|
2782
2810
|
# @option params [String] :resolve_conflicts
|
2783
|
-
# How to resolve
|
2784
|
-
#
|
2811
|
+
# How to resolve field value conflicts for an Amazon EKS add-on if
|
2812
|
+
# you've changed a value from the Amazon EKS default value. Conflicts
|
2813
|
+
# are handled based on the option you choose:
|
2814
|
+
#
|
2815
|
+
# * **None** – Amazon EKS doesn't change the value. The update might
|
2816
|
+
# fail.
|
2817
|
+
#
|
2818
|
+
# * **Overwrite** – Amazon EKS overwrites the changed value back to the
|
2819
|
+
# Amazon EKS default value.
|
2820
|
+
#
|
2821
|
+
# * **Preserve** – Amazon EKS preserves the value. If you choose this
|
2822
|
+
# option, we recommend that you test any field and value changes on a
|
2823
|
+
# non-production cluster before updating the add-on on your production
|
2824
|
+
# cluster.
|
2785
2825
|
#
|
2786
2826
|
# @option params [String] :client_request_token
|
2787
2827
|
# Unique, case-sensitive identifier that you provide to ensure the
|
@@ -2801,7 +2841,7 @@ module Aws::EKS
|
|
2801
2841
|
# addon_name: "String", # required
|
2802
2842
|
# addon_version: "String",
|
2803
2843
|
# service_account_role_arn: "RoleArn",
|
2804
|
-
# resolve_conflicts: "OVERWRITE", # accepts OVERWRITE, NONE
|
2844
|
+
# resolve_conflicts: "OVERWRITE", # accepts OVERWRITE, NONE, PRESERVE
|
2805
2845
|
# client_request_token: "String",
|
2806
2846
|
# })
|
2807
2847
|
#
|
@@ -3033,7 +3073,12 @@ module Aws::EKS
|
|
3033
3073
|
#
|
3034
3074
|
# @option params [Types::UpdateTaintsPayload] :taints
|
3035
3075
|
# The Kubernetes taints to be applied to the nodes in the node group
|
3036
|
-
# after the update.
|
3076
|
+
# after the update. For more information, see [Node taints on managed
|
3077
|
+
# node groups][1].
|
3078
|
+
#
|
3079
|
+
#
|
3080
|
+
#
|
3081
|
+
# [1]: https://docs.aws.amazon.com/eks/latest/userguide/node-taints-managed-node-groups.html
|
3037
3082
|
#
|
3038
3083
|
# @option params [Types::NodegroupScalingConfig] :scaling_config
|
3039
3084
|
# The scaling configuration details for the Auto Scaling group after the
|
@@ -3162,7 +3207,7 @@ module Aws::EKS
|
|
3162
3207
|
# specify `launchTemplate`, and your launch template uses a custom AMI,
|
3163
3208
|
# then don't specify `version`, or the node group update will fail. For
|
3164
3209
|
# more information about using launch templates with Amazon EKS, see
|
3165
|
-
# [Launch template support][1] in the Amazon EKS User Guide
|
3210
|
+
# [Launch template support][1] in the *Amazon EKS User Guide*.
|
3166
3211
|
#
|
3167
3212
|
#
|
3168
3213
|
#
|
@@ -3176,8 +3221,8 @@ module Aws::EKS
|
|
3176
3221
|
# Guide*. If you specify `launchTemplate`, and your launch template uses
|
3177
3222
|
# a custom AMI, then don't specify `releaseVersion`, or the node group
|
3178
3223
|
# update will fail. For more information about using launch templates
|
3179
|
-
# with Amazon EKS, see [Launch template support][2] in the Amazon EKS
|
3180
|
-
# User Guide
|
3224
|
+
# with Amazon EKS, see [Launch template support][2] in the *Amazon EKS
|
3225
|
+
# User Guide*.
|
3181
3226
|
#
|
3182
3227
|
#
|
3183
3228
|
#
|
@@ -3260,7 +3305,7 @@ module Aws::EKS
|
|
3260
3305
|
params: params,
|
3261
3306
|
config: config)
|
3262
3307
|
context[:gem_name] = 'aws-sdk-eks'
|
3263
|
-
context[:gem_version] = '1.
|
3308
|
+
context[:gem_version] = '1.76.0'
|
3264
3309
|
Seahorse::Client::Request.new(handlers, context)
|
3265
3310
|
end
|
3266
3311
|
|
data/lib/aws-sdk-eks/types.rb
CHANGED
@@ -605,7 +605,7 @@ module Aws::EKS
|
|
605
605
|
# addon_name: "String", # required
|
606
606
|
# addon_version: "String",
|
607
607
|
# service_account_role_arn: "RoleArn",
|
608
|
-
# resolve_conflicts: "OVERWRITE", # accepts OVERWRITE, NONE
|
608
|
+
# resolve_conflicts: "OVERWRITE", # accepts OVERWRITE, NONE, PRESERVE
|
609
609
|
# client_request_token: "String",
|
610
610
|
# tags: {
|
611
611
|
# "TagKey" => "TagValue",
|
@@ -656,8 +656,29 @@ module Aws::EKS
|
|
656
656
|
# @return [String]
|
657
657
|
#
|
658
658
|
# @!attribute [rw] resolve_conflicts
|
659
|
-
# How to resolve
|
660
|
-
#
|
659
|
+
# How to resolve field value conflicts for an Amazon EKS add-on.
|
660
|
+
# Conflicts are handled based on the value you choose:
|
661
|
+
#
|
662
|
+
# * **None** – If the self-managed version of the add-on is installed
|
663
|
+
# on your cluster, Amazon EKS doesn't change the value. Creation of
|
664
|
+
# the add-on might fail.
|
665
|
+
#
|
666
|
+
# * **Overwrite** – If the self-managed version of the add-on is
|
667
|
+
# installed on your cluster and the Amazon EKS default value is
|
668
|
+
# different than the existing value, Amazon EKS changes the value to
|
669
|
+
# the Amazon EKS default value.
|
670
|
+
#
|
671
|
+
# * **Preserve** – Not supported. You can set this value when updating
|
672
|
+
# an add-on though. For more information, see [UpdateAddon][1].
|
673
|
+
#
|
674
|
+
# If you don't currently have the self-managed version of the add-on
|
675
|
+
# installed on your cluster, the Amazon EKS add-on is installed.
|
676
|
+
# Amazon EKS sets all values to default values, regardless of the
|
677
|
+
# option that you specify.
|
678
|
+
#
|
679
|
+
#
|
680
|
+
#
|
681
|
+
# [1]: https://docs.aws.amazon.com/eks/latest/APIReference/API_UpdateAddon.html
|
661
682
|
# @return [String]
|
662
683
|
#
|
663
684
|
# @!attribute [rw] client_request_token
|
@@ -965,7 +986,7 @@ module Aws::EKS
|
|
965
986
|
# disk_size: 1,
|
966
987
|
# subnets: ["String"], # required
|
967
988
|
# instance_types: ["String"],
|
968
|
-
# ami_type: "AL2_x86_64", # accepts AL2_x86_64, AL2_x86_64_GPU, AL2_ARM_64, CUSTOM, BOTTLEROCKET_ARM_64, BOTTLEROCKET_x86_64
|
989
|
+
# ami_type: "AL2_x86_64", # accepts AL2_x86_64, AL2_x86_64_GPU, AL2_ARM_64, CUSTOM, BOTTLEROCKET_ARM_64, BOTTLEROCKET_x86_64, BOTTLEROCKET_ARM_64_NVIDIA, BOTTLEROCKET_x86_64_NVIDIA
|
969
990
|
# remote_access: {
|
970
991
|
# ec2_ssh_key: "String",
|
971
992
|
# source_security_groups: ["String"],
|
@@ -1017,7 +1038,8 @@ module Aws::EKS
|
|
1017
1038
|
# The default disk size is 20 GiB. If you specify `launchTemplate`,
|
1018
1039
|
# then don't specify `diskSize`, or the node group deployment will
|
1019
1040
|
# fail. For more information about using launch templates with Amazon
|
1020
|
-
# EKS, see [Launch template support][1] in the Amazon EKS User
|
1041
|
+
# EKS, see [Launch template support][1] in the *Amazon EKS User
|
1042
|
+
# Guide*.
|
1021
1043
|
#
|
1022
1044
|
#
|
1023
1045
|
#
|
@@ -1030,7 +1052,7 @@ module Aws::EKS
|
|
1030
1052
|
# specify [ `SubnetId` ][1] in your launch template, or the node group
|
1031
1053
|
# deployment will fail. For more information about using launch
|
1032
1054
|
# templates with Amazon EKS, see [Launch template support][2] in the
|
1033
|
-
# Amazon EKS User Guide
|
1055
|
+
# *Amazon EKS User Guide*.
|
1034
1056
|
#
|
1035
1057
|
#
|
1036
1058
|
#
|
@@ -1067,8 +1089,8 @@ module Aws::EKS
|
|
1067
1089
|
# you specify `launchTemplate`, and your launch template uses a custom
|
1068
1090
|
# AMI, then don't specify `amiType`, or the node group deployment
|
1069
1091
|
# will fail. For more information about using launch templates with
|
1070
|
-
# Amazon EKS, see [Launch template support][1] in the Amazon EKS User
|
1071
|
-
# Guide
|
1092
|
+
# Amazon EKS, see [Launch template support][1] in the *Amazon EKS User
|
1093
|
+
# Guide*.
|
1072
1094
|
#
|
1073
1095
|
#
|
1074
1096
|
#
|
@@ -1080,7 +1102,7 @@ module Aws::EKS
|
|
1080
1102
|
# If you specify `launchTemplate`, then don't specify `remoteAccess`,
|
1081
1103
|
# or the node group deployment will fail. For more information about
|
1082
1104
|
# using launch templates with Amazon EKS, see [Launch template
|
1083
|
-
# support][1] in the Amazon EKS User Guide
|
1105
|
+
# support][1] in the *Amazon EKS User Guide*.
|
1084
1106
|
#
|
1085
1107
|
#
|
1086
1108
|
#
|
@@ -1099,11 +1121,12 @@ module Aws::EKS
|
|
1099
1121
|
# specify `launchTemplate`, then don't specify [ `IamInstanceProfile`
|
1100
1122
|
# ][2] in your launch template, or the node group deployment will
|
1101
1123
|
# fail. For more information about using launch templates with Amazon
|
1102
|
-
# EKS, see [Launch template support][3] in the Amazon EKS User
|
1124
|
+
# EKS, see [Launch template support][3] in the *Amazon EKS User
|
1125
|
+
# Guide*.
|
1103
1126
|
#
|
1104
1127
|
#
|
1105
1128
|
#
|
1106
|
-
# [1]: https://docs.aws.amazon.com/eks/latest/userguide/
|
1129
|
+
# [1]: https://docs.aws.amazon.com/eks/latest/userguide/create-node-role.html
|
1107
1130
|
# [2]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_IamInstanceProfile.html
|
1108
1131
|
# [3]: https://docs.aws.amazon.com/eks/latest/userguide/launch-templates.html
|
1109
1132
|
# @return [String]
|
@@ -1115,6 +1138,11 @@ module Aws::EKS
|
|
1115
1138
|
#
|
1116
1139
|
# @!attribute [rw] taints
|
1117
1140
|
# The Kubernetes taints to be applied to the nodes in the node group.
|
1141
|
+
# For more information, see [Node taints on managed node groups][1].
|
1142
|
+
#
|
1143
|
+
#
|
1144
|
+
#
|
1145
|
+
# [1]: https://docs.aws.amazon.com/eks/latest/userguide/node-taints-managed-node-groups.html
|
1118
1146
|
# @return [Array<Types::Taint>]
|
1119
1147
|
#
|
1120
1148
|
# @!attribute [rw] tags
|
@@ -1155,7 +1183,7 @@ module Aws::EKS
|
|
1155
1183
|
# launch template uses a custom AMI, then don't specify `version`, or
|
1156
1184
|
# the node group deployment will fail. For more information about
|
1157
1185
|
# using launch templates with Amazon EKS, see [Launch template
|
1158
|
-
# support][1] in the Amazon EKS User Guide
|
1186
|
+
# support][1] in the *Amazon EKS User Guide*.
|
1159
1187
|
#
|
1160
1188
|
#
|
1161
1189
|
#
|
@@ -1171,7 +1199,8 @@ module Aws::EKS
|
|
1171
1199
|
# `launchTemplate`, and your launch template uses a custom AMI, then
|
1172
1200
|
# don't specify `releaseVersion`, or the node group deployment will
|
1173
1201
|
# fail. For more information about using launch templates with Amazon
|
1174
|
-
# EKS, see [Launch template support][2] in the Amazon EKS User
|
1202
|
+
# EKS, see [Launch template support][2] in the *Amazon EKS User
|
1203
|
+
# Guide*.
|
1175
1204
|
#
|
1176
1205
|
#
|
1177
1206
|
#
|
@@ -1704,11 +1733,13 @@ module Aws::EKS
|
|
1704
1733
|
#
|
1705
1734
|
# @!attribute [rw] nodegroup_name
|
1706
1735
|
# The name of the Amazon EKS node group associated with the update.
|
1736
|
+
# This parameter is required if the update is a node group update.
|
1707
1737
|
# @return [String]
|
1708
1738
|
#
|
1709
1739
|
# @!attribute [rw] addon_name
|
1710
1740
|
# The name of the add-on. The name must match one of the names
|
1711
|
-
# returned by [ `ListAddons` ][1].
|
1741
|
+
# returned by [ `ListAddons` ][1]. This parameter is required if the
|
1742
|
+
# update is an add-on update.
|
1712
1743
|
#
|
1713
1744
|
#
|
1714
1745
|
#
|
@@ -1994,7 +2025,8 @@ module Aws::EKS
|
|
1994
2025
|
# }
|
1995
2026
|
#
|
1996
2027
|
# @!attribute [rw] type
|
1997
|
-
# The type of the identity provider configuration.
|
2028
|
+
# The type of the identity provider configuration. The only type
|
2029
|
+
# available is `oidc`.
|
1998
2030
|
# @return [String]
|
1999
2031
|
#
|
2000
2032
|
# @!attribute [rw] name
|
@@ -2129,7 +2161,7 @@ module Aws::EKS
|
|
2129
2161
|
# instances to be assigned a public IP address, then you need to
|
2130
2162
|
# enable the `auto-assign public IP address` setting for the subnet.
|
2131
2163
|
# See [Modifying the public IPv4 addressing attribute for your
|
2132
|
-
# subnet][1] in the Amazon VPC User Guide
|
2164
|
+
# subnet][1] in the *Amazon VPC User Guide*.
|
2133
2165
|
#
|
2134
2166
|
# * **IamInstanceProfileNotFound**\: We couldn't find the IAM
|
2135
2167
|
# instance profile for your managed node group. You may be able to
|
@@ -2212,21 +2244,22 @@ module Aws::EKS
|
|
2212
2244
|
# @return [String]
|
2213
2245
|
#
|
2214
2246
|
# @!attribute [rw] ip_family
|
2215
|
-
# Specify which IP
|
2216
|
-
#
|
2217
|
-
#
|
2218
|
-
#
|
2219
|
-
#
|
2247
|
+
# Specify which IP family is used to assign Kubernetes pod and service
|
2248
|
+
# IP addresses. If you don't specify a value, `ipv4` is used by
|
2249
|
+
# default. You can only specify an IP family when you create a cluster
|
2250
|
+
# and can't change this value once the cluster is created. If you
|
2251
|
+
# specify `ipv6`, the VPC and subnets that you specify for cluster
|
2220
2252
|
# creation must have both IPv4 and IPv6 CIDR blocks assigned to them.
|
2253
|
+
# You can't specify `ipv6` for clusters in China Regions.
|
2221
2254
|
#
|
2222
2255
|
# You can only specify `ipv6` for 1.21 and later clusters that use
|
2223
|
-
# version 1.10.
|
2224
|
-
# `ipv6`, then ensure that your VPC meets the requirements
|
2225
|
-
#
|
2226
|
-
#
|
2227
|
-
#
|
2228
|
-
#
|
2229
|
-
#
|
2256
|
+
# version 1.10.1 or later of the Amazon VPC CNI add-on. If you specify
|
2257
|
+
# `ipv6`, then ensure that your VPC meets the requirements listed in
|
2258
|
+
# the considerations listed in [Assigning IPv6 addresses to pods and
|
2259
|
+
# services][1] in the Amazon EKS User Guide. Kubernetes assigns
|
2260
|
+
# services IPv6 addresses from the unique local address range
|
2261
|
+
# (fc00::/7). You can't specify a custom IPv6 CIDR block. Pod
|
2262
|
+
# addresses are assigned from the subnet's IPv6 CIDR.
|
2230
2263
|
#
|
2231
2264
|
#
|
2232
2265
|
#
|
@@ -2247,7 +2280,7 @@ module Aws::EKS
|
|
2247
2280
|
# not both.
|
2248
2281
|
#
|
2249
2282
|
# @!attribute [rw] service_ipv_4_cidr
|
2250
|
-
# The CIDR block that Kubernetes
|
2283
|
+
# The CIDR block that Kubernetes pod and service IP addresses are
|
2251
2284
|
# assigned from. Kubernetes assigns addresses from an IPv4 CIDR block
|
2252
2285
|
# assigned to a subnet that the node is in. If you didn't specify a
|
2253
2286
|
# CIDR block when you created the cluster, then Kubernetes assigns
|
@@ -2257,17 +2290,19 @@ module Aws::EKS
|
|
2257
2290
|
# @return [String]
|
2258
2291
|
#
|
2259
2292
|
# @!attribute [rw] service_ipv_6_cidr
|
2260
|
-
# The CIDR block that Kubernetes
|
2293
|
+
# The CIDR block that Kubernetes pod and service IP addresses are
|
2261
2294
|
# assigned from if you created a 1.21 or later cluster with version
|
2262
|
-
# 1.10.
|
2295
|
+
# 1.10.1 or later of the Amazon VPC CNI add-on and specified `ipv6`
|
2263
2296
|
# for **ipFamily** when you created the cluster. Kubernetes assigns
|
2264
|
-
# addresses from the unique local address range (fc00::/7)
|
2297
|
+
# service addresses from the unique local address range (`fc00::/7`)
|
2298
|
+
# because you can't specify a custom IPv6 CIDR block when you create
|
2299
|
+
# the cluster.
|
2265
2300
|
# @return [String]
|
2266
2301
|
#
|
2267
2302
|
# @!attribute [rw] ip_family
|
2268
|
-
# The IP family used to assign Kubernetes
|
2303
|
+
# The IP family used to assign Kubernetes pod and service IP
|
2269
2304
|
# addresses. The IP family is always `ipv4`, unless you have a `1.21`
|
2270
|
-
# or later cluster running version 1.10.
|
2305
|
+
# or later cluster running version 1.10.1 or later of the Amazon VPC
|
2271
2306
|
# CNI add-on and specified `ipv6` when you created the cluster.
|
2272
2307
|
# @return [String]
|
2273
2308
|
#
|
@@ -2282,16 +2317,17 @@ module Aws::EKS
|
|
2282
2317
|
end
|
2283
2318
|
|
2284
2319
|
# An object representing a node group launch template specification. The
|
2285
|
-
# launch template
|
2320
|
+
# launch template can't include [ `SubnetId` ][1], [
|
2286
2321
|
# `IamInstanceProfile` ][2], [ `RequestSpotInstances` ][3], [
|
2287
2322
|
# `HibernationOptions` ][4], or [ `TerminateInstances` ][5], or the node
|
2288
2323
|
# group deployment or update will fail. For more information about
|
2289
2324
|
# launch templates, see [ `CreateLaunchTemplate` ][6] in the Amazon EC2
|
2290
2325
|
# API Reference. For more information about using launch templates with
|
2291
|
-
# Amazon EKS, see [Launch template support][7] in the Amazon EKS User
|
2292
|
-
# Guide
|
2326
|
+
# Amazon EKS, see [Launch template support][7] in the *Amazon EKS User
|
2327
|
+
# Guide*.
|
2293
2328
|
#
|
2294
|
-
#
|
2329
|
+
# You must specify either the launch template ID or the launch template
|
2330
|
+
# name in the request, but not both.
|
2295
2331
|
#
|
2296
2332
|
#
|
2297
2333
|
#
|
@@ -2314,15 +2350,28 @@ module Aws::EKS
|
|
2314
2350
|
#
|
2315
2351
|
# @!attribute [rw] name
|
2316
2352
|
# The name of the launch template.
|
2353
|
+
#
|
2354
|
+
# You must specify either the launch template name or the launch
|
2355
|
+
# template ID in the request, but not both.
|
2317
2356
|
# @return [String]
|
2318
2357
|
#
|
2319
2358
|
# @!attribute [rw] version
|
2320
|
-
# The
|
2321
|
-
#
|
2359
|
+
# The launch template version number, `$Latest`, or `$Default`.
|
2360
|
+
#
|
2361
|
+
# If the value is `$Latest`, Amazon EKS uses the latest version of the
|
2362
|
+
# launch template.
|
2363
|
+
#
|
2364
|
+
# If the value is `$Default`, Amazon EKS uses the default version of
|
2365
|
+
# the launch template.
|
2366
|
+
#
|
2367
|
+
# Default: The default version of the launch template.
|
2322
2368
|
# @return [String]
|
2323
2369
|
#
|
2324
2370
|
# @!attribute [rw] id
|
2325
2371
|
# The ID of the launch template.
|
2372
|
+
#
|
2373
|
+
# You must specify either the launch template ID or the launch
|
2374
|
+
# template name in the request, but not both.
|
2326
2375
|
# @return [String]
|
2327
2376
|
#
|
2328
2377
|
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/LaunchTemplateSpecification AWS API Documentation
|
@@ -2937,7 +2986,12 @@ module Aws::EKS
|
|
2937
2986
|
# when they are created. Effect is one of `No_Schedule`,
|
2938
2987
|
# `Prefer_No_Schedule`, or `No_Execute`. Kubernetes taints can be used
|
2939
2988
|
# together with tolerations to control how workloads are scheduled to
|
2940
|
-
# your nodes.
|
2989
|
+
# your nodes. For more information, see [Node taints on managed node
|
2990
|
+
# groups][1].
|
2991
|
+
#
|
2992
|
+
#
|
2993
|
+
#
|
2994
|
+
# [1]: https://docs.aws.amazon.com/eks/latest/userguide/node-taints-managed-node-groups.html
|
2941
2995
|
# @return [Array<Types::Taint>]
|
2942
2996
|
#
|
2943
2997
|
# @!attribute [rw] resources
|
@@ -3572,7 +3626,7 @@ module Aws::EKS
|
|
3572
3626
|
include Aws::Structure
|
3573
3627
|
end
|
3574
3628
|
|
3575
|
-
# Required resources (such as
|
3629
|
+
# Required resources (such as service-linked roles) were created and are
|
3576
3630
|
# still propagating. Retry later.
|
3577
3631
|
#
|
3578
3632
|
# @!attribute [rw] message
|
@@ -3660,7 +3714,12 @@ module Aws::EKS
|
|
3660
3714
|
#
|
3661
3715
|
class TagResourceResponse < Aws::EmptyStructure; end
|
3662
3716
|
|
3663
|
-
# A property that allows a node to repel a set of pods.
|
3717
|
+
# A property that allows a node to repel a set of pods. For more
|
3718
|
+
# information, see [Node taints on managed node groups][1].
|
3719
|
+
#
|
3720
|
+
#
|
3721
|
+
#
|
3722
|
+
# [1]: https://docs.aws.amazon.com/eks/latest/userguide/node-taints-managed-node-groups.html
|
3664
3723
|
#
|
3665
3724
|
# @note When making an API call, you may pass Taint
|
3666
3725
|
# data as a hash:
|
@@ -3804,7 +3863,7 @@ module Aws::EKS
|
|
3804
3863
|
# addon_name: "String", # required
|
3805
3864
|
# addon_version: "String",
|
3806
3865
|
# service_account_role_arn: "RoleArn",
|
3807
|
-
# resolve_conflicts: "OVERWRITE", # accepts OVERWRITE, NONE
|
3866
|
+
# resolve_conflicts: "OVERWRITE", # accepts OVERWRITE, NONE, PRESERVE
|
3808
3867
|
# client_request_token: "String",
|
3809
3868
|
# }
|
3810
3869
|
#
|
@@ -3852,8 +3911,20 @@ module Aws::EKS
|
|
3852
3911
|
# @return [String]
|
3853
3912
|
#
|
3854
3913
|
# @!attribute [rw] resolve_conflicts
|
3855
|
-
# How to resolve
|
3856
|
-
#
|
3914
|
+
# How to resolve field value conflicts for an Amazon EKS add-on if
|
3915
|
+
# you've changed a value from the Amazon EKS default value. Conflicts
|
3916
|
+
# are handled based on the option you choose:
|
3917
|
+
#
|
3918
|
+
# * **None** – Amazon EKS doesn't change the value. The update might
|
3919
|
+
# fail.
|
3920
|
+
#
|
3921
|
+
# * **Overwrite** – Amazon EKS overwrites the changed value back to
|
3922
|
+
# the Amazon EKS default value.
|
3923
|
+
#
|
3924
|
+
# * **Preserve** – Amazon EKS preserves the value. If you choose this
|
3925
|
+
# option, we recommend that you test any field and value changes on
|
3926
|
+
# a non-production cluster before updating the add-on on your
|
3927
|
+
# production cluster.
|
3857
3928
|
# @return [String]
|
3858
3929
|
#
|
3859
3930
|
# @!attribute [rw] client_request_token
|
@@ -4104,7 +4175,12 @@ module Aws::EKS
|
|
4104
4175
|
#
|
4105
4176
|
# @!attribute [rw] taints
|
4106
4177
|
# The Kubernetes taints to be applied to the nodes in the node group
|
4107
|
-
# after the update.
|
4178
|
+
# after the update. For more information, see [Node taints on managed
|
4179
|
+
# node groups][1].
|
4180
|
+
#
|
4181
|
+
#
|
4182
|
+
#
|
4183
|
+
# [1]: https://docs.aws.amazon.com/eks/latest/userguide/node-taints-managed-node-groups.html
|
4108
4184
|
# @return [Types::UpdateTaintsPayload]
|
4109
4185
|
#
|
4110
4186
|
# @!attribute [rw] scaling_config
|
@@ -4184,8 +4260,8 @@ module Aws::EKS
|
|
4184
4260
|
# version. If you specify `launchTemplate`, and your launch template
|
4185
4261
|
# uses a custom AMI, then don't specify `version`, or the node group
|
4186
4262
|
# update will fail. For more information about using launch templates
|
4187
|
-
# with Amazon EKS, see [Launch template support][1] in the Amazon EKS
|
4188
|
-
# User Guide
|
4263
|
+
# with Amazon EKS, see [Launch template support][1] in the *Amazon EKS
|
4264
|
+
# User Guide*.
|
4189
4265
|
#
|
4190
4266
|
#
|
4191
4267
|
#
|
@@ -4201,7 +4277,7 @@ module Aws::EKS
|
|
4201
4277
|
# launch template uses a custom AMI, then don't specify
|
4202
4278
|
# `releaseVersion`, or the node group update will fail. For more
|
4203
4279
|
# information about using launch templates with Amazon EKS, see
|
4204
|
-
# [Launch template support][2] in the Amazon EKS User Guide
|
4280
|
+
# [Launch template support][2] in the *Amazon EKS User Guide*.
|
4205
4281
|
#
|
4206
4282
|
#
|
4207
4283
|
#
|
@@ -4278,6 +4354,11 @@ module Aws::EKS
|
|
4278
4354
|
end
|
4279
4355
|
|
4280
4356
|
# An object representing the details of an update to a taints payload.
|
4357
|
+
# For more information, see [Node taints on managed node groups][1].
|
4358
|
+
#
|
4359
|
+
#
|
4360
|
+
#
|
4361
|
+
# [1]: https://docs.aws.amazon.com/eks/latest/userguide/node-taints-managed-node-groups.html
|
4281
4362
|
#
|
4282
4363
|
# @note When making an API call, you may pass UpdateTaintsPayload
|
4283
4364
|
# data as a hash:
|
data/lib/aws-sdk-eks.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-eks
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.76.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-
|
11
|
+
date: 2022-09-07 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|