aws-sdk-eks 1.156.0 → 1.157.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 +12 -11
- data/lib/aws-sdk-eks.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7742faa47c49ff26201c3cd83998e8e2832ed8e1301f71e2af7b7ca43f21d270
|
|
4
|
+
data.tar.gz: e290de4727dcc3d56a1c81675a0d64db3df70d85c552a4116dddb8826590fb8e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d98f04af9a72ba1792f4469fb03858f7ad57f7578b7b70167600700ca56f439d01fee48166549c96fa179ae8ce0f7a9b7165c6e05ec85f8d1e5a49d4a6967a47
|
|
7
|
+
data.tar.gz: ab9614a5710281ade221625b94dea67421826e85ab83d0862bbb377f63fbbaa331073cb2857e3c3ce922ae2ef30750a9747e3e348b7d25b4b961cc14077e90e5
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.157.0
|
data/lib/aws-sdk-eks/client.rb
CHANGED
|
@@ -1213,10 +1213,11 @@ module Aws::EKS
|
|
|
1213
1213
|
# runs on its own set of Amazon EC2 instances.
|
|
1214
1214
|
#
|
|
1215
1215
|
# The cluster control plane is provisioned across multiple Availability
|
|
1216
|
-
# Zones and fronted by an
|
|
1217
|
-
# provisions elastic network interfaces in your VPC
|
|
1218
|
-
# connectivity from the control plane instances to
|
|
1219
|
-
# example, to support `kubectl exec`, `logs`, and `proxy`
|
|
1216
|
+
# Zones and fronted by an Elastic Load Balancing Network Load Balancer.
|
|
1217
|
+
# Amazon EKS also provisions elastic network interfaces in your VPC
|
|
1218
|
+
# subnets to provide connectivity from the control plane instances to
|
|
1219
|
+
# the nodes (for example, to support `kubectl exec`, `logs`, and `proxy`
|
|
1220
|
+
# data flows).
|
|
1220
1221
|
#
|
|
1221
1222
|
# Amazon EKS nodes run in your Amazon Web Services account and connect
|
|
1222
1223
|
# to your cluster's control plane over the Kubernetes API server
|
|
@@ -2545,12 +2546,12 @@ module Aws::EKS
|
|
|
2545
2546
|
|
|
2546
2547
|
# Deletes an Amazon EKS cluster control plane.
|
|
2547
2548
|
#
|
|
2548
|
-
# If you have active services in your cluster that
|
|
2549
|
-
# load balancer, you must delete those services
|
|
2550
|
-
# cluster so that the load balancers are deleted
|
|
2551
|
-
# you can have orphaned resources in your VPC that
|
|
2552
|
-
# being able to delete the VPC. For more information,
|
|
2553
|
-
# cluster][1] in the *Amazon EKS User Guide*.
|
|
2549
|
+
# If you have active services and ingress resources in your cluster that
|
|
2550
|
+
# are associated with a load balancer, you must delete those services
|
|
2551
|
+
# before deleting the cluster so that the load balancers are deleted
|
|
2552
|
+
# properly. Otherwise, you can have orphaned resources in your VPC that
|
|
2553
|
+
# prevent you from being able to delete the VPC. For more information,
|
|
2554
|
+
# see [Deleting a cluster][1] in the *Amazon EKS User Guide*.
|
|
2554
2555
|
#
|
|
2555
2556
|
# If you have managed node groups or Fargate profiles attached to the
|
|
2556
2557
|
# cluster, you must delete them first. For more information, see
|
|
@@ -6354,7 +6355,7 @@ module Aws::EKS
|
|
|
6354
6355
|
tracer: tracer
|
|
6355
6356
|
)
|
|
6356
6357
|
context[:gem_name] = 'aws-sdk-eks'
|
|
6357
|
-
context[:gem_version] = '1.
|
|
6358
|
+
context[:gem_version] = '1.157.0'
|
|
6358
6359
|
Seahorse::Client::Request.new(handlers, context)
|
|
6359
6360
|
end
|
|
6360
6361
|
|
data/lib/aws-sdk-eks.rb
CHANGED