aws-sdk-eks 1.72.0 → 1.75.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 +38 -24
- data/lib/aws-sdk-eks/types.rb +74 -40
- data/lib/aws-sdk-eks.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4e07af64ee9bacf24bd55aa234cf4d6e232a920b4824b311cf1dd007de377656
|
4
|
+
data.tar.gz: a289cca70afc8cf68c02545c5c9853a851ec5294d9779a3955749676075e02da
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7baffd3e8e59a83d1079357375bdf712dccf078998c7c30be4289b2b8bcd7158dc45abb54a912754e3b26827d62c53f1c4a3be01eccd45eccfa13f692f08efdb
|
7
|
+
data.tar.gz: 310a5a81e646d9c5d980d47830afa902587543a286550c51fed67f2cd0660a068c98f68cc62437d9d94a8bab26b8b971ef8e834b23915588993c7abdbd0be986
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,21 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.75.0 (2022-05-10)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Adds BOTTLEROCKET_ARM_64_NVIDIA and BOTTLEROCKET_x86_64_NVIDIA AMI types to EKS managed nodegroups
|
8
|
+
|
9
|
+
1.74.0 (2022-03-08)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Introducing a new enum for NodeGroup error code: Ec2SubnetMissingIpv6Assignment
|
13
|
+
|
14
|
+
1.73.0 (2022-02-24)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
18
|
+
|
4
19
|
1.72.0 (2022-02-03)
|
5
20
|
------------------
|
6
21
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.75.0
|
data/lib/aws-sdk-eks/client.rb
CHANGED
@@ -27,6 +27,7 @@ require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
|
27
27
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
28
28
|
require 'aws-sdk-core/plugins/transfer_encoding.rb'
|
29
29
|
require 'aws-sdk-core/plugins/http_checksum.rb'
|
30
|
+
require 'aws-sdk-core/plugins/checksum_algorithm.rb'
|
30
31
|
require 'aws-sdk-core/plugins/defaults_mode.rb'
|
31
32
|
require 'aws-sdk-core/plugins/recursion_detection.rb'
|
32
33
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
@@ -75,6 +76,7 @@ module Aws::EKS
|
|
75
76
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
76
77
|
add_plugin(Aws::Plugins::TransferEncoding)
|
77
78
|
add_plugin(Aws::Plugins::HttpChecksum)
|
79
|
+
add_plugin(Aws::Plugins::ChecksumAlgorithm)
|
78
80
|
add_plugin(Aws::Plugins::DefaultsMode)
|
79
81
|
add_plugin(Aws::Plugins::RecursionDetection)
|
80
82
|
add_plugin(Aws::Plugins::SignatureV4)
|
@@ -1002,7 +1004,7 @@ module Aws::EKS
|
|
1002
1004
|
# default disk size is 20 GiB. If you specify `launchTemplate`, then
|
1003
1005
|
# don't specify `diskSize`, or the node group deployment will fail. For
|
1004
1006
|
# more information about using launch templates with Amazon EKS, see
|
1005
|
-
# [Launch template support][1] in the Amazon EKS User Guide
|
1007
|
+
# [Launch template support][1] in the *Amazon EKS User Guide*.
|
1006
1008
|
#
|
1007
1009
|
#
|
1008
1010
|
#
|
@@ -1013,8 +1015,8 @@ module Aws::EKS
|
|
1013
1015
|
# node group. If you specify `launchTemplate`, then don't specify [
|
1014
1016
|
# `SubnetId` ][1] in your launch template, or the node group deployment
|
1015
1017
|
# will fail. For more information about using launch templates with
|
1016
|
-
# Amazon EKS, see [Launch template support][2] in the Amazon EKS User
|
1017
|
-
# Guide
|
1018
|
+
# Amazon EKS, see [Launch template support][2] in the *Amazon EKS User
|
1019
|
+
# Guide*.
|
1018
1020
|
#
|
1019
1021
|
#
|
1020
1022
|
#
|
@@ -1049,7 +1051,7 @@ module Aws::EKS
|
|
1049
1051
|
# you specify `launchTemplate`, and your launch template uses a custom
|
1050
1052
|
# AMI, then don't specify `amiType`, or the node group deployment will
|
1051
1053
|
# fail. For more information about using launch templates with Amazon
|
1052
|
-
# EKS, see [Launch template support][1] in the Amazon EKS User Guide
|
1054
|
+
# EKS, see [Launch template support][1] in the *Amazon EKS User Guide*.
|
1053
1055
|
#
|
1054
1056
|
#
|
1055
1057
|
#
|
@@ -1060,7 +1062,7 @@ module Aws::EKS
|
|
1060
1062
|
# you specify `launchTemplate`, then don't specify `remoteAccess`, or
|
1061
1063
|
# the node group deployment will fail. For more information about using
|
1062
1064
|
# launch templates with Amazon EKS, see [Launch template support][1] in
|
1063
|
-
# the Amazon EKS User Guide
|
1065
|
+
# the *Amazon EKS User Guide*.
|
1064
1066
|
#
|
1065
1067
|
#
|
1066
1068
|
#
|
@@ -1078,11 +1080,11 @@ module Aws::EKS
|
|
1078
1080
|
# `launchTemplate`, then don't specify [ `IamInstanceProfile` ][2] in
|
1079
1081
|
# your launch template, or the node group deployment will fail. For more
|
1080
1082
|
# information about using launch templates with Amazon EKS, see [Launch
|
1081
|
-
# template support][3] in the Amazon EKS User Guide
|
1083
|
+
# template support][3] in the *Amazon EKS User Guide*.
|
1082
1084
|
#
|
1083
1085
|
#
|
1084
1086
|
#
|
1085
|
-
# [1]: https://docs.aws.amazon.com/eks/latest/userguide/
|
1087
|
+
# [1]: https://docs.aws.amazon.com/eks/latest/userguide/create-node-role.html
|
1086
1088
|
# [2]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_IamInstanceProfile.html
|
1087
1089
|
# [3]: https://docs.aws.amazon.com/eks/latest/userguide/launch-templates.html
|
1088
1090
|
#
|
@@ -1092,6 +1094,11 @@ module Aws::EKS
|
|
1092
1094
|
#
|
1093
1095
|
# @option params [Array<Types::Taint>] :taints
|
1094
1096
|
# The Kubernetes taints to be applied to the nodes in the node group.
|
1097
|
+
# For more information, see [Node taints on managed node groups][1].
|
1098
|
+
#
|
1099
|
+
#
|
1100
|
+
#
|
1101
|
+
# [1]: https://docs.aws.amazon.com/eks/latest/userguide/node-taints-managed-node-groups.html
|
1095
1102
|
#
|
1096
1103
|
# @option params [Hash<String,String>] :tags
|
1097
1104
|
# The metadata to apply to the node group to assist with categorization
|
@@ -1126,7 +1133,7 @@ module Aws::EKS
|
|
1126
1133
|
# launch template uses a custom AMI, then don't specify `version`, or
|
1127
1134
|
# the node group deployment will fail. For more information about using
|
1128
1135
|
# launch templates with Amazon EKS, see [Launch template support][1] in
|
1129
|
-
# the Amazon EKS User Guide
|
1136
|
+
# the *Amazon EKS User Guide*.
|
1130
1137
|
#
|
1131
1138
|
#
|
1132
1139
|
#
|
@@ -1141,7 +1148,7 @@ module Aws::EKS
|
|
1141
1148
|
# template uses a custom AMI, then don't specify `releaseVersion`, or
|
1142
1149
|
# the node group deployment will fail. For more information about using
|
1143
1150
|
# launch templates with Amazon EKS, see [Launch template support][2] in
|
1144
|
-
# the Amazon EKS User Guide
|
1151
|
+
# the *Amazon EKS User Guide*.
|
1145
1152
|
#
|
1146
1153
|
#
|
1147
1154
|
#
|
@@ -1165,7 +1172,7 @@ module Aws::EKS
|
|
1165
1172
|
# disk_size: 1,
|
1166
1173
|
# subnets: ["String"], # required
|
1167
1174
|
# instance_types: ["String"],
|
1168
|
-
# ami_type: "AL2_x86_64", # accepts AL2_x86_64, AL2_x86_64_GPU, AL2_ARM_64, CUSTOM, BOTTLEROCKET_ARM_64, BOTTLEROCKET_x86_64
|
1175
|
+
# 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
|
1169
1176
|
# remote_access: {
|
1170
1177
|
# ec2_ssh_key: "String",
|
1171
1178
|
# source_security_groups: ["String"],
|
@@ -1220,7 +1227,7 @@ module Aws::EKS
|
|
1220
1227
|
# resp.nodegroup.remote_access.ec2_ssh_key #=> String
|
1221
1228
|
# resp.nodegroup.remote_access.source_security_groups #=> Array
|
1222
1229
|
# resp.nodegroup.remote_access.source_security_groups[0] #=> String
|
1223
|
-
# resp.nodegroup.ami_type #=> String, one of "AL2_x86_64", "AL2_x86_64_GPU", "AL2_ARM_64", "CUSTOM", "BOTTLEROCKET_ARM_64", "BOTTLEROCKET_x86_64"
|
1230
|
+
# 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"
|
1224
1231
|
# resp.nodegroup.node_role #=> String
|
1225
1232
|
# resp.nodegroup.labels #=> Hash
|
1226
1233
|
# resp.nodegroup.labels["labelKey"] #=> String
|
@@ -1233,7 +1240,7 @@ module Aws::EKS
|
|
1233
1240
|
# resp.nodegroup.resources.remote_access_security_group #=> String
|
1234
1241
|
# resp.nodegroup.disk_size #=> Integer
|
1235
1242
|
# resp.nodegroup.health.issues #=> Array
|
1236
|
-
# 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"
|
1243
|
+
# 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"
|
1237
1244
|
# resp.nodegroup.health.issues[0].message #=> String
|
1238
1245
|
# resp.nodegroup.health.issues[0].resource_ids #=> Array
|
1239
1246
|
# resp.nodegroup.health.issues[0].resource_ids[0] #=> String
|
@@ -1506,7 +1513,7 @@ module Aws::EKS
|
|
1506
1513
|
# resp.nodegroup.remote_access.ec2_ssh_key #=> String
|
1507
1514
|
# resp.nodegroup.remote_access.source_security_groups #=> Array
|
1508
1515
|
# resp.nodegroup.remote_access.source_security_groups[0] #=> String
|
1509
|
-
# resp.nodegroup.ami_type #=> String, one of "AL2_x86_64", "AL2_x86_64_GPU", "AL2_ARM_64", "CUSTOM", "BOTTLEROCKET_ARM_64", "BOTTLEROCKET_x86_64"
|
1516
|
+
# 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"
|
1510
1517
|
# resp.nodegroup.node_role #=> String
|
1511
1518
|
# resp.nodegroup.labels #=> Hash
|
1512
1519
|
# resp.nodegroup.labels["labelKey"] #=> String
|
@@ -1519,7 +1526,7 @@ module Aws::EKS
|
|
1519
1526
|
# resp.nodegroup.resources.remote_access_security_group #=> String
|
1520
1527
|
# resp.nodegroup.disk_size #=> Integer
|
1521
1528
|
# resp.nodegroup.health.issues #=> Array
|
1522
|
-
# 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"
|
1529
|
+
# 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"
|
1523
1530
|
# resp.nodegroup.health.issues[0].message #=> String
|
1524
1531
|
# resp.nodegroup.health.issues[0].resource_ids #=> Array
|
1525
1532
|
# resp.nodegroup.health.issues[0].resource_ids[0] #=> String
|
@@ -1997,7 +2004,7 @@ module Aws::EKS
|
|
1997
2004
|
# resp.nodegroup.remote_access.ec2_ssh_key #=> String
|
1998
2005
|
# resp.nodegroup.remote_access.source_security_groups #=> Array
|
1999
2006
|
# resp.nodegroup.remote_access.source_security_groups[0] #=> String
|
2000
|
-
# resp.nodegroup.ami_type #=> String, one of "AL2_x86_64", "AL2_x86_64_GPU", "AL2_ARM_64", "CUSTOM", "BOTTLEROCKET_ARM_64", "BOTTLEROCKET_x86_64"
|
2007
|
+
# 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"
|
2001
2008
|
# resp.nodegroup.node_role #=> String
|
2002
2009
|
# resp.nodegroup.labels #=> Hash
|
2003
2010
|
# resp.nodegroup.labels["labelKey"] #=> String
|
@@ -2010,7 +2017,7 @@ module Aws::EKS
|
|
2010
2017
|
# resp.nodegroup.resources.remote_access_security_group #=> String
|
2011
2018
|
# resp.nodegroup.disk_size #=> Integer
|
2012
2019
|
# resp.nodegroup.health.issues #=> Array
|
2013
|
-
# 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"
|
2020
|
+
# 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"
|
2014
2021
|
# resp.nodegroup.health.issues[0].message #=> String
|
2015
2022
|
# resp.nodegroup.health.issues[0].resource_ids #=> Array
|
2016
2023
|
# resp.nodegroup.health.issues[0].resource_ids[0] #=> String
|
@@ -2038,7 +2045,7 @@ module Aws::EKS
|
|
2038
2045
|
end
|
2039
2046
|
|
2040
2047
|
# Returns descriptive information about an update against your Amazon
|
2041
|
-
# EKS cluster or associated managed node group.
|
2048
|
+
# EKS cluster or associated managed node group or Amazon EKS add-on.
|
2042
2049
|
#
|
2043
2050
|
# When the status of the update is `Succeeded`, the update is complete.
|
2044
2051
|
# If an update fails, the status is `Failed`, and an error detail
|
@@ -2051,11 +2058,13 @@ module Aws::EKS
|
|
2051
2058
|
# The ID of the update to describe.
|
2052
2059
|
#
|
2053
2060
|
# @option params [String] :nodegroup_name
|
2054
|
-
# The name of the Amazon EKS node group associated with the update.
|
2061
|
+
# The name of the Amazon EKS node group associated with the update. This
|
2062
|
+
# parameter is required if the update is a node group update.
|
2055
2063
|
#
|
2056
2064
|
# @option params [String] :addon_name
|
2057
2065
|
# The name of the add-on. The name must match one of the names returned
|
2058
|
-
# by [ `ListAddons` ][1].
|
2066
|
+
# by [ `ListAddons` ][1]. This parameter is required if the update is an
|
2067
|
+
# add-on update.
|
2059
2068
|
#
|
2060
2069
|
#
|
2061
2070
|
#
|
@@ -3031,7 +3040,12 @@ module Aws::EKS
|
|
3031
3040
|
#
|
3032
3041
|
# @option params [Types::UpdateTaintsPayload] :taints
|
3033
3042
|
# The Kubernetes taints to be applied to the nodes in the node group
|
3034
|
-
# after the update.
|
3043
|
+
# after the update. For more information, see [Node taints on managed
|
3044
|
+
# node groups][1].
|
3045
|
+
#
|
3046
|
+
#
|
3047
|
+
#
|
3048
|
+
# [1]: https://docs.aws.amazon.com/eks/latest/userguide/node-taints-managed-node-groups.html
|
3035
3049
|
#
|
3036
3050
|
# @option params [Types::NodegroupScalingConfig] :scaling_config
|
3037
3051
|
# The scaling configuration details for the Auto Scaling group after the
|
@@ -3160,7 +3174,7 @@ module Aws::EKS
|
|
3160
3174
|
# specify `launchTemplate`, and your launch template uses a custom AMI,
|
3161
3175
|
# then don't specify `version`, or the node group update will fail. For
|
3162
3176
|
# more information about using launch templates with Amazon EKS, see
|
3163
|
-
# [Launch template support][1] in the Amazon EKS User Guide
|
3177
|
+
# [Launch template support][1] in the *Amazon EKS User Guide*.
|
3164
3178
|
#
|
3165
3179
|
#
|
3166
3180
|
#
|
@@ -3174,8 +3188,8 @@ module Aws::EKS
|
|
3174
3188
|
# Guide*. If you specify `launchTemplate`, and your launch template uses
|
3175
3189
|
# a custom AMI, then don't specify `releaseVersion`, or the node group
|
3176
3190
|
# update will fail. For more information about using launch templates
|
3177
|
-
# with Amazon EKS, see [Launch template support][2] in the Amazon EKS
|
3178
|
-
# User Guide
|
3191
|
+
# with Amazon EKS, see [Launch template support][2] in the *Amazon EKS
|
3192
|
+
# User Guide*.
|
3179
3193
|
#
|
3180
3194
|
#
|
3181
3195
|
#
|
@@ -3258,7 +3272,7 @@ module Aws::EKS
|
|
3258
3272
|
params: params,
|
3259
3273
|
config: config)
|
3260
3274
|
context[:gem_name] = 'aws-sdk-eks'
|
3261
|
-
context[:gem_version] = '1.
|
3275
|
+
context[:gem_version] = '1.75.0'
|
3262
3276
|
Seahorse::Client::Request.new(handlers, context)
|
3263
3277
|
end
|
3264
3278
|
|
data/lib/aws-sdk-eks/types.rb
CHANGED
@@ -965,7 +965,7 @@ module Aws::EKS
|
|
965
965
|
# disk_size: 1,
|
966
966
|
# subnets: ["String"], # required
|
967
967
|
# 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
|
968
|
+
# 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
969
|
# remote_access: {
|
970
970
|
# ec2_ssh_key: "String",
|
971
971
|
# source_security_groups: ["String"],
|
@@ -1017,7 +1017,8 @@ module Aws::EKS
|
|
1017
1017
|
# The default disk size is 20 GiB. If you specify `launchTemplate`,
|
1018
1018
|
# then don't specify `diskSize`, or the node group deployment will
|
1019
1019
|
# fail. For more information about using launch templates with Amazon
|
1020
|
-
# EKS, see [Launch template support][1] in the Amazon EKS User
|
1020
|
+
# EKS, see [Launch template support][1] in the *Amazon EKS User
|
1021
|
+
# Guide*.
|
1021
1022
|
#
|
1022
1023
|
#
|
1023
1024
|
#
|
@@ -1030,7 +1031,7 @@ module Aws::EKS
|
|
1030
1031
|
# specify [ `SubnetId` ][1] in your launch template, or the node group
|
1031
1032
|
# deployment will fail. For more information about using launch
|
1032
1033
|
# templates with Amazon EKS, see [Launch template support][2] in the
|
1033
|
-
# Amazon EKS User Guide
|
1034
|
+
# *Amazon EKS User Guide*.
|
1034
1035
|
#
|
1035
1036
|
#
|
1036
1037
|
#
|
@@ -1067,8 +1068,8 @@ module Aws::EKS
|
|
1067
1068
|
# you specify `launchTemplate`, and your launch template uses a custom
|
1068
1069
|
# AMI, then don't specify `amiType`, or the node group deployment
|
1069
1070
|
# 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
|
1071
|
+
# Amazon EKS, see [Launch template support][1] in the *Amazon EKS User
|
1072
|
+
# Guide*.
|
1072
1073
|
#
|
1073
1074
|
#
|
1074
1075
|
#
|
@@ -1080,7 +1081,7 @@ module Aws::EKS
|
|
1080
1081
|
# If you specify `launchTemplate`, then don't specify `remoteAccess`,
|
1081
1082
|
# or the node group deployment will fail. For more information about
|
1082
1083
|
# using launch templates with Amazon EKS, see [Launch template
|
1083
|
-
# support][1] in the Amazon EKS User Guide
|
1084
|
+
# support][1] in the *Amazon EKS User Guide*.
|
1084
1085
|
#
|
1085
1086
|
#
|
1086
1087
|
#
|
@@ -1099,11 +1100,12 @@ module Aws::EKS
|
|
1099
1100
|
# specify `launchTemplate`, then don't specify [ `IamInstanceProfile`
|
1100
1101
|
# ][2] in your launch template, or the node group deployment will
|
1101
1102
|
# fail. For more information about using launch templates with Amazon
|
1102
|
-
# EKS, see [Launch template support][3] in the Amazon EKS User
|
1103
|
+
# EKS, see [Launch template support][3] in the *Amazon EKS User
|
1104
|
+
# Guide*.
|
1103
1105
|
#
|
1104
1106
|
#
|
1105
1107
|
#
|
1106
|
-
# [1]: https://docs.aws.amazon.com/eks/latest/userguide/
|
1108
|
+
# [1]: https://docs.aws.amazon.com/eks/latest/userguide/create-node-role.html
|
1107
1109
|
# [2]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_IamInstanceProfile.html
|
1108
1110
|
# [3]: https://docs.aws.amazon.com/eks/latest/userguide/launch-templates.html
|
1109
1111
|
# @return [String]
|
@@ -1115,6 +1117,11 @@ module Aws::EKS
|
|
1115
1117
|
#
|
1116
1118
|
# @!attribute [rw] taints
|
1117
1119
|
# The Kubernetes taints to be applied to the nodes in the node group.
|
1120
|
+
# For more information, see [Node taints on managed node groups][1].
|
1121
|
+
#
|
1122
|
+
#
|
1123
|
+
#
|
1124
|
+
# [1]: https://docs.aws.amazon.com/eks/latest/userguide/node-taints-managed-node-groups.html
|
1118
1125
|
# @return [Array<Types::Taint>]
|
1119
1126
|
#
|
1120
1127
|
# @!attribute [rw] tags
|
@@ -1155,7 +1162,7 @@ module Aws::EKS
|
|
1155
1162
|
# launch template uses a custom AMI, then don't specify `version`, or
|
1156
1163
|
# the node group deployment will fail. For more information about
|
1157
1164
|
# using launch templates with Amazon EKS, see [Launch template
|
1158
|
-
# support][1] in the Amazon EKS User Guide
|
1165
|
+
# support][1] in the *Amazon EKS User Guide*.
|
1159
1166
|
#
|
1160
1167
|
#
|
1161
1168
|
#
|
@@ -1171,7 +1178,8 @@ module Aws::EKS
|
|
1171
1178
|
# `launchTemplate`, and your launch template uses a custom AMI, then
|
1172
1179
|
# don't specify `releaseVersion`, or the node group deployment will
|
1173
1180
|
# fail. For more information about using launch templates with Amazon
|
1174
|
-
# EKS, see [Launch template support][2] in the Amazon EKS User
|
1181
|
+
# EKS, see [Launch template support][2] in the *Amazon EKS User
|
1182
|
+
# Guide*.
|
1175
1183
|
#
|
1176
1184
|
#
|
1177
1185
|
#
|
@@ -1704,11 +1712,13 @@ module Aws::EKS
|
|
1704
1712
|
#
|
1705
1713
|
# @!attribute [rw] nodegroup_name
|
1706
1714
|
# The name of the Amazon EKS node group associated with the update.
|
1715
|
+
# This parameter is required if the update is a node group update.
|
1707
1716
|
# @return [String]
|
1708
1717
|
#
|
1709
1718
|
# @!attribute [rw] addon_name
|
1710
1719
|
# The name of the add-on. The name must match one of the names
|
1711
|
-
# returned by [ `ListAddons` ][1].
|
1720
|
+
# returned by [ `ListAddons` ][1]. This parameter is required if the
|
1721
|
+
# update is an add-on update.
|
1712
1722
|
#
|
1713
1723
|
#
|
1714
1724
|
#
|
@@ -1994,7 +2004,8 @@ module Aws::EKS
|
|
1994
2004
|
# }
|
1995
2005
|
#
|
1996
2006
|
# @!attribute [rw] type
|
1997
|
-
# The type of the identity provider configuration.
|
2007
|
+
# The type of the identity provider configuration. The only type
|
2008
|
+
# available is `oidc`.
|
1998
2009
|
# @return [String]
|
1999
2010
|
#
|
2000
2011
|
# @!attribute [rw] name
|
@@ -2129,7 +2140,7 @@ module Aws::EKS
|
|
2129
2140
|
# instances to be assigned a public IP address, then you need to
|
2130
2141
|
# enable the `auto-assign public IP address` setting for the subnet.
|
2131
2142
|
# See [Modifying the public IPv4 addressing attribute for your
|
2132
|
-
# subnet][1] in the Amazon VPC User Guide
|
2143
|
+
# subnet][1] in the *Amazon VPC User Guide*.
|
2133
2144
|
#
|
2134
2145
|
# * **IamInstanceProfileNotFound**\: We couldn't find the IAM
|
2135
2146
|
# instance profile for your managed node group. You may be able to
|
@@ -2212,21 +2223,22 @@ module Aws::EKS
|
|
2212
2223
|
# @return [String]
|
2213
2224
|
#
|
2214
2225
|
# @!attribute [rw] ip_family
|
2215
|
-
# Specify which IP
|
2216
|
-
#
|
2217
|
-
#
|
2218
|
-
#
|
2219
|
-
#
|
2226
|
+
# Specify which IP family is used to assign Kubernetes pod and service
|
2227
|
+
# IP addresses. If you don't specify a value, `ipv4` is used by
|
2228
|
+
# default. You can only specify an IP family when you create a cluster
|
2229
|
+
# and can't change this value once the cluster is created. If you
|
2230
|
+
# specify `ipv6`, the VPC and subnets that you specify for cluster
|
2220
2231
|
# creation must have both IPv4 and IPv6 CIDR blocks assigned to them.
|
2232
|
+
# You can't specify `ipv6` for clusters in China Regions.
|
2221
2233
|
#
|
2222
2234
|
# 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
|
-
#
|
2235
|
+
# version 1.10.1 or later of the Amazon VPC CNI add-on. If you specify
|
2236
|
+
# `ipv6`, then ensure that your VPC meets the requirements listed in
|
2237
|
+
# the considerations listed in [Assigning IPv6 addresses to pods and
|
2238
|
+
# services][1] in the Amazon EKS User Guide. Kubernetes assigns
|
2239
|
+
# services IPv6 addresses from the unique local address range
|
2240
|
+
# (fc00::/7). You can't specify a custom IPv6 CIDR block. Pod
|
2241
|
+
# addresses are assigned from the subnet's IPv6 CIDR.
|
2230
2242
|
#
|
2231
2243
|
#
|
2232
2244
|
#
|
@@ -2247,7 +2259,7 @@ module Aws::EKS
|
|
2247
2259
|
# not both.
|
2248
2260
|
#
|
2249
2261
|
# @!attribute [rw] service_ipv_4_cidr
|
2250
|
-
# The CIDR block that Kubernetes
|
2262
|
+
# The CIDR block that Kubernetes pod and service IP addresses are
|
2251
2263
|
# assigned from. Kubernetes assigns addresses from an IPv4 CIDR block
|
2252
2264
|
# assigned to a subnet that the node is in. If you didn't specify a
|
2253
2265
|
# CIDR block when you created the cluster, then Kubernetes assigns
|
@@ -2257,17 +2269,19 @@ module Aws::EKS
|
|
2257
2269
|
# @return [String]
|
2258
2270
|
#
|
2259
2271
|
# @!attribute [rw] service_ipv_6_cidr
|
2260
|
-
# The CIDR block that Kubernetes
|
2272
|
+
# The CIDR block that Kubernetes pod and service IP addresses are
|
2261
2273
|
# assigned from if you created a 1.21 or later cluster with version
|
2262
|
-
# 1.10.
|
2274
|
+
# 1.10.1 or later of the Amazon VPC CNI add-on and specified `ipv6`
|
2263
2275
|
# for **ipFamily** when you created the cluster. Kubernetes assigns
|
2264
|
-
# addresses from the unique local address range (fc00::/7)
|
2276
|
+
# service addresses from the unique local address range (`fc00::/7`)
|
2277
|
+
# because you can't specify a custom IPv6 CIDR block when you create
|
2278
|
+
# the cluster.
|
2265
2279
|
# @return [String]
|
2266
2280
|
#
|
2267
2281
|
# @!attribute [rw] ip_family
|
2268
|
-
# The IP family used to assign Kubernetes
|
2282
|
+
# The IP family used to assign Kubernetes pod and service IP
|
2269
2283
|
# addresses. The IP family is always `ipv4`, unless you have a `1.21`
|
2270
|
-
# or later cluster running version 1.10.
|
2284
|
+
# or later cluster running version 1.10.1 or later of the Amazon VPC
|
2271
2285
|
# CNI add-on and specified `ipv6` when you created the cluster.
|
2272
2286
|
# @return [String]
|
2273
2287
|
#
|
@@ -2288,8 +2302,8 @@ module Aws::EKS
|
|
2288
2302
|
# group deployment or update will fail. For more information about
|
2289
2303
|
# launch templates, see [ `CreateLaunchTemplate` ][6] in the Amazon EC2
|
2290
2304
|
# 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
|
2305
|
+
# Amazon EKS, see [Launch template support][7] in the *Amazon EKS User
|
2306
|
+
# Guide*.
|
2293
2307
|
#
|
2294
2308
|
# Specify either `name` or `id`, but not both.
|
2295
2309
|
#
|
@@ -2937,7 +2951,12 @@ module Aws::EKS
|
|
2937
2951
|
# when they are created. Effect is one of `No_Schedule`,
|
2938
2952
|
# `Prefer_No_Schedule`, or `No_Execute`. Kubernetes taints can be used
|
2939
2953
|
# together with tolerations to control how workloads are scheduled to
|
2940
|
-
# your nodes.
|
2954
|
+
# your nodes. For more information, see [Node taints on managed node
|
2955
|
+
# groups][1].
|
2956
|
+
#
|
2957
|
+
#
|
2958
|
+
#
|
2959
|
+
# [1]: https://docs.aws.amazon.com/eks/latest/userguide/node-taints-managed-node-groups.html
|
2941
2960
|
# @return [Array<Types::Taint>]
|
2942
2961
|
#
|
2943
2962
|
# @!attribute [rw] resources
|
@@ -3572,7 +3591,7 @@ module Aws::EKS
|
|
3572
3591
|
include Aws::Structure
|
3573
3592
|
end
|
3574
3593
|
|
3575
|
-
# Required resources (such as
|
3594
|
+
# Required resources (such as service-linked roles) were created and are
|
3576
3595
|
# still propagating. Retry later.
|
3577
3596
|
#
|
3578
3597
|
# @!attribute [rw] message
|
@@ -3660,7 +3679,12 @@ module Aws::EKS
|
|
3660
3679
|
#
|
3661
3680
|
class TagResourceResponse < Aws::EmptyStructure; end
|
3662
3681
|
|
3663
|
-
# A property that allows a node to repel a set of pods.
|
3682
|
+
# A property that allows a node to repel a set of pods. For more
|
3683
|
+
# information, see [Node taints on managed node groups][1].
|
3684
|
+
#
|
3685
|
+
#
|
3686
|
+
#
|
3687
|
+
# [1]: https://docs.aws.amazon.com/eks/latest/userguide/node-taints-managed-node-groups.html
|
3664
3688
|
#
|
3665
3689
|
# @note When making an API call, you may pass Taint
|
3666
3690
|
# data as a hash:
|
@@ -4104,7 +4128,12 @@ module Aws::EKS
|
|
4104
4128
|
#
|
4105
4129
|
# @!attribute [rw] taints
|
4106
4130
|
# The Kubernetes taints to be applied to the nodes in the node group
|
4107
|
-
# after the update.
|
4131
|
+
# after the update. For more information, see [Node taints on managed
|
4132
|
+
# node groups][1].
|
4133
|
+
#
|
4134
|
+
#
|
4135
|
+
#
|
4136
|
+
# [1]: https://docs.aws.amazon.com/eks/latest/userguide/node-taints-managed-node-groups.html
|
4108
4137
|
# @return [Types::UpdateTaintsPayload]
|
4109
4138
|
#
|
4110
4139
|
# @!attribute [rw] scaling_config
|
@@ -4184,8 +4213,8 @@ module Aws::EKS
|
|
4184
4213
|
# version. If you specify `launchTemplate`, and your launch template
|
4185
4214
|
# uses a custom AMI, then don't specify `version`, or the node group
|
4186
4215
|
# 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
|
4216
|
+
# with Amazon EKS, see [Launch template support][1] in the *Amazon EKS
|
4217
|
+
# User Guide*.
|
4189
4218
|
#
|
4190
4219
|
#
|
4191
4220
|
#
|
@@ -4201,7 +4230,7 @@ module Aws::EKS
|
|
4201
4230
|
# launch template uses a custom AMI, then don't specify
|
4202
4231
|
# `releaseVersion`, or the node group update will fail. For more
|
4203
4232
|
# information about using launch templates with Amazon EKS, see
|
4204
|
-
# [Launch template support][2] in the Amazon EKS User Guide
|
4233
|
+
# [Launch template support][2] in the *Amazon EKS User Guide*.
|
4205
4234
|
#
|
4206
4235
|
#
|
4207
4236
|
#
|
@@ -4278,6 +4307,11 @@ module Aws::EKS
|
|
4278
4307
|
end
|
4279
4308
|
|
4280
4309
|
# An object representing the details of an update to a taints payload.
|
4310
|
+
# For more information, see [Node taints on managed node groups][1].
|
4311
|
+
#
|
4312
|
+
#
|
4313
|
+
#
|
4314
|
+
# [1]: https://docs.aws.amazon.com/eks/latest/userguide/node-taints-managed-node-groups.html
|
4281
4315
|
#
|
4282
4316
|
# @note When making an API call, you may pass UpdateTaintsPayload
|
4283
4317
|
# 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.75.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-05-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.127.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.127.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|