aws-sdk-eks 1.75.0 → 1.76.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-eks/client.rb +43 -10
- data/lib/aws-sdk-eks/types.rb +57 -10
- data/lib/aws-sdk-eks.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d5153478f0a086c082ff6312714743ec3f896a52594dd6f60a14475c3956b75b
|
4
|
+
data.tar.gz: 2801d7864851484371bb11bb474a9686baf556580fdecdfff5db34aa6902e1e1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: de98df51b9b1f7590f2e29de81dfe0b1203ba74cadaeced4add7e5b5cee6023e98f946cb490e6649b3c0361bc12bb1407eba6671f72bffd563c746f13b7c81bf
|
7
|
+
data.tar.gz: 1504c201a82e11ef7f78eb27e08bfae728831ab611e975c69dbaa15102113ffa916ad58bae981581c19fafc684f9950141d56f55565ed09f33059cc914b9bf97
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.76.0 (2022-09-07)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Adds support for EKS Addons ResolveConflicts "preserve" flag. Also adds new update failed status for EKS Addons.
|
8
|
+
|
4
9
|
1.75.0 (2022-05-10)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.76.0
|
data/lib/aws-sdk-eks/client.rb
CHANGED
@@ -555,8 +555,29 @@ module Aws::EKS
|
|
555
555
|
# [2]: https://docs.aws.amazon.com/eks/latest/userguide/enable-iam-roles-for-service-accounts.html
|
556
556
|
#
|
557
557
|
# @option params [String] :resolve_conflicts
|
558
|
-
# How to resolve
|
559
|
-
#
|
558
|
+
# How to resolve field value conflicts for an Amazon EKS add-on.
|
559
|
+
# Conflicts are handled based on the value you choose:
|
560
|
+
#
|
561
|
+
# * **None** – If the self-managed version of the add-on is installed on
|
562
|
+
# your cluster, Amazon EKS doesn't change the value. Creation of the
|
563
|
+
# add-on might fail.
|
564
|
+
#
|
565
|
+
# * **Overwrite** – If the self-managed version of the add-on is
|
566
|
+
# installed on your cluster and the Amazon EKS default value is
|
567
|
+
# different than the existing value, Amazon EKS changes the value to
|
568
|
+
# the Amazon EKS default value.
|
569
|
+
#
|
570
|
+
# * **Preserve** – Not supported. You can set this value when updating
|
571
|
+
# an add-on though. For more information, see [UpdateAddon][1].
|
572
|
+
#
|
573
|
+
# If you don't currently have the self-managed version of the add-on
|
574
|
+
# installed on your cluster, the Amazon EKS add-on is installed. Amazon
|
575
|
+
# EKS sets all values to default values, regardless of the option that
|
576
|
+
# you specify.
|
577
|
+
#
|
578
|
+
#
|
579
|
+
#
|
580
|
+
# [1]: https://docs.aws.amazon.com/eks/latest/APIReference/API_UpdateAddon.html
|
560
581
|
#
|
561
582
|
# @option params [String] :client_request_token
|
562
583
|
# A unique, case-sensitive identifier that you provide to ensure the
|
@@ -581,7 +602,7 @@ module Aws::EKS
|
|
581
602
|
# addon_name: "String", # required
|
582
603
|
# addon_version: "String",
|
583
604
|
# service_account_role_arn: "RoleArn",
|
584
|
-
# resolve_conflicts: "OVERWRITE", # accepts OVERWRITE, NONE
|
605
|
+
# resolve_conflicts: "OVERWRITE", # accepts OVERWRITE, NONE, PRESERVE
|
585
606
|
# client_request_token: "String",
|
586
607
|
# tags: {
|
587
608
|
# "TagKey" => "TagValue",
|
@@ -592,7 +613,7 @@ module Aws::EKS
|
|
592
613
|
#
|
593
614
|
# resp.addon.addon_name #=> String
|
594
615
|
# resp.addon.cluster_name #=> String
|
595
|
-
# resp.addon.status #=> String, one of "CREATING", "ACTIVE", "CREATE_FAILED", "UPDATING", "DELETING", "DELETE_FAILED", "DEGRADED"
|
616
|
+
# resp.addon.status #=> String, one of "CREATING", "ACTIVE", "CREATE_FAILED", "UPDATING", "DELETING", "DELETE_FAILED", "DEGRADED", "UPDATE_FAILED"
|
596
617
|
# resp.addon.addon_version #=> String
|
597
618
|
# resp.addon.health.issues #=> Array
|
598
619
|
# resp.addon.health.issues[0].code #=> String, one of "AccessDenied", "InternalFailure", "ClusterUnreachable", "InsufficientNumberOfReplicas", "ConfigurationConflict", "AdmissionRequestDenied", "UnsupportedAddonModification", "K8sResourceNotFound"
|
@@ -1299,7 +1320,7 @@ module Aws::EKS
|
|
1299
1320
|
#
|
1300
1321
|
# resp.addon.addon_name #=> String
|
1301
1322
|
# resp.addon.cluster_name #=> String
|
1302
|
-
# resp.addon.status #=> String, one of "CREATING", "ACTIVE", "CREATE_FAILED", "UPDATING", "DELETING", "DELETE_FAILED", "DEGRADED"
|
1323
|
+
# resp.addon.status #=> String, one of "CREATING", "ACTIVE", "CREATE_FAILED", "UPDATING", "DELETING", "DELETE_FAILED", "DEGRADED", "UPDATE_FAILED"
|
1303
1324
|
# resp.addon.addon_version #=> String
|
1304
1325
|
# resp.addon.health.issues #=> Array
|
1305
1326
|
# resp.addon.health.issues[0].code #=> String, one of "AccessDenied", "InternalFailure", "ClusterUnreachable", "InsufficientNumberOfReplicas", "ConfigurationConflict", "AdmissionRequestDenied", "UnsupportedAddonModification", "K8sResourceNotFound"
|
@@ -1642,7 +1663,7 @@ module Aws::EKS
|
|
1642
1663
|
#
|
1643
1664
|
# resp.addon.addon_name #=> String
|
1644
1665
|
# resp.addon.cluster_name #=> String
|
1645
|
-
# resp.addon.status #=> String, one of "CREATING", "ACTIVE", "CREATE_FAILED", "UPDATING", "DELETING", "DELETE_FAILED", "DEGRADED"
|
1666
|
+
# resp.addon.status #=> String, one of "CREATING", "ACTIVE", "CREATE_FAILED", "UPDATING", "DELETING", "DELETE_FAILED", "DEGRADED", "UPDATE_FAILED"
|
1646
1667
|
# resp.addon.addon_version #=> String
|
1647
1668
|
# resp.addon.health.issues #=> Array
|
1648
1669
|
# resp.addon.health.issues[0].code #=> String, one of "AccessDenied", "InternalFailure", "ClusterUnreachable", "InsufficientNumberOfReplicas", "ConfigurationConflict", "AdmissionRequestDenied", "UnsupportedAddonModification", "K8sResourceNotFound"
|
@@ -2787,8 +2808,20 @@ module Aws::EKS
|
|
2787
2808
|
# [2]: https://docs.aws.amazon.com/eks/latest/userguide/enable-iam-roles-for-service-accounts.html
|
2788
2809
|
#
|
2789
2810
|
# @option params [String] :resolve_conflicts
|
2790
|
-
# How to resolve
|
2791
|
-
#
|
2811
|
+
# How to resolve field value conflicts for an Amazon EKS add-on if
|
2812
|
+
# you've changed a value from the Amazon EKS default value. Conflicts
|
2813
|
+
# are handled based on the option you choose:
|
2814
|
+
#
|
2815
|
+
# * **None** – Amazon EKS doesn't change the value. The update might
|
2816
|
+
# fail.
|
2817
|
+
#
|
2818
|
+
# * **Overwrite** – Amazon EKS overwrites the changed value back to the
|
2819
|
+
# Amazon EKS default value.
|
2820
|
+
#
|
2821
|
+
# * **Preserve** – Amazon EKS preserves the value. If you choose this
|
2822
|
+
# option, we recommend that you test any field and value changes on a
|
2823
|
+
# non-production cluster before updating the add-on on your production
|
2824
|
+
# cluster.
|
2792
2825
|
#
|
2793
2826
|
# @option params [String] :client_request_token
|
2794
2827
|
# Unique, case-sensitive identifier that you provide to ensure the
|
@@ -2808,7 +2841,7 @@ module Aws::EKS
|
|
2808
2841
|
# addon_name: "String", # required
|
2809
2842
|
# addon_version: "String",
|
2810
2843
|
# service_account_role_arn: "RoleArn",
|
2811
|
-
# resolve_conflicts: "OVERWRITE", # accepts OVERWRITE, NONE
|
2844
|
+
# resolve_conflicts: "OVERWRITE", # accepts OVERWRITE, NONE, PRESERVE
|
2812
2845
|
# client_request_token: "String",
|
2813
2846
|
# })
|
2814
2847
|
#
|
@@ -3272,7 +3305,7 @@ module Aws::EKS
|
|
3272
3305
|
params: params,
|
3273
3306
|
config: config)
|
3274
3307
|
context[:gem_name] = 'aws-sdk-eks'
|
3275
|
-
context[:gem_version] = '1.
|
3308
|
+
context[:gem_version] = '1.76.0'
|
3276
3309
|
Seahorse::Client::Request.new(handlers, context)
|
3277
3310
|
end
|
3278
3311
|
|
data/lib/aws-sdk-eks/types.rb
CHANGED
@@ -605,7 +605,7 @@ module Aws::EKS
|
|
605
605
|
# addon_name: "String", # required
|
606
606
|
# addon_version: "String",
|
607
607
|
# service_account_role_arn: "RoleArn",
|
608
|
-
# resolve_conflicts: "OVERWRITE", # accepts OVERWRITE, NONE
|
608
|
+
# resolve_conflicts: "OVERWRITE", # accepts OVERWRITE, NONE, PRESERVE
|
609
609
|
# client_request_token: "String",
|
610
610
|
# tags: {
|
611
611
|
# "TagKey" => "TagValue",
|
@@ -656,8 +656,29 @@ module Aws::EKS
|
|
656
656
|
# @return [String]
|
657
657
|
#
|
658
658
|
# @!attribute [rw] resolve_conflicts
|
659
|
-
# How to resolve
|
660
|
-
#
|
659
|
+
# How to resolve field value conflicts for an Amazon EKS add-on.
|
660
|
+
# Conflicts are handled based on the value you choose:
|
661
|
+
#
|
662
|
+
# * **None** – If the self-managed version of the add-on is installed
|
663
|
+
# on your cluster, Amazon EKS doesn't change the value. Creation of
|
664
|
+
# the add-on might fail.
|
665
|
+
#
|
666
|
+
# * **Overwrite** – If the self-managed version of the add-on is
|
667
|
+
# installed on your cluster and the Amazon EKS default value is
|
668
|
+
# different than the existing value, Amazon EKS changes the value to
|
669
|
+
# the Amazon EKS default value.
|
670
|
+
#
|
671
|
+
# * **Preserve** – Not supported. You can set this value when updating
|
672
|
+
# an add-on though. For more information, see [UpdateAddon][1].
|
673
|
+
#
|
674
|
+
# If you don't currently have the self-managed version of the add-on
|
675
|
+
# installed on your cluster, the Amazon EKS add-on is installed.
|
676
|
+
# Amazon EKS sets all values to default values, regardless of the
|
677
|
+
# option that you specify.
|
678
|
+
#
|
679
|
+
#
|
680
|
+
#
|
681
|
+
# [1]: https://docs.aws.amazon.com/eks/latest/APIReference/API_UpdateAddon.html
|
661
682
|
# @return [String]
|
662
683
|
#
|
663
684
|
# @!attribute [rw] client_request_token
|
@@ -2296,7 +2317,7 @@ module Aws::EKS
|
|
2296
2317
|
end
|
2297
2318
|
|
2298
2319
|
# An object representing a node group launch template specification. The
|
2299
|
-
# launch template
|
2320
|
+
# launch template can't include [ `SubnetId` ][1], [
|
2300
2321
|
# `IamInstanceProfile` ][2], [ `RequestSpotInstances` ][3], [
|
2301
2322
|
# `HibernationOptions` ][4], or [ `TerminateInstances` ][5], or the node
|
2302
2323
|
# group deployment or update will fail. For more information about
|
@@ -2305,7 +2326,8 @@ module Aws::EKS
|
|
2305
2326
|
# Amazon EKS, see [Launch template support][7] in the *Amazon EKS User
|
2306
2327
|
# Guide*.
|
2307
2328
|
#
|
2308
|
-
#
|
2329
|
+
# You must specify either the launch template ID or the launch template
|
2330
|
+
# name in the request, but not both.
|
2309
2331
|
#
|
2310
2332
|
#
|
2311
2333
|
#
|
@@ -2328,15 +2350,28 @@ module Aws::EKS
|
|
2328
2350
|
#
|
2329
2351
|
# @!attribute [rw] name
|
2330
2352
|
# The name of the launch template.
|
2353
|
+
#
|
2354
|
+
# You must specify either the launch template name or the launch
|
2355
|
+
# template ID in the request, but not both.
|
2331
2356
|
# @return [String]
|
2332
2357
|
#
|
2333
2358
|
# @!attribute [rw] version
|
2334
|
-
# The
|
2335
|
-
#
|
2359
|
+
# The launch template version number, `$Latest`, or `$Default`.
|
2360
|
+
#
|
2361
|
+
# If the value is `$Latest`, Amazon EKS uses the latest version of the
|
2362
|
+
# launch template.
|
2363
|
+
#
|
2364
|
+
# If the value is `$Default`, Amazon EKS uses the default version of
|
2365
|
+
# the launch template.
|
2366
|
+
#
|
2367
|
+
# Default: The default version of the launch template.
|
2336
2368
|
# @return [String]
|
2337
2369
|
#
|
2338
2370
|
# @!attribute [rw] id
|
2339
2371
|
# The ID of the launch template.
|
2372
|
+
#
|
2373
|
+
# You must specify either the launch template ID or the launch
|
2374
|
+
# template name in the request, but not both.
|
2340
2375
|
# @return [String]
|
2341
2376
|
#
|
2342
2377
|
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/LaunchTemplateSpecification AWS API Documentation
|
@@ -3828,7 +3863,7 @@ module Aws::EKS
|
|
3828
3863
|
# addon_name: "String", # required
|
3829
3864
|
# addon_version: "String",
|
3830
3865
|
# service_account_role_arn: "RoleArn",
|
3831
|
-
# resolve_conflicts: "OVERWRITE", # accepts OVERWRITE, NONE
|
3866
|
+
# resolve_conflicts: "OVERWRITE", # accepts OVERWRITE, NONE, PRESERVE
|
3832
3867
|
# client_request_token: "String",
|
3833
3868
|
# }
|
3834
3869
|
#
|
@@ -3876,8 +3911,20 @@ module Aws::EKS
|
|
3876
3911
|
# @return [String]
|
3877
3912
|
#
|
3878
3913
|
# @!attribute [rw] resolve_conflicts
|
3879
|
-
# How to resolve
|
3880
|
-
#
|
3914
|
+
# How to resolve field value conflicts for an Amazon EKS add-on if
|
3915
|
+
# you've changed a value from the Amazon EKS default value. Conflicts
|
3916
|
+
# are handled based on the option you choose:
|
3917
|
+
#
|
3918
|
+
# * **None** – Amazon EKS doesn't change the value. The update might
|
3919
|
+
# fail.
|
3920
|
+
#
|
3921
|
+
# * **Overwrite** – Amazon EKS overwrites the changed value back to
|
3922
|
+
# the Amazon EKS default value.
|
3923
|
+
#
|
3924
|
+
# * **Preserve** – Amazon EKS preserves the value. If you choose this
|
3925
|
+
# option, we recommend that you test any field and value changes on
|
3926
|
+
# a non-production cluster before updating the add-on on your
|
3927
|
+
# production cluster.
|
3881
3928
|
# @return [String]
|
3882
3929
|
#
|
3883
3930
|
# @!attribute [rw] client_request_token
|
data/lib/aws-sdk-eks.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-eks
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.76.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-
|
11
|
+
date: 2022-09-07 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|