aws-sdk-eks 1.74.0 → 1.77.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +15 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-eks/client.rb +144 -34
- data/lib/aws-sdk-eks/client_api.rb +28 -0
- data/lib/aws-sdk-eks/types.rb +312 -64
- 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: 54e128a9fd123efb747c37733491ba52f4ed2191ecebc0df1a053662780ecb14
|
4
|
+
data.tar.gz: c94e35b02928f0ea190e01bece0df8d1a213d705870d5d3be3f899ff3a26209a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: eacfc8c8777c57e971fa6a918d4dd0d0c9dceb6c1c47a053de36f1b2c17f7234b711858f0704beadeb9424057ed173894304800908ddaf1c9261d59d0ead8cc6
|
7
|
+
data.tar.gz: 4d8650e0f34bcd4e32f572513c9f51908b4051e2b76b25cb0f0bfdf204eacaf379f10b140a1966817ddfb32c59d3a71e0659d53e2c04319c9e0330878ff16b5c
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,21 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.77.0 (2022-09-12)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Adding support for local Amazon EKS clusters on Outposts
|
8
|
+
|
9
|
+
1.76.0 (2022-09-07)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Adds support for EKS Addons ResolveConflicts "preserve" flag. Also adds new update failed status for EKS Addons.
|
13
|
+
|
14
|
+
1.75.0 (2022-05-10)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - Adds BOTTLEROCKET_ARM_64_NVIDIA and BOTTLEROCKET_x86_64_NVIDIA AMI types to EKS managed nodegroups
|
18
|
+
|
4
19
|
1.74.0 (2022-03-08)
|
5
20
|
------------------
|
6
21
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.77.0
|
data/lib/aws-sdk-eks/client.rb
CHANGED
@@ -433,7 +433,7 @@ module Aws::EKS
|
|
433
433
|
# The name of the cluster to associate the configuration to.
|
434
434
|
#
|
435
435
|
# @option params [required, Types::OidcIdentityProviderConfigRequest] :oidc
|
436
|
-
# An object
|
436
|
+
# An object representing an OpenID Connect (OIDC) identity provider
|
437
437
|
# configuration.
|
438
438
|
#
|
439
439
|
# @option params [Hash<String,String>] :tags
|
@@ -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"
|
@@ -652,7 +673,11 @@ module Aws::EKS
|
|
652
673
|
#
|
653
674
|
# @option params [String] :version
|
654
675
|
# The desired Kubernetes version for your cluster. If you don't specify
|
655
|
-
# a value here, the
|
676
|
+
# a value here, the default version available in Amazon EKS is used.
|
677
|
+
#
|
678
|
+
# <note markdown="1"> The default version might not be the latest version available.
|
679
|
+
#
|
680
|
+
# </note>
|
656
681
|
#
|
657
682
|
# @option params [required, String] :role_arn
|
658
683
|
# The Amazon Resource Name (ARN) of the IAM role that provides
|
@@ -715,6 +740,18 @@ module Aws::EKS
|
|
715
740
|
# @option params [Array<Types::EncryptionConfig>] :encryption_config
|
716
741
|
# The encryption configuration for the cluster.
|
717
742
|
#
|
743
|
+
# @option params [Types::OutpostConfigRequest] :outpost_config
|
744
|
+
# An object representing the configuration of your local Amazon EKS
|
745
|
+
# cluster on an Amazon Web Services Outpost. Before creating a local
|
746
|
+
# cluster on an Outpost, review [Creating an Amazon EKS cluster on an
|
747
|
+
# Amazon Web Services Outpost][1] in the *Amazon EKS User Guide*. This
|
748
|
+
# object isn't available for creating Amazon EKS clusters on the Amazon
|
749
|
+
# Web Services cloud.
|
750
|
+
#
|
751
|
+
#
|
752
|
+
#
|
753
|
+
# [1]: https://docs.aws.amazon.com/eks/latest/userguide/create-cluster-outpost.html
|
754
|
+
#
|
718
755
|
# @return [Types::CreateClusterResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
719
756
|
#
|
720
757
|
# * {Types::CreateClusterResponse#cluster #cluster} => Types::Cluster
|
@@ -781,6 +818,10 @@ module Aws::EKS
|
|
781
818
|
# },
|
782
819
|
# },
|
783
820
|
# ],
|
821
|
+
# outpost_config: {
|
822
|
+
# outpost_arns: ["String"], # required
|
823
|
+
# control_plane_instance_type: "String", # required
|
824
|
+
# },
|
784
825
|
# })
|
785
826
|
#
|
786
827
|
# @example Response structure
|
@@ -824,6 +865,15 @@ module Aws::EKS
|
|
824
865
|
# resp.cluster.connector_config.activation_expiry #=> Time
|
825
866
|
# resp.cluster.connector_config.provider #=> String
|
826
867
|
# resp.cluster.connector_config.role_arn #=> String
|
868
|
+
# resp.cluster.id #=> String
|
869
|
+
# resp.cluster.health.issues #=> Array
|
870
|
+
# resp.cluster.health.issues[0].code #=> String, one of "AccessDenied", "ClusterUnreachable", "ConfigurationConflict", "InternalFailure", "ResourceLimitExceeded", "ResourceNotFound"
|
871
|
+
# resp.cluster.health.issues[0].message #=> String
|
872
|
+
# resp.cluster.health.issues[0].resource_ids #=> Array
|
873
|
+
# resp.cluster.health.issues[0].resource_ids[0] #=> String
|
874
|
+
# resp.cluster.outpost_config.outpost_arns #=> Array
|
875
|
+
# resp.cluster.outpost_config.outpost_arns[0] #=> String
|
876
|
+
# resp.cluster.outpost_config.control_plane_instance_type #=> String
|
827
877
|
#
|
828
878
|
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/CreateCluster AWS API Documentation
|
829
879
|
#
|
@@ -1004,7 +1054,7 @@ module Aws::EKS
|
|
1004
1054
|
# default disk size is 20 GiB. If you specify `launchTemplate`, then
|
1005
1055
|
# don't specify `diskSize`, or the node group deployment will fail. For
|
1006
1056
|
# more information about using launch templates with Amazon EKS, see
|
1007
|
-
# [Launch template support][1] in the Amazon EKS User Guide
|
1057
|
+
# [Launch template support][1] in the *Amazon EKS User Guide*.
|
1008
1058
|
#
|
1009
1059
|
#
|
1010
1060
|
#
|
@@ -1015,8 +1065,8 @@ module Aws::EKS
|
|
1015
1065
|
# node group. If you specify `launchTemplate`, then don't specify [
|
1016
1066
|
# `SubnetId` ][1] in your launch template, or the node group deployment
|
1017
1067
|
# 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
|
1068
|
+
# Amazon EKS, see [Launch template support][2] in the *Amazon EKS User
|
1069
|
+
# Guide*.
|
1020
1070
|
#
|
1021
1071
|
#
|
1022
1072
|
#
|
@@ -1051,7 +1101,7 @@ module Aws::EKS
|
|
1051
1101
|
# you specify `launchTemplate`, and your launch template uses a custom
|
1052
1102
|
# AMI, then don't specify `amiType`, or the node group deployment will
|
1053
1103
|
# fail. For more information about using launch templates with Amazon
|
1054
|
-
# EKS, see [Launch template support][1] in the Amazon EKS User Guide
|
1104
|
+
# EKS, see [Launch template support][1] in the *Amazon EKS User Guide*.
|
1055
1105
|
#
|
1056
1106
|
#
|
1057
1107
|
#
|
@@ -1062,7 +1112,7 @@ module Aws::EKS
|
|
1062
1112
|
# you specify `launchTemplate`, then don't specify `remoteAccess`, or
|
1063
1113
|
# the node group deployment will fail. For more information about using
|
1064
1114
|
# launch templates with Amazon EKS, see [Launch template support][1] in
|
1065
|
-
# the Amazon EKS User Guide
|
1115
|
+
# the *Amazon EKS User Guide*.
|
1066
1116
|
#
|
1067
1117
|
#
|
1068
1118
|
#
|
@@ -1080,11 +1130,11 @@ module Aws::EKS
|
|
1080
1130
|
# `launchTemplate`, then don't specify [ `IamInstanceProfile` ][2] in
|
1081
1131
|
# your launch template, or the node group deployment will fail. For more
|
1082
1132
|
# information about using launch templates with Amazon EKS, see [Launch
|
1083
|
-
# template support][3] in the Amazon EKS User Guide
|
1133
|
+
# template support][3] in the *Amazon EKS User Guide*.
|
1084
1134
|
#
|
1085
1135
|
#
|
1086
1136
|
#
|
1087
|
-
# [1]: https://docs.aws.amazon.com/eks/latest/userguide/
|
1137
|
+
# [1]: https://docs.aws.amazon.com/eks/latest/userguide/create-node-role.html
|
1088
1138
|
# [2]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_IamInstanceProfile.html
|
1089
1139
|
# [3]: https://docs.aws.amazon.com/eks/latest/userguide/launch-templates.html
|
1090
1140
|
#
|
@@ -1094,6 +1144,11 @@ module Aws::EKS
|
|
1094
1144
|
#
|
1095
1145
|
# @option params [Array<Types::Taint>] :taints
|
1096
1146
|
# The Kubernetes taints to be applied to the nodes in the node group.
|
1147
|
+
# For more information, see [Node taints on managed node groups][1].
|
1148
|
+
#
|
1149
|
+
#
|
1150
|
+
#
|
1151
|
+
# [1]: https://docs.aws.amazon.com/eks/latest/userguide/node-taints-managed-node-groups.html
|
1097
1152
|
#
|
1098
1153
|
# @option params [Hash<String,String>] :tags
|
1099
1154
|
# The metadata to apply to the node group to assist with categorization
|
@@ -1128,7 +1183,7 @@ module Aws::EKS
|
|
1128
1183
|
# launch template uses a custom AMI, then don't specify `version`, or
|
1129
1184
|
# the node group deployment will fail. For more information about using
|
1130
1185
|
# launch templates with Amazon EKS, see [Launch template support][1] in
|
1131
|
-
# the Amazon EKS User Guide
|
1186
|
+
# the *Amazon EKS User Guide*.
|
1132
1187
|
#
|
1133
1188
|
#
|
1134
1189
|
#
|
@@ -1143,7 +1198,7 @@ module Aws::EKS
|
|
1143
1198
|
# template uses a custom AMI, then don't specify `releaseVersion`, or
|
1144
1199
|
# the node group deployment will fail. For more information about using
|
1145
1200
|
# launch templates with Amazon EKS, see [Launch template support][2] in
|
1146
|
-
# the Amazon EKS User Guide
|
1201
|
+
# the *Amazon EKS User Guide*.
|
1147
1202
|
#
|
1148
1203
|
#
|
1149
1204
|
#
|
@@ -1167,7 +1222,7 @@ module Aws::EKS
|
|
1167
1222
|
# disk_size: 1,
|
1168
1223
|
# subnets: ["String"], # required
|
1169
1224
|
# 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
|
1225
|
+
# 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
1226
|
# remote_access: {
|
1172
1227
|
# ec2_ssh_key: "String",
|
1173
1228
|
# source_security_groups: ["String"],
|
@@ -1222,7 +1277,7 @@ module Aws::EKS
|
|
1222
1277
|
# resp.nodegroup.remote_access.ec2_ssh_key #=> String
|
1223
1278
|
# resp.nodegroup.remote_access.source_security_groups #=> Array
|
1224
1279
|
# 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"
|
1280
|
+
# 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
1281
|
# resp.nodegroup.node_role #=> String
|
1227
1282
|
# resp.nodegroup.labels #=> Hash
|
1228
1283
|
# resp.nodegroup.labels["labelKey"] #=> String
|
@@ -1294,7 +1349,7 @@ module Aws::EKS
|
|
1294
1349
|
#
|
1295
1350
|
# resp.addon.addon_name #=> String
|
1296
1351
|
# resp.addon.cluster_name #=> String
|
1297
|
-
# resp.addon.status #=> String, one of "CREATING", "ACTIVE", "CREATE_FAILED", "UPDATING", "DELETING", "DELETE_FAILED", "DEGRADED"
|
1352
|
+
# resp.addon.status #=> String, one of "CREATING", "ACTIVE", "CREATE_FAILED", "UPDATING", "DELETING", "DELETE_FAILED", "DEGRADED", "UPDATE_FAILED"
|
1298
1353
|
# resp.addon.addon_version #=> String
|
1299
1354
|
# resp.addon.health.issues #=> Array
|
1300
1355
|
# resp.addon.health.issues[0].code #=> String, one of "AccessDenied", "InternalFailure", "ClusterUnreachable", "InsufficientNumberOfReplicas", "ConfigurationConflict", "AdmissionRequestDenied", "UnsupportedAddonModification", "K8sResourceNotFound"
|
@@ -1401,6 +1456,15 @@ module Aws::EKS
|
|
1401
1456
|
# resp.cluster.connector_config.activation_expiry #=> Time
|
1402
1457
|
# resp.cluster.connector_config.provider #=> String
|
1403
1458
|
# resp.cluster.connector_config.role_arn #=> String
|
1459
|
+
# resp.cluster.id #=> String
|
1460
|
+
# resp.cluster.health.issues #=> Array
|
1461
|
+
# resp.cluster.health.issues[0].code #=> String, one of "AccessDenied", "ClusterUnreachable", "ConfigurationConflict", "InternalFailure", "ResourceLimitExceeded", "ResourceNotFound"
|
1462
|
+
# resp.cluster.health.issues[0].message #=> String
|
1463
|
+
# resp.cluster.health.issues[0].resource_ids #=> Array
|
1464
|
+
# resp.cluster.health.issues[0].resource_ids[0] #=> String
|
1465
|
+
# resp.cluster.outpost_config.outpost_arns #=> Array
|
1466
|
+
# resp.cluster.outpost_config.outpost_arns[0] #=> String
|
1467
|
+
# resp.cluster.outpost_config.control_plane_instance_type #=> String
|
1404
1468
|
#
|
1405
1469
|
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/DeleteCluster AWS API Documentation
|
1406
1470
|
#
|
@@ -1508,7 +1572,7 @@ module Aws::EKS
|
|
1508
1572
|
# resp.nodegroup.remote_access.ec2_ssh_key #=> String
|
1509
1573
|
# resp.nodegroup.remote_access.source_security_groups #=> Array
|
1510
1574
|
# 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"
|
1575
|
+
# 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
1576
|
# resp.nodegroup.node_role #=> String
|
1513
1577
|
# resp.nodegroup.labels #=> Hash
|
1514
1578
|
# resp.nodegroup.labels["labelKey"] #=> String
|
@@ -1599,6 +1663,15 @@ module Aws::EKS
|
|
1599
1663
|
# resp.cluster.connector_config.activation_expiry #=> Time
|
1600
1664
|
# resp.cluster.connector_config.provider #=> String
|
1601
1665
|
# resp.cluster.connector_config.role_arn #=> String
|
1666
|
+
# resp.cluster.id #=> String
|
1667
|
+
# resp.cluster.health.issues #=> Array
|
1668
|
+
# resp.cluster.health.issues[0].code #=> String, one of "AccessDenied", "ClusterUnreachable", "ConfigurationConflict", "InternalFailure", "ResourceLimitExceeded", "ResourceNotFound"
|
1669
|
+
# resp.cluster.health.issues[0].message #=> String
|
1670
|
+
# resp.cluster.health.issues[0].resource_ids #=> Array
|
1671
|
+
# resp.cluster.health.issues[0].resource_ids[0] #=> String
|
1672
|
+
# resp.cluster.outpost_config.outpost_arns #=> Array
|
1673
|
+
# resp.cluster.outpost_config.outpost_arns[0] #=> String
|
1674
|
+
# resp.cluster.outpost_config.control_plane_instance_type #=> String
|
1602
1675
|
#
|
1603
1676
|
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/DeregisterCluster AWS API Documentation
|
1604
1677
|
#
|
@@ -1637,7 +1710,7 @@ module Aws::EKS
|
|
1637
1710
|
#
|
1638
1711
|
# resp.addon.addon_name #=> String
|
1639
1712
|
# resp.addon.cluster_name #=> String
|
1640
|
-
# resp.addon.status #=> String, one of "CREATING", "ACTIVE", "CREATE_FAILED", "UPDATING", "DELETING", "DELETE_FAILED", "DEGRADED"
|
1713
|
+
# resp.addon.status #=> String, one of "CREATING", "ACTIVE", "CREATE_FAILED", "UPDATING", "DELETING", "DELETE_FAILED", "DEGRADED", "UPDATE_FAILED"
|
1641
1714
|
# resp.addon.addon_version #=> String
|
1642
1715
|
# resp.addon.health.issues #=> Array
|
1643
1716
|
# resp.addon.health.issues[0].code #=> String, one of "AccessDenied", "InternalFailure", "ClusterUnreachable", "InsufficientNumberOfReplicas", "ConfigurationConflict", "AdmissionRequestDenied", "UnsupportedAddonModification", "K8sResourceNotFound"
|
@@ -1841,6 +1914,15 @@ module Aws::EKS
|
|
1841
1914
|
# resp.cluster.connector_config.activation_expiry #=> Time
|
1842
1915
|
# resp.cluster.connector_config.provider #=> String
|
1843
1916
|
# resp.cluster.connector_config.role_arn #=> String
|
1917
|
+
# resp.cluster.id #=> String
|
1918
|
+
# resp.cluster.health.issues #=> Array
|
1919
|
+
# resp.cluster.health.issues[0].code #=> String, one of "AccessDenied", "ClusterUnreachable", "ConfigurationConflict", "InternalFailure", "ResourceLimitExceeded", "ResourceNotFound"
|
1920
|
+
# resp.cluster.health.issues[0].message #=> String
|
1921
|
+
# resp.cluster.health.issues[0].resource_ids #=> Array
|
1922
|
+
# resp.cluster.health.issues[0].resource_ids[0] #=> String
|
1923
|
+
# resp.cluster.outpost_config.outpost_arns #=> Array
|
1924
|
+
# resp.cluster.outpost_config.outpost_arns[0] #=> String
|
1925
|
+
# resp.cluster.outpost_config.control_plane_instance_type #=> String
|
1844
1926
|
#
|
1845
1927
|
#
|
1846
1928
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
@@ -1917,7 +1999,7 @@ module Aws::EKS
|
|
1917
1999
|
# associated to.
|
1918
2000
|
#
|
1919
2001
|
# @option params [required, Types::IdentityProviderConfig] :identity_provider_config
|
1920
|
-
# An object
|
2002
|
+
# An object representing an identity provider configuration.
|
1921
2003
|
#
|
1922
2004
|
# @return [Types::DescribeIdentityProviderConfigResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1923
2005
|
#
|
@@ -1999,7 +2081,7 @@ module Aws::EKS
|
|
1999
2081
|
# resp.nodegroup.remote_access.ec2_ssh_key #=> String
|
2000
2082
|
# resp.nodegroup.remote_access.source_security_groups #=> Array
|
2001
2083
|
# 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"
|
2084
|
+
# 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
2085
|
# resp.nodegroup.node_role #=> String
|
2004
2086
|
# resp.nodegroup.labels #=> Hash
|
2005
2087
|
# resp.nodegroup.labels["labelKey"] #=> String
|
@@ -2040,7 +2122,7 @@ module Aws::EKS
|
|
2040
2122
|
end
|
2041
2123
|
|
2042
2124
|
# Returns descriptive information about an update against your Amazon
|
2043
|
-
# EKS cluster or associated managed node group.
|
2125
|
+
# EKS cluster or associated managed node group or Amazon EKS add-on.
|
2044
2126
|
#
|
2045
2127
|
# When the status of the update is `Succeeded`, the update is complete.
|
2046
2128
|
# If an update fails, the status is `Failed`, and an error detail
|
@@ -2053,11 +2135,13 @@ module Aws::EKS
|
|
2053
2135
|
# The ID of the update to describe.
|
2054
2136
|
#
|
2055
2137
|
# @option params [String] :nodegroup_name
|
2056
|
-
# The name of the Amazon EKS node group associated with the update.
|
2138
|
+
# The name of the Amazon EKS node group associated with the update. This
|
2139
|
+
# parameter is required if the update is a node group update.
|
2057
2140
|
#
|
2058
2141
|
# @option params [String] :addon_name
|
2059
2142
|
# The name of the add-on. The name must match one of the names returned
|
2060
|
-
# by [ `ListAddons` ][1].
|
2143
|
+
# by [ `ListAddons` ][1]. This parameter is required if the update is an
|
2144
|
+
# add-on update.
|
2061
2145
|
#
|
2062
2146
|
#
|
2063
2147
|
#
|
@@ -2109,7 +2193,7 @@ module Aws::EKS
|
|
2109
2193
|
# The name of the cluster to disassociate an identity provider from.
|
2110
2194
|
#
|
2111
2195
|
# @option params [required, Types::IdentityProviderConfig] :identity_provider_config
|
2112
|
-
# An object
|
2196
|
+
# An object representing an identity provider configuration.
|
2113
2197
|
#
|
2114
2198
|
# @option params [String] :client_request_token
|
2115
2199
|
# A unique, case-sensitive identifier that you provide to ensure the
|
@@ -2663,6 +2747,15 @@ module Aws::EKS
|
|
2663
2747
|
# resp.cluster.connector_config.activation_expiry #=> Time
|
2664
2748
|
# resp.cluster.connector_config.provider #=> String
|
2665
2749
|
# resp.cluster.connector_config.role_arn #=> String
|
2750
|
+
# resp.cluster.id #=> String
|
2751
|
+
# resp.cluster.health.issues #=> Array
|
2752
|
+
# resp.cluster.health.issues[0].code #=> String, one of "AccessDenied", "ClusterUnreachable", "ConfigurationConflict", "InternalFailure", "ResourceLimitExceeded", "ResourceNotFound"
|
2753
|
+
# resp.cluster.health.issues[0].message #=> String
|
2754
|
+
# resp.cluster.health.issues[0].resource_ids #=> Array
|
2755
|
+
# resp.cluster.health.issues[0].resource_ids[0] #=> String
|
2756
|
+
# resp.cluster.outpost_config.outpost_arns #=> Array
|
2757
|
+
# resp.cluster.outpost_config.outpost_arns[0] #=> String
|
2758
|
+
# resp.cluster.outpost_config.control_plane_instance_type #=> String
|
2666
2759
|
#
|
2667
2760
|
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/RegisterCluster AWS API Documentation
|
2668
2761
|
#
|
@@ -2780,8 +2873,20 @@ module Aws::EKS
|
|
2780
2873
|
# [2]: https://docs.aws.amazon.com/eks/latest/userguide/enable-iam-roles-for-service-accounts.html
|
2781
2874
|
#
|
2782
2875
|
# @option params [String] :resolve_conflicts
|
2783
|
-
# How to resolve
|
2784
|
-
#
|
2876
|
+
# How to resolve field value conflicts for an Amazon EKS add-on if
|
2877
|
+
# you've changed a value from the Amazon EKS default value. Conflicts
|
2878
|
+
# are handled based on the option you choose:
|
2879
|
+
#
|
2880
|
+
# * **None** – Amazon EKS doesn't change the value. The update might
|
2881
|
+
# fail.
|
2882
|
+
#
|
2883
|
+
# * **Overwrite** – Amazon EKS overwrites the changed value back to the
|
2884
|
+
# Amazon EKS default value.
|
2885
|
+
#
|
2886
|
+
# * **Preserve** – Amazon EKS preserves the value. If you choose this
|
2887
|
+
# option, we recommend that you test any field and value changes on a
|
2888
|
+
# non-production cluster before updating the add-on on your production
|
2889
|
+
# cluster.
|
2785
2890
|
#
|
2786
2891
|
# @option params [String] :client_request_token
|
2787
2892
|
# Unique, case-sensitive identifier that you provide to ensure the
|
@@ -2801,7 +2906,7 @@ module Aws::EKS
|
|
2801
2906
|
# addon_name: "String", # required
|
2802
2907
|
# addon_version: "String",
|
2803
2908
|
# service_account_role_arn: "RoleArn",
|
2804
|
-
# resolve_conflicts: "OVERWRITE", # accepts OVERWRITE, NONE
|
2909
|
+
# resolve_conflicts: "OVERWRITE", # accepts OVERWRITE, NONE, PRESERVE
|
2805
2910
|
# client_request_token: "String",
|
2806
2911
|
# })
|
2807
2912
|
#
|
@@ -3033,7 +3138,12 @@ module Aws::EKS
|
|
3033
3138
|
#
|
3034
3139
|
# @option params [Types::UpdateTaintsPayload] :taints
|
3035
3140
|
# The Kubernetes taints to be applied to the nodes in the node group
|
3036
|
-
# after the update.
|
3141
|
+
# after the update. For more information, see [Node taints on managed
|
3142
|
+
# node groups][1].
|
3143
|
+
#
|
3144
|
+
#
|
3145
|
+
#
|
3146
|
+
# [1]: https://docs.aws.amazon.com/eks/latest/userguide/node-taints-managed-node-groups.html
|
3037
3147
|
#
|
3038
3148
|
# @option params [Types::NodegroupScalingConfig] :scaling_config
|
3039
3149
|
# The scaling configuration details for the Auto Scaling group after the
|
@@ -3162,7 +3272,7 @@ module Aws::EKS
|
|
3162
3272
|
# specify `launchTemplate`, and your launch template uses a custom AMI,
|
3163
3273
|
# then don't specify `version`, or the node group update will fail. For
|
3164
3274
|
# more information about using launch templates with Amazon EKS, see
|
3165
|
-
# [Launch template support][1] in the Amazon EKS User Guide
|
3275
|
+
# [Launch template support][1] in the *Amazon EKS User Guide*.
|
3166
3276
|
#
|
3167
3277
|
#
|
3168
3278
|
#
|
@@ -3176,8 +3286,8 @@ module Aws::EKS
|
|
3176
3286
|
# Guide*. If you specify `launchTemplate`, and your launch template uses
|
3177
3287
|
# a custom AMI, then don't specify `releaseVersion`, or the node group
|
3178
3288
|
# 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
|
3289
|
+
# with Amazon EKS, see [Launch template support][2] in the *Amazon EKS
|
3290
|
+
# User Guide*.
|
3181
3291
|
#
|
3182
3292
|
#
|
3183
3293
|
#
|
@@ -3260,7 +3370,7 @@ module Aws::EKS
|
|
3260
3370
|
params: params,
|
3261
3371
|
config: config)
|
3262
3372
|
context[:gem_name] = 'aws-sdk-eks'
|
3263
|
-
context[:gem_version] = '1.
|
3373
|
+
context[:gem_version] = '1.77.0'
|
3264
3374
|
Seahorse::Client::Request.new(handlers, context)
|
3265
3375
|
end
|
3266
3376
|
|
@@ -40,6 +40,10 @@ module Aws::EKS
|
|
40
40
|
Certificate = Shapes::StructureShape.new(name: 'Certificate')
|
41
41
|
ClientException = Shapes::StructureShape.new(name: 'ClientException')
|
42
42
|
Cluster = Shapes::StructureShape.new(name: 'Cluster')
|
43
|
+
ClusterHealth = Shapes::StructureShape.new(name: 'ClusterHealth')
|
44
|
+
ClusterIssue = Shapes::StructureShape.new(name: 'ClusterIssue')
|
45
|
+
ClusterIssueCode = Shapes::StringShape.new(name: 'ClusterIssueCode')
|
46
|
+
ClusterIssueList = Shapes::ListShape.new(name: 'ClusterIssueList')
|
43
47
|
ClusterName = Shapes::StringShape.new(name: 'ClusterName')
|
44
48
|
ClusterStatus = Shapes::StringShape.new(name: 'ClusterStatus')
|
45
49
|
Compatibilities = Shapes::ListShape.new(name: 'Compatibilities')
|
@@ -142,6 +146,8 @@ module Aws::EKS
|
|
142
146
|
OIDC = Shapes::StructureShape.new(name: 'OIDC')
|
143
147
|
OidcIdentityProviderConfig = Shapes::StructureShape.new(name: 'OidcIdentityProviderConfig')
|
144
148
|
OidcIdentityProviderConfigRequest = Shapes::StructureShape.new(name: 'OidcIdentityProviderConfigRequest')
|
149
|
+
OutpostConfigRequest = Shapes::StructureShape.new(name: 'OutpostConfigRequest')
|
150
|
+
OutpostConfigResponse = Shapes::StructureShape.new(name: 'OutpostConfigResponse')
|
145
151
|
PercentCapacity = Shapes::IntegerShape.new(name: 'PercentCapacity')
|
146
152
|
Provider = Shapes::StructureShape.new(name: 'Provider')
|
147
153
|
RegisterClusterRequest = Shapes::StructureShape.new(name: 'RegisterClusterRequest')
|
@@ -293,8 +299,21 @@ module Aws::EKS
|
|
293
299
|
Cluster.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
|
294
300
|
Cluster.add_member(:encryption_config, Shapes::ShapeRef.new(shape: EncryptionConfigList, location_name: "encryptionConfig"))
|
295
301
|
Cluster.add_member(:connector_config, Shapes::ShapeRef.new(shape: ConnectorConfigResponse, location_name: "connectorConfig"))
|
302
|
+
Cluster.add_member(:id, Shapes::ShapeRef.new(shape: String, location_name: "id"))
|
303
|
+
Cluster.add_member(:health, Shapes::ShapeRef.new(shape: ClusterHealth, location_name: "health"))
|
304
|
+
Cluster.add_member(:outpost_config, Shapes::ShapeRef.new(shape: OutpostConfigResponse, location_name: "outpostConfig"))
|
296
305
|
Cluster.struct_class = Types::Cluster
|
297
306
|
|
307
|
+
ClusterHealth.add_member(:issues, Shapes::ShapeRef.new(shape: ClusterIssueList, location_name: "issues"))
|
308
|
+
ClusterHealth.struct_class = Types::ClusterHealth
|
309
|
+
|
310
|
+
ClusterIssue.add_member(:code, Shapes::ShapeRef.new(shape: ClusterIssueCode, location_name: "code"))
|
311
|
+
ClusterIssue.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "message"))
|
312
|
+
ClusterIssue.add_member(:resource_ids, Shapes::ShapeRef.new(shape: StringList, location_name: "resourceIds"))
|
313
|
+
ClusterIssue.struct_class = Types::ClusterIssue
|
314
|
+
|
315
|
+
ClusterIssueList.member = Shapes::ShapeRef.new(shape: ClusterIssue)
|
316
|
+
|
298
317
|
Compatibilities.member = Shapes::ShapeRef.new(shape: Compatibility)
|
299
318
|
|
300
319
|
Compatibility.add_member(:cluster_version, Shapes::ShapeRef.new(shape: String, location_name: "clusterVersion"))
|
@@ -334,6 +353,7 @@ module Aws::EKS
|
|
334
353
|
CreateClusterRequest.add_member(:client_request_token, Shapes::ShapeRef.new(shape: String, location_name: "clientRequestToken", metadata: {"idempotencyToken"=>true}))
|
335
354
|
CreateClusterRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
|
336
355
|
CreateClusterRequest.add_member(:encryption_config, Shapes::ShapeRef.new(shape: EncryptionConfigList, location_name: "encryptionConfig"))
|
356
|
+
CreateClusterRequest.add_member(:outpost_config, Shapes::ShapeRef.new(shape: OutpostConfigRequest, location_name: "outpostConfig"))
|
337
357
|
CreateClusterRequest.struct_class = Types::CreateClusterRequest
|
338
358
|
|
339
359
|
CreateClusterResponse.add_member(:cluster, Shapes::ShapeRef.new(shape: Cluster, location_name: "cluster"))
|
@@ -694,6 +714,14 @@ module Aws::EKS
|
|
694
714
|
OidcIdentityProviderConfigRequest.add_member(:required_claims, Shapes::ShapeRef.new(shape: requiredClaimsMap, location_name: "requiredClaims"))
|
695
715
|
OidcIdentityProviderConfigRequest.struct_class = Types::OidcIdentityProviderConfigRequest
|
696
716
|
|
717
|
+
OutpostConfigRequest.add_member(:outpost_arns, Shapes::ShapeRef.new(shape: StringList, required: true, location_name: "outpostArns"))
|
718
|
+
OutpostConfigRequest.add_member(:control_plane_instance_type, Shapes::ShapeRef.new(shape: String, required: true, location_name: "controlPlaneInstanceType"))
|
719
|
+
OutpostConfigRequest.struct_class = Types::OutpostConfigRequest
|
720
|
+
|
721
|
+
OutpostConfigResponse.add_member(:outpost_arns, Shapes::ShapeRef.new(shape: StringList, required: true, location_name: "outpostArns"))
|
722
|
+
OutpostConfigResponse.add_member(:control_plane_instance_type, Shapes::ShapeRef.new(shape: String, required: true, location_name: "controlPlaneInstanceType"))
|
723
|
+
OutpostConfigResponse.struct_class = Types::OutpostConfigResponse
|
724
|
+
|
697
725
|
Provider.add_member(:key_arn, Shapes::ShapeRef.new(shape: String, location_name: "keyArn"))
|
698
726
|
Provider.struct_class = Types::Provider
|
699
727
|
|
data/lib/aws-sdk-eks/types.rb
CHANGED
@@ -54,7 +54,7 @@ module Aws::EKS
|
|
54
54
|
# @return [String]
|
55
55
|
#
|
56
56
|
# @!attribute [rw] health
|
57
|
-
# An object
|
57
|
+
# An object representing the health of the add-on.
|
58
58
|
# @return [Types::AddonHealth]
|
59
59
|
#
|
60
60
|
# @!attribute [rw] addon_arn
|
@@ -101,7 +101,7 @@ module Aws::EKS
|
|
101
101
|
# The health of the add-on.
|
102
102
|
#
|
103
103
|
# @!attribute [rw] issues
|
104
|
-
# An object
|
104
|
+
# An object representing the health issues for an add-on.
|
105
105
|
# @return [Array<Types::AddonIssue>]
|
106
106
|
#
|
107
107
|
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/AddonHealth AWS API Documentation
|
@@ -123,8 +123,8 @@ module Aws::EKS
|
|
123
123
|
# @return [String]
|
124
124
|
#
|
125
125
|
# @!attribute [rw] addon_versions
|
126
|
-
# An object
|
127
|
-
#
|
126
|
+
# An object representing information about available add-on versions
|
127
|
+
# and compatible Kubernetes versions.
|
128
128
|
# @return [Array<Types::AddonVersionInfo>]
|
129
129
|
#
|
130
130
|
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/AddonInfo AWS API Documentation
|
@@ -173,7 +173,7 @@ module Aws::EKS
|
|
173
173
|
# @return [Array<String>]
|
174
174
|
#
|
175
175
|
# @!attribute [rw] compatibilities
|
176
|
-
# An object
|
176
|
+
# An object representing the compatibilities of a version.
|
177
177
|
# @return [Array<Types::Compatibility>]
|
178
178
|
#
|
179
179
|
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/AddonVersionInfo AWS API Documentation
|
@@ -269,7 +269,7 @@ module Aws::EKS
|
|
269
269
|
# @return [String]
|
270
270
|
#
|
271
271
|
# @!attribute [rw] oidc
|
272
|
-
# An object
|
272
|
+
# An object representing an OpenID Connect (OIDC) identity provider
|
273
273
|
# configuration.
|
274
274
|
# @return [Types::OidcIdentityProviderConfigRequest]
|
275
275
|
#
|
@@ -485,6 +485,24 @@ module Aws::EKS
|
|
485
485
|
# The configuration used to connect to a cluster for registration.
|
486
486
|
# @return [Types::ConnectorConfigResponse]
|
487
487
|
#
|
488
|
+
# @!attribute [rw] id
|
489
|
+
# The ID of your local Amazon EKS cluster on an Amazon Web Services
|
490
|
+
# Outpost. This property isn't available for an Amazon EKS cluster on
|
491
|
+
# the Amazon Web Services cloud.
|
492
|
+
# @return [String]
|
493
|
+
#
|
494
|
+
# @!attribute [rw] health
|
495
|
+
# An object representing the health of your local Amazon EKS cluster
|
496
|
+
# on an Amazon Web Services Outpost. This object isn't available for
|
497
|
+
# clusters on the Amazon Web Services cloud.
|
498
|
+
# @return [Types::ClusterHealth]
|
499
|
+
#
|
500
|
+
# @!attribute [rw] outpost_config
|
501
|
+
# An object representing the configuration of your local Amazon EKS
|
502
|
+
# cluster on an Amazon Web Services Outpost. This object isn't
|
503
|
+
# available for clusters on the Amazon Web Services cloud.
|
504
|
+
# @return [Types::OutpostConfigResponse]
|
505
|
+
#
|
488
506
|
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/Cluster AWS API Documentation
|
489
507
|
#
|
490
508
|
class Cluster < Struct.new(
|
@@ -504,7 +522,53 @@ module Aws::EKS
|
|
504
522
|
:platform_version,
|
505
523
|
:tags,
|
506
524
|
:encryption_config,
|
507
|
-
:connector_config
|
525
|
+
:connector_config,
|
526
|
+
:id,
|
527
|
+
:health,
|
528
|
+
:outpost_config)
|
529
|
+
SENSITIVE = []
|
530
|
+
include Aws::Structure
|
531
|
+
end
|
532
|
+
|
533
|
+
# An object representing the health of your local Amazon EKS cluster on
|
534
|
+
# an Amazon Web Services Outpost. You can't use this API with an Amazon
|
535
|
+
# EKS cluster on the Amazon Web Services cloud.
|
536
|
+
#
|
537
|
+
# @!attribute [rw] issues
|
538
|
+
# An object representing the health issues of your local Amazon EKS
|
539
|
+
# cluster on an Amazon Web Services Outpost.
|
540
|
+
# @return [Array<Types::ClusterIssue>]
|
541
|
+
#
|
542
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/ClusterHealth AWS API Documentation
|
543
|
+
#
|
544
|
+
class ClusterHealth < Struct.new(
|
545
|
+
:issues)
|
546
|
+
SENSITIVE = []
|
547
|
+
include Aws::Structure
|
548
|
+
end
|
549
|
+
|
550
|
+
# An issue with your local Amazon EKS cluster on an Amazon Web Services
|
551
|
+
# Outpost. You can't use this API with an Amazon EKS cluster on the
|
552
|
+
# Amazon Web Services cloud.
|
553
|
+
#
|
554
|
+
# @!attribute [rw] code
|
555
|
+
# The error code of the issue.
|
556
|
+
# @return [String]
|
557
|
+
#
|
558
|
+
# @!attribute [rw] message
|
559
|
+
# A description of the issue.
|
560
|
+
# @return [String]
|
561
|
+
#
|
562
|
+
# @!attribute [rw] resource_ids
|
563
|
+
# The resource IDs that the issue relates to.
|
564
|
+
# @return [Array<String>]
|
565
|
+
#
|
566
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/ClusterIssue AWS API Documentation
|
567
|
+
#
|
568
|
+
class ClusterIssue < Struct.new(
|
569
|
+
:code,
|
570
|
+
:message,
|
571
|
+
:resource_ids)
|
508
572
|
SENSITIVE = []
|
509
573
|
include Aws::Structure
|
510
574
|
end
|
@@ -605,7 +669,7 @@ module Aws::EKS
|
|
605
669
|
# addon_name: "String", # required
|
606
670
|
# addon_version: "String",
|
607
671
|
# service_account_role_arn: "RoleArn",
|
608
|
-
# resolve_conflicts: "OVERWRITE", # accepts OVERWRITE, NONE
|
672
|
+
# resolve_conflicts: "OVERWRITE", # accepts OVERWRITE, NONE, PRESERVE
|
609
673
|
# client_request_token: "String",
|
610
674
|
# tags: {
|
611
675
|
# "TagKey" => "TagValue",
|
@@ -656,8 +720,29 @@ module Aws::EKS
|
|
656
720
|
# @return [String]
|
657
721
|
#
|
658
722
|
# @!attribute [rw] resolve_conflicts
|
659
|
-
# How to resolve
|
660
|
-
#
|
723
|
+
# How to resolve field value conflicts for an Amazon EKS add-on.
|
724
|
+
# Conflicts are handled based on the value you choose:
|
725
|
+
#
|
726
|
+
# * **None** – If the self-managed version of the add-on is installed
|
727
|
+
# on your cluster, Amazon EKS doesn't change the value. Creation of
|
728
|
+
# the add-on might fail.
|
729
|
+
#
|
730
|
+
# * **Overwrite** – If the self-managed version of the add-on is
|
731
|
+
# installed on your cluster and the Amazon EKS default value is
|
732
|
+
# different than the existing value, Amazon EKS changes the value to
|
733
|
+
# the Amazon EKS default value.
|
734
|
+
#
|
735
|
+
# * **Preserve** – Not supported. You can set this value when updating
|
736
|
+
# an add-on though. For more information, see [UpdateAddon][1].
|
737
|
+
#
|
738
|
+
# If you don't currently have the self-managed version of the add-on
|
739
|
+
# installed on your cluster, the Amazon EKS add-on is installed.
|
740
|
+
# Amazon EKS sets all values to default values, regardless of the
|
741
|
+
# option that you specify.
|
742
|
+
#
|
743
|
+
#
|
744
|
+
#
|
745
|
+
# [1]: https://docs.aws.amazon.com/eks/latest/APIReference/API_UpdateAddon.html
|
661
746
|
# @return [String]
|
662
747
|
#
|
663
748
|
# @!attribute [rw] client_request_token
|
@@ -743,6 +828,10 @@ module Aws::EKS
|
|
743
828
|
# },
|
744
829
|
# },
|
745
830
|
# ],
|
831
|
+
# outpost_config: {
|
832
|
+
# outpost_arns: ["String"], # required
|
833
|
+
# control_plane_instance_type: "String", # required
|
834
|
+
# },
|
746
835
|
# }
|
747
836
|
#
|
748
837
|
# @!attribute [rw] name
|
@@ -751,8 +840,12 @@ module Aws::EKS
|
|
751
840
|
#
|
752
841
|
# @!attribute [rw] version
|
753
842
|
# The desired Kubernetes version for your cluster. If you don't
|
754
|
-
# specify a value here, the
|
843
|
+
# specify a value here, the default version available in Amazon EKS is
|
755
844
|
# used.
|
845
|
+
#
|
846
|
+
# <note markdown="1"> The default version might not be the latest version available.
|
847
|
+
#
|
848
|
+
# </note>
|
756
849
|
# @return [String]
|
757
850
|
#
|
758
851
|
# @!attribute [rw] role_arn
|
@@ -824,6 +917,19 @@ module Aws::EKS
|
|
824
917
|
# The encryption configuration for the cluster.
|
825
918
|
# @return [Array<Types::EncryptionConfig>]
|
826
919
|
#
|
920
|
+
# @!attribute [rw] outpost_config
|
921
|
+
# An object representing the configuration of your local Amazon EKS
|
922
|
+
# cluster on an Amazon Web Services Outpost. Before creating a local
|
923
|
+
# cluster on an Outpost, review [Creating an Amazon EKS cluster on an
|
924
|
+
# Amazon Web Services Outpost][1] in the *Amazon EKS User Guide*. This
|
925
|
+
# object isn't available for creating Amazon EKS clusters on the
|
926
|
+
# Amazon Web Services cloud.
|
927
|
+
#
|
928
|
+
#
|
929
|
+
#
|
930
|
+
# [1]: https://docs.aws.amazon.com/eks/latest/userguide/create-cluster-outpost.html
|
931
|
+
# @return [Types::OutpostConfigRequest]
|
932
|
+
#
|
827
933
|
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/CreateClusterRequest AWS API Documentation
|
828
934
|
#
|
829
935
|
class CreateClusterRequest < Struct.new(
|
@@ -835,7 +941,8 @@ module Aws::EKS
|
|
835
941
|
:logging,
|
836
942
|
:client_request_token,
|
837
943
|
:tags,
|
838
|
-
:encryption_config
|
944
|
+
:encryption_config,
|
945
|
+
:outpost_config)
|
839
946
|
SENSITIVE = []
|
840
947
|
include Aws::Structure
|
841
948
|
end
|
@@ -965,7 +1072,7 @@ module Aws::EKS
|
|
965
1072
|
# disk_size: 1,
|
966
1073
|
# subnets: ["String"], # required
|
967
1074
|
# 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
|
1075
|
+
# 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
1076
|
# remote_access: {
|
970
1077
|
# ec2_ssh_key: "String",
|
971
1078
|
# source_security_groups: ["String"],
|
@@ -1017,7 +1124,8 @@ module Aws::EKS
|
|
1017
1124
|
# The default disk size is 20 GiB. If you specify `launchTemplate`,
|
1018
1125
|
# then don't specify `diskSize`, or the node group deployment will
|
1019
1126
|
# fail. For more information about using launch templates with Amazon
|
1020
|
-
# EKS, see [Launch template support][1] in the Amazon EKS User
|
1127
|
+
# EKS, see [Launch template support][1] in the *Amazon EKS User
|
1128
|
+
# Guide*.
|
1021
1129
|
#
|
1022
1130
|
#
|
1023
1131
|
#
|
@@ -1030,7 +1138,7 @@ module Aws::EKS
|
|
1030
1138
|
# specify [ `SubnetId` ][1] in your launch template, or the node group
|
1031
1139
|
# deployment will fail. For more information about using launch
|
1032
1140
|
# templates with Amazon EKS, see [Launch template support][2] in the
|
1033
|
-
# Amazon EKS User Guide
|
1141
|
+
# *Amazon EKS User Guide*.
|
1034
1142
|
#
|
1035
1143
|
#
|
1036
1144
|
#
|
@@ -1067,8 +1175,8 @@ module Aws::EKS
|
|
1067
1175
|
# you specify `launchTemplate`, and your launch template uses a custom
|
1068
1176
|
# AMI, then don't specify `amiType`, or the node group deployment
|
1069
1177
|
# 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
|
1178
|
+
# Amazon EKS, see [Launch template support][1] in the *Amazon EKS User
|
1179
|
+
# Guide*.
|
1072
1180
|
#
|
1073
1181
|
#
|
1074
1182
|
#
|
@@ -1080,7 +1188,7 @@ module Aws::EKS
|
|
1080
1188
|
# If you specify `launchTemplate`, then don't specify `remoteAccess`,
|
1081
1189
|
# or the node group deployment will fail. For more information about
|
1082
1190
|
# using launch templates with Amazon EKS, see [Launch template
|
1083
|
-
# support][1] in the Amazon EKS User Guide
|
1191
|
+
# support][1] in the *Amazon EKS User Guide*.
|
1084
1192
|
#
|
1085
1193
|
#
|
1086
1194
|
#
|
@@ -1099,11 +1207,12 @@ module Aws::EKS
|
|
1099
1207
|
# specify `launchTemplate`, then don't specify [ `IamInstanceProfile`
|
1100
1208
|
# ][2] in your launch template, or the node group deployment will
|
1101
1209
|
# fail. For more information about using launch templates with Amazon
|
1102
|
-
# EKS, see [Launch template support][3] in the Amazon EKS User
|
1210
|
+
# EKS, see [Launch template support][3] in the *Amazon EKS User
|
1211
|
+
# Guide*.
|
1103
1212
|
#
|
1104
1213
|
#
|
1105
1214
|
#
|
1106
|
-
# [1]: https://docs.aws.amazon.com/eks/latest/userguide/
|
1215
|
+
# [1]: https://docs.aws.amazon.com/eks/latest/userguide/create-node-role.html
|
1107
1216
|
# [2]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_IamInstanceProfile.html
|
1108
1217
|
# [3]: https://docs.aws.amazon.com/eks/latest/userguide/launch-templates.html
|
1109
1218
|
# @return [String]
|
@@ -1115,6 +1224,11 @@ module Aws::EKS
|
|
1115
1224
|
#
|
1116
1225
|
# @!attribute [rw] taints
|
1117
1226
|
# The Kubernetes taints to be applied to the nodes in the node group.
|
1227
|
+
# For more information, see [Node taints on managed node groups][1].
|
1228
|
+
#
|
1229
|
+
#
|
1230
|
+
#
|
1231
|
+
# [1]: https://docs.aws.amazon.com/eks/latest/userguide/node-taints-managed-node-groups.html
|
1118
1232
|
# @return [Array<Types::Taint>]
|
1119
1233
|
#
|
1120
1234
|
# @!attribute [rw] tags
|
@@ -1155,7 +1269,7 @@ module Aws::EKS
|
|
1155
1269
|
# launch template uses a custom AMI, then don't specify `version`, or
|
1156
1270
|
# the node group deployment will fail. For more information about
|
1157
1271
|
# using launch templates with Amazon EKS, see [Launch template
|
1158
|
-
# support][1] in the Amazon EKS User Guide
|
1272
|
+
# support][1] in the *Amazon EKS User Guide*.
|
1159
1273
|
#
|
1160
1274
|
#
|
1161
1275
|
#
|
@@ -1171,7 +1285,8 @@ module Aws::EKS
|
|
1171
1285
|
# `launchTemplate`, and your launch template uses a custom AMI, then
|
1172
1286
|
# don't specify `releaseVersion`, or the node group deployment will
|
1173
1287
|
# fail. For more information about using launch templates with Amazon
|
1174
|
-
# EKS, see [Launch template support][2] in the Amazon EKS User
|
1288
|
+
# EKS, see [Launch template support][2] in the *Amazon EKS User
|
1289
|
+
# Guide*.
|
1175
1290
|
#
|
1176
1291
|
#
|
1177
1292
|
#
|
@@ -1622,7 +1737,7 @@ module Aws::EKS
|
|
1622
1737
|
# @return [String]
|
1623
1738
|
#
|
1624
1739
|
# @!attribute [rw] identity_provider_config
|
1625
|
-
# An object
|
1740
|
+
# An object representing an identity provider configuration.
|
1626
1741
|
# @return [Types::IdentityProviderConfig]
|
1627
1742
|
#
|
1628
1743
|
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/DescribeIdentityProviderConfigRequest AWS API Documentation
|
@@ -1704,11 +1819,13 @@ module Aws::EKS
|
|
1704
1819
|
#
|
1705
1820
|
# @!attribute [rw] nodegroup_name
|
1706
1821
|
# The name of the Amazon EKS node group associated with the update.
|
1822
|
+
# This parameter is required if the update is a node group update.
|
1707
1823
|
# @return [String]
|
1708
1824
|
#
|
1709
1825
|
# @!attribute [rw] addon_name
|
1710
1826
|
# The name of the add-on. The name must match one of the names
|
1711
|
-
# returned by [ `ListAddons` ][1].
|
1827
|
+
# returned by [ `ListAddons` ][1]. This parameter is required if the
|
1828
|
+
# update is an add-on update.
|
1712
1829
|
#
|
1713
1830
|
#
|
1714
1831
|
#
|
@@ -1755,7 +1872,7 @@ module Aws::EKS
|
|
1755
1872
|
# @return [String]
|
1756
1873
|
#
|
1757
1874
|
# @!attribute [rw] identity_provider_config
|
1758
|
-
# An object
|
1875
|
+
# An object representing an identity provider configuration.
|
1759
1876
|
# @return [Types::IdentityProviderConfig]
|
1760
1877
|
#
|
1761
1878
|
# @!attribute [rw] client_request_token
|
@@ -1994,7 +2111,8 @@ module Aws::EKS
|
|
1994
2111
|
# }
|
1995
2112
|
#
|
1996
2113
|
# @!attribute [rw] type
|
1997
|
-
# The type of the identity provider configuration.
|
2114
|
+
# The type of the identity provider configuration. The only type
|
2115
|
+
# available is `oidc`.
|
1998
2116
|
# @return [String]
|
1999
2117
|
#
|
2000
2118
|
# @!attribute [rw] name
|
@@ -2013,7 +2131,7 @@ module Aws::EKS
|
|
2013
2131
|
# The full description of your identity configuration.
|
2014
2132
|
#
|
2015
2133
|
# @!attribute [rw] oidc
|
2016
|
-
# An object
|
2134
|
+
# An object representing an OpenID Connect (OIDC) identity provider
|
2017
2135
|
# configuration.
|
2018
2136
|
# @return [Types::OidcIdentityProviderConfig]
|
2019
2137
|
#
|
@@ -2129,7 +2247,7 @@ module Aws::EKS
|
|
2129
2247
|
# instances to be assigned a public IP address, then you need to
|
2130
2248
|
# enable the `auto-assign public IP address` setting for the subnet.
|
2131
2249
|
# See [Modifying the public IPv4 addressing attribute for your
|
2132
|
-
# subnet][1] in the Amazon VPC User Guide
|
2250
|
+
# subnet][1] in the *Amazon VPC User Guide*.
|
2133
2251
|
#
|
2134
2252
|
# * **IamInstanceProfileNotFound**\: We couldn't find the IAM
|
2135
2253
|
# instance profile for your managed node group. You may be able to
|
@@ -2212,21 +2330,22 @@ module Aws::EKS
|
|
2212
2330
|
# @return [String]
|
2213
2331
|
#
|
2214
2332
|
# @!attribute [rw] ip_family
|
2215
|
-
# Specify which IP
|
2216
|
-
#
|
2217
|
-
#
|
2218
|
-
#
|
2219
|
-
#
|
2333
|
+
# Specify which IP family is used to assign Kubernetes pod and service
|
2334
|
+
# IP addresses. If you don't specify a value, `ipv4` is used by
|
2335
|
+
# default. You can only specify an IP family when you create a cluster
|
2336
|
+
# and can't change this value once the cluster is created. If you
|
2337
|
+
# specify `ipv6`, the VPC and subnets that you specify for cluster
|
2220
2338
|
# creation must have both IPv4 and IPv6 CIDR blocks assigned to them.
|
2339
|
+
# You can't specify `ipv6` for clusters in China Regions.
|
2221
2340
|
#
|
2222
2341
|
# 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
|
-
#
|
2342
|
+
# version 1.10.1 or later of the Amazon VPC CNI add-on. If you specify
|
2343
|
+
# `ipv6`, then ensure that your VPC meets the requirements listed in
|
2344
|
+
# the considerations listed in [Assigning IPv6 addresses to pods and
|
2345
|
+
# services][1] in the Amazon EKS User Guide. Kubernetes assigns
|
2346
|
+
# services IPv6 addresses from the unique local address range
|
2347
|
+
# (fc00::/7). You can't specify a custom IPv6 CIDR block. Pod
|
2348
|
+
# addresses are assigned from the subnet's IPv6 CIDR.
|
2230
2349
|
#
|
2231
2350
|
#
|
2232
2351
|
#
|
@@ -2247,7 +2366,7 @@ module Aws::EKS
|
|
2247
2366
|
# not both.
|
2248
2367
|
#
|
2249
2368
|
# @!attribute [rw] service_ipv_4_cidr
|
2250
|
-
# The CIDR block that Kubernetes
|
2369
|
+
# The CIDR block that Kubernetes pod and service IP addresses are
|
2251
2370
|
# assigned from. Kubernetes assigns addresses from an IPv4 CIDR block
|
2252
2371
|
# assigned to a subnet that the node is in. If you didn't specify a
|
2253
2372
|
# CIDR block when you created the cluster, then Kubernetes assigns
|
@@ -2257,17 +2376,19 @@ module Aws::EKS
|
|
2257
2376
|
# @return [String]
|
2258
2377
|
#
|
2259
2378
|
# @!attribute [rw] service_ipv_6_cidr
|
2260
|
-
# The CIDR block that Kubernetes
|
2379
|
+
# The CIDR block that Kubernetes pod and service IP addresses are
|
2261
2380
|
# assigned from if you created a 1.21 or later cluster with version
|
2262
|
-
# 1.10.
|
2381
|
+
# 1.10.1 or later of the Amazon VPC CNI add-on and specified `ipv6`
|
2263
2382
|
# for **ipFamily** when you created the cluster. Kubernetes assigns
|
2264
|
-
# addresses from the unique local address range (fc00::/7)
|
2383
|
+
# service addresses from the unique local address range (`fc00::/7`)
|
2384
|
+
# because you can't specify a custom IPv6 CIDR block when you create
|
2385
|
+
# the cluster.
|
2265
2386
|
# @return [String]
|
2266
2387
|
#
|
2267
2388
|
# @!attribute [rw] ip_family
|
2268
|
-
# The IP family used to assign Kubernetes
|
2389
|
+
# The IP family used to assign Kubernetes pod and service IP
|
2269
2390
|
# addresses. The IP family is always `ipv4`, unless you have a `1.21`
|
2270
|
-
# or later cluster running version 1.10.
|
2391
|
+
# or later cluster running version 1.10.1 or later of the Amazon VPC
|
2271
2392
|
# CNI add-on and specified `ipv6` when you created the cluster.
|
2272
2393
|
# @return [String]
|
2273
2394
|
#
|
@@ -2282,16 +2403,17 @@ module Aws::EKS
|
|
2282
2403
|
end
|
2283
2404
|
|
2284
2405
|
# An object representing a node group launch template specification. The
|
2285
|
-
# launch template
|
2406
|
+
# launch template can't include [ `SubnetId` ][1], [
|
2286
2407
|
# `IamInstanceProfile` ][2], [ `RequestSpotInstances` ][3], [
|
2287
2408
|
# `HibernationOptions` ][4], or [ `TerminateInstances` ][5], or the node
|
2288
2409
|
# group deployment or update will fail. For more information about
|
2289
2410
|
# launch templates, see [ `CreateLaunchTemplate` ][6] in the Amazon EC2
|
2290
2411
|
# 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
|
2412
|
+
# Amazon EKS, see [Launch template support][7] in the *Amazon EKS User
|
2413
|
+
# Guide*.
|
2293
2414
|
#
|
2294
|
-
#
|
2415
|
+
# You must specify either the launch template ID or the launch template
|
2416
|
+
# name in the request, but not both.
|
2295
2417
|
#
|
2296
2418
|
#
|
2297
2419
|
#
|
@@ -2314,15 +2436,28 @@ module Aws::EKS
|
|
2314
2436
|
#
|
2315
2437
|
# @!attribute [rw] name
|
2316
2438
|
# The name of the launch template.
|
2439
|
+
#
|
2440
|
+
# You must specify either the launch template name or the launch
|
2441
|
+
# template ID in the request, but not both.
|
2317
2442
|
# @return [String]
|
2318
2443
|
#
|
2319
2444
|
# @!attribute [rw] version
|
2320
|
-
# The
|
2321
|
-
#
|
2445
|
+
# The launch template version number, `$Latest`, or `$Default`.
|
2446
|
+
#
|
2447
|
+
# If the value is `$Latest`, Amazon EKS uses the latest version of the
|
2448
|
+
# launch template.
|
2449
|
+
#
|
2450
|
+
# If the value is `$Default`, Amazon EKS uses the default version of
|
2451
|
+
# the launch template.
|
2452
|
+
#
|
2453
|
+
# Default: The default version of the launch template.
|
2322
2454
|
# @return [String]
|
2323
2455
|
#
|
2324
2456
|
# @!attribute [rw] id
|
2325
2457
|
# The ID of the launch template.
|
2458
|
+
#
|
2459
|
+
# You must specify either the launch template ID or the launch
|
2460
|
+
# template name in the request, but not both.
|
2326
2461
|
# @return [String]
|
2327
2462
|
#
|
2328
2463
|
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/LaunchTemplateSpecification AWS API Documentation
|
@@ -2937,7 +3072,12 @@ module Aws::EKS
|
|
2937
3072
|
# when they are created. Effect is one of `No_Schedule`,
|
2938
3073
|
# `Prefer_No_Schedule`, or `No_Execute`. Kubernetes taints can be used
|
2939
3074
|
# together with tolerations to control how workloads are scheduled to
|
2940
|
-
# your nodes.
|
3075
|
+
# your nodes. For more information, see [Node taints on managed node
|
3076
|
+
# groups][1].
|
3077
|
+
#
|
3078
|
+
#
|
3079
|
+
#
|
3080
|
+
# [1]: https://docs.aws.amazon.com/eks/latest/userguide/node-taints-managed-node-groups.html
|
2941
3081
|
# @return [Array<Types::Taint>]
|
2942
3082
|
#
|
2943
3083
|
# @!attribute [rw] resources
|
@@ -3169,8 +3309,8 @@ module Aws::EKS
|
|
3169
3309
|
include Aws::Structure
|
3170
3310
|
end
|
3171
3311
|
|
3172
|
-
# An object
|
3173
|
-
#
|
3312
|
+
# An object representing the configuration for an OpenID Connect (OIDC)
|
3313
|
+
# identity provider.
|
3174
3314
|
#
|
3175
3315
|
# @!attribute [rw] identity_provider_config_name
|
3176
3316
|
# The name of the configuration.
|
@@ -3350,6 +3490,87 @@ module Aws::EKS
|
|
3350
3490
|
include Aws::Structure
|
3351
3491
|
end
|
3352
3492
|
|
3493
|
+
# The configuration of your local Amazon EKS cluster on an Amazon Web
|
3494
|
+
# Services Outpost. Before creating a cluster on an Outpost, review
|
3495
|
+
# [Creating a local Amazon EKS cluster on an Amazon Web Services
|
3496
|
+
# Outpost][1] in the *Amazon EKS User Guide*. This API isn't available
|
3497
|
+
# for Amazon EKS clusters on the Amazon Web Services cloud.
|
3498
|
+
#
|
3499
|
+
#
|
3500
|
+
#
|
3501
|
+
# [1]: https://docs.aws.amazon.com/eks/latest/userguide/create-cluster-outpost.html
|
3502
|
+
#
|
3503
|
+
# @note When making an API call, you may pass OutpostConfigRequest
|
3504
|
+
# data as a hash:
|
3505
|
+
#
|
3506
|
+
# {
|
3507
|
+
# outpost_arns: ["String"], # required
|
3508
|
+
# control_plane_instance_type: "String", # required
|
3509
|
+
# }
|
3510
|
+
#
|
3511
|
+
# @!attribute [rw] outpost_arns
|
3512
|
+
# The ARN of the Outpost that you want to use for your local Amazon
|
3513
|
+
# EKS cluster on Outposts. Only a single Outpost ARN is supported.
|
3514
|
+
# @return [Array<String>]
|
3515
|
+
#
|
3516
|
+
# @!attribute [rw] control_plane_instance_type
|
3517
|
+
# The Amazon EC2 instance type that you want to use for your local
|
3518
|
+
# Amazon EKS cluster on Outposts. The instance type that you specify
|
3519
|
+
# is used for all Kubernetes control plane instances. The instance
|
3520
|
+
# type can't be changed after cluster creation.
|
3521
|
+
#
|
3522
|
+
# Choose an instance type based on the number of nodes that your
|
3523
|
+
# cluster will have. If your cluster will have:
|
3524
|
+
#
|
3525
|
+
# * 1–20 nodes, then we recommend specifying a `large` instance type.
|
3526
|
+
#
|
3527
|
+
# * 21–100 nodes, then we recommend specifying an `xlarge` instance
|
3528
|
+
# type.
|
3529
|
+
#
|
3530
|
+
# * 101–250 nodes, then we recommend specifying a `2xlarge` instance
|
3531
|
+
# type.
|
3532
|
+
#
|
3533
|
+
# For a list of the available Amazon EC2 instance types, see Compute
|
3534
|
+
# and storage in [Outposts rack features][1]. The control plane is not
|
3535
|
+
# automatically scaled by Amazon EKS.
|
3536
|
+
#
|
3537
|
+
#
|
3538
|
+
#
|
3539
|
+
# [1]: http://aws.amazon.com/outposts/rack/features/
|
3540
|
+
# @return [String]
|
3541
|
+
#
|
3542
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/OutpostConfigRequest AWS API Documentation
|
3543
|
+
#
|
3544
|
+
class OutpostConfigRequest < Struct.new(
|
3545
|
+
:outpost_arns,
|
3546
|
+
:control_plane_instance_type)
|
3547
|
+
SENSITIVE = []
|
3548
|
+
include Aws::Structure
|
3549
|
+
end
|
3550
|
+
|
3551
|
+
# An object representing the configuration of your local Amazon EKS
|
3552
|
+
# cluster on an Amazon Web Services Outpost. This API isn't available
|
3553
|
+
# for Amazon EKS clusters on the Amazon Web Services cloud.
|
3554
|
+
#
|
3555
|
+
# @!attribute [rw] outpost_arns
|
3556
|
+
# The ARN of the Outpost that you specified for use with your local
|
3557
|
+
# Amazon EKS cluster on Outposts.
|
3558
|
+
# @return [Array<String>]
|
3559
|
+
#
|
3560
|
+
# @!attribute [rw] control_plane_instance_type
|
3561
|
+
# The Amazon EC2 instance type used for the control plane. The
|
3562
|
+
# instance type is the same for all control plane instances.
|
3563
|
+
# @return [String]
|
3564
|
+
#
|
3565
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/OutpostConfigResponse AWS API Documentation
|
3566
|
+
#
|
3567
|
+
class OutpostConfigResponse < Struct.new(
|
3568
|
+
:outpost_arns,
|
3569
|
+
:control_plane_instance_type)
|
3570
|
+
SENSITIVE = []
|
3571
|
+
include Aws::Structure
|
3572
|
+
end
|
3573
|
+
|
3353
3574
|
# Identifies the Key Management Service (KMS) key used to encrypt the
|
3354
3575
|
# secrets.
|
3355
3576
|
#
|
@@ -3572,7 +3793,7 @@ module Aws::EKS
|
|
3572
3793
|
include Aws::Structure
|
3573
3794
|
end
|
3574
3795
|
|
3575
|
-
# Required resources (such as
|
3796
|
+
# Required resources (such as service-linked roles) were created and are
|
3576
3797
|
# still propagating. Retry later.
|
3577
3798
|
#
|
3578
3799
|
# @!attribute [rw] message
|
@@ -3660,7 +3881,12 @@ module Aws::EKS
|
|
3660
3881
|
#
|
3661
3882
|
class TagResourceResponse < Aws::EmptyStructure; end
|
3662
3883
|
|
3663
|
-
# A property that allows a node to repel a set of pods.
|
3884
|
+
# A property that allows a node to repel a set of pods. For more
|
3885
|
+
# information, see [Node taints on managed node groups][1].
|
3886
|
+
#
|
3887
|
+
#
|
3888
|
+
#
|
3889
|
+
# [1]: https://docs.aws.amazon.com/eks/latest/userguide/node-taints-managed-node-groups.html
|
3664
3890
|
#
|
3665
3891
|
# @note When making an API call, you may pass Taint
|
3666
3892
|
# data as a hash:
|
@@ -3804,7 +4030,7 @@ module Aws::EKS
|
|
3804
4030
|
# addon_name: "String", # required
|
3805
4031
|
# addon_version: "String",
|
3806
4032
|
# service_account_role_arn: "RoleArn",
|
3807
|
-
# resolve_conflicts: "OVERWRITE", # accepts OVERWRITE, NONE
|
4033
|
+
# resolve_conflicts: "OVERWRITE", # accepts OVERWRITE, NONE, PRESERVE
|
3808
4034
|
# client_request_token: "String",
|
3809
4035
|
# }
|
3810
4036
|
#
|
@@ -3852,8 +4078,20 @@ module Aws::EKS
|
|
3852
4078
|
# @return [String]
|
3853
4079
|
#
|
3854
4080
|
# @!attribute [rw] resolve_conflicts
|
3855
|
-
# How to resolve
|
3856
|
-
#
|
4081
|
+
# How to resolve field value conflicts for an Amazon EKS add-on if
|
4082
|
+
# you've changed a value from the Amazon EKS default value. Conflicts
|
4083
|
+
# are handled based on the option you choose:
|
4084
|
+
#
|
4085
|
+
# * **None** – Amazon EKS doesn't change the value. The update might
|
4086
|
+
# fail.
|
4087
|
+
#
|
4088
|
+
# * **Overwrite** – Amazon EKS overwrites the changed value back to
|
4089
|
+
# the Amazon EKS default value.
|
4090
|
+
#
|
4091
|
+
# * **Preserve** – Amazon EKS preserves the value. If you choose this
|
4092
|
+
# option, we recommend that you test any field and value changes on
|
4093
|
+
# a non-production cluster before updating the add-on on your
|
4094
|
+
# production cluster.
|
3857
4095
|
# @return [String]
|
3858
4096
|
#
|
3859
4097
|
# @!attribute [rw] client_request_token
|
@@ -4104,7 +4342,12 @@ module Aws::EKS
|
|
4104
4342
|
#
|
4105
4343
|
# @!attribute [rw] taints
|
4106
4344
|
# The Kubernetes taints to be applied to the nodes in the node group
|
4107
|
-
# after the update.
|
4345
|
+
# after the update. For more information, see [Node taints on managed
|
4346
|
+
# node groups][1].
|
4347
|
+
#
|
4348
|
+
#
|
4349
|
+
#
|
4350
|
+
# [1]: https://docs.aws.amazon.com/eks/latest/userguide/node-taints-managed-node-groups.html
|
4108
4351
|
# @return [Types::UpdateTaintsPayload]
|
4109
4352
|
#
|
4110
4353
|
# @!attribute [rw] scaling_config
|
@@ -4184,8 +4427,8 @@ module Aws::EKS
|
|
4184
4427
|
# version. If you specify `launchTemplate`, and your launch template
|
4185
4428
|
# uses a custom AMI, then don't specify `version`, or the node group
|
4186
4429
|
# 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
|
4430
|
+
# with Amazon EKS, see [Launch template support][1] in the *Amazon EKS
|
4431
|
+
# User Guide*.
|
4189
4432
|
#
|
4190
4433
|
#
|
4191
4434
|
#
|
@@ -4201,7 +4444,7 @@ module Aws::EKS
|
|
4201
4444
|
# launch template uses a custom AMI, then don't specify
|
4202
4445
|
# `releaseVersion`, or the node group update will fail. For more
|
4203
4446
|
# information about using launch templates with Amazon EKS, see
|
4204
|
-
# [Launch template support][2] in the Amazon EKS User Guide
|
4447
|
+
# [Launch template support][2] in the *Amazon EKS User Guide*.
|
4205
4448
|
#
|
4206
4449
|
#
|
4207
4450
|
#
|
@@ -4278,6 +4521,11 @@ module Aws::EKS
|
|
4278
4521
|
end
|
4279
4522
|
|
4280
4523
|
# An object representing the details of an update to a taints payload.
|
4524
|
+
# For more information, see [Node taints on managed node groups][1].
|
4525
|
+
#
|
4526
|
+
#
|
4527
|
+
#
|
4528
|
+
# [1]: https://docs.aws.amazon.com/eks/latest/userguide/node-taints-managed-node-groups.html
|
4281
4529
|
#
|
4282
4530
|
# @note When making an API call, you may pass UpdateTaintsPayload
|
4283
4531
|
# 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.77.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-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|