aws-sdk-eks 1.70.0 → 1.71.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5e70e1cf5ef4898d9783666f4ef7a90a8ee323bbe4eb9f8eff7137a60605ed01
4
- data.tar.gz: 2c834024a74a35f76ee69154073c6907454ae9d2a6dbaccab2bbf9a47744b320
3
+ metadata.gz: 62dd0520493e4ed8a2010c00120ed4784e1a53e7be66f976d605a6574cab76c4
4
+ data.tar.gz: 90b2f99af319a7f16a9e995f44381309004a7d2329c849723a7df2fb5c3a7d1f
5
5
  SHA512:
6
- metadata.gz: e3d7d87cf2f623741813552e7a59d2bfa432ed11a45d54eb1b18a8539e1266599a07ae7e9084a7746000e9496ffe56ebbcfc98634e3420f19b143a97610d4202
7
- data.tar.gz: b1e05b84d71dd2b8d7e26d02696ad89172843a32aa8f96fffc2a15cad6352018fc92c8502e33280d07348d82f7fea21061fd08ebf9a0abd2604e84407b78f087
6
+ metadata.gz: 8826e43975bd9ada240b623551173e80a2203de30817ae072fd0636994ef4d9fdf302bb141e782a4f4fe17f8fe4f9a21affed00ef9a32b772ada8d95463618a9
7
+ data.tar.gz: 01d3977f7b27375a4ad3c9da93f18472544b8af341818f9d7d0a5c8f6df7c0a978e9e4a76131a0d9f2a1ea8d8f2d55c84f982dfb252b62e5a55c74d8d204f2d7
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.71.0 (2022-01-05)
5
+ ------------------
6
+
7
+ * Feature - Amazon EKS now supports running applications using IPv6 address space
8
+
4
9
  1.70.0 (2021-12-21)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.70.0
1
+ 1.71.0
@@ -755,6 +755,7 @@ module Aws::EKS
755
755
  # },
756
756
  # kubernetes_network_config: {
757
757
  # service_ipv_4_cidr: "String",
758
+ # ip_family: "ipv4", # accepts ipv4, ipv6
758
759
  # },
759
760
  # logging: {
760
761
  # cluster_logging: [
@@ -797,6 +798,8 @@ module Aws::EKS
797
798
  # resp.cluster.resources_vpc_config.public_access_cidrs #=> Array
798
799
  # resp.cluster.resources_vpc_config.public_access_cidrs[0] #=> String
799
800
  # resp.cluster.kubernetes_network_config.service_ipv_4_cidr #=> String
801
+ # resp.cluster.kubernetes_network_config.service_ipv_6_cidr #=> String
802
+ # resp.cluster.kubernetes_network_config.ip_family #=> String, one of "ipv4", "ipv6"
800
803
  # resp.cluster.logging.cluster_logging #=> Array
801
804
  # resp.cluster.logging.cluster_logging[0].types #=> Array
802
805
  # resp.cluster.logging.cluster_logging[0].types[0] #=> String, one of "api", "audit", "authenticator", "controllerManager", "scheduler"
@@ -1372,6 +1375,8 @@ module Aws::EKS
1372
1375
  # resp.cluster.resources_vpc_config.public_access_cidrs #=> Array
1373
1376
  # resp.cluster.resources_vpc_config.public_access_cidrs[0] #=> String
1374
1377
  # resp.cluster.kubernetes_network_config.service_ipv_4_cidr #=> String
1378
+ # resp.cluster.kubernetes_network_config.service_ipv_6_cidr #=> String
1379
+ # resp.cluster.kubernetes_network_config.ip_family #=> String, one of "ipv4", "ipv6"
1375
1380
  # resp.cluster.logging.cluster_logging #=> Array
1376
1381
  # resp.cluster.logging.cluster_logging[0].types #=> Array
1377
1382
  # resp.cluster.logging.cluster_logging[0].types[0] #=> String, one of "api", "audit", "authenticator", "controllerManager", "scheduler"
@@ -1568,6 +1573,8 @@ module Aws::EKS
1568
1573
  # resp.cluster.resources_vpc_config.public_access_cidrs #=> Array
1569
1574
  # resp.cluster.resources_vpc_config.public_access_cidrs[0] #=> String
1570
1575
  # resp.cluster.kubernetes_network_config.service_ipv_4_cidr #=> String
1576
+ # resp.cluster.kubernetes_network_config.service_ipv_6_cidr #=> String
1577
+ # resp.cluster.kubernetes_network_config.ip_family #=> String, one of "ipv4", "ipv6"
1571
1578
  # resp.cluster.logging.cluster_logging #=> Array
1572
1579
  # resp.cluster.logging.cluster_logging[0].types #=> Array
1573
1580
  # resp.cluster.logging.cluster_logging[0].types[0] #=> String, one of "api", "audit", "authenticator", "controllerManager", "scheduler"
@@ -1808,6 +1815,8 @@ module Aws::EKS
1808
1815
  # resp.cluster.resources_vpc_config.public_access_cidrs #=> Array
1809
1816
  # resp.cluster.resources_vpc_config.public_access_cidrs[0] #=> String
1810
1817
  # resp.cluster.kubernetes_network_config.service_ipv_4_cidr #=> String
1818
+ # resp.cluster.kubernetes_network_config.service_ipv_6_cidr #=> String
1819
+ # resp.cluster.kubernetes_network_config.ip_family #=> String, one of "ipv4", "ipv6"
1811
1820
  # resp.cluster.logging.cluster_logging #=> Array
1812
1821
  # resp.cluster.logging.cluster_logging[0].types #=> Array
1813
1822
  # resp.cluster.logging.cluster_logging[0].types[0] #=> String, one of "api", "audit", "authenticator", "controllerManager", "scheduler"
@@ -2628,6 +2637,8 @@ module Aws::EKS
2628
2637
  # resp.cluster.resources_vpc_config.public_access_cidrs #=> Array
2629
2638
  # resp.cluster.resources_vpc_config.public_access_cidrs[0] #=> String
2630
2639
  # resp.cluster.kubernetes_network_config.service_ipv_4_cidr #=> String
2640
+ # resp.cluster.kubernetes_network_config.service_ipv_6_cidr #=> String
2641
+ # resp.cluster.kubernetes_network_config.ip_family #=> String, one of "ipv4", "ipv6"
2631
2642
  # resp.cluster.logging.cluster_logging #=> Array
2632
2643
  # resp.cluster.logging.cluster_logging[0].types #=> Array
2633
2644
  # resp.cluster.logging.cluster_logging[0].types[0] #=> String, one of "api", "audit", "authenticator", "controllerManager", "scheduler"
@@ -3245,7 +3256,7 @@ module Aws::EKS
3245
3256
  params: params,
3246
3257
  config: config)
3247
3258
  context[:gem_name] = 'aws-sdk-eks'
3248
- context[:gem_version] = '1.70.0'
3259
+ context[:gem_version] = '1.71.0'
3249
3260
  Seahorse::Client::Request.new(handlers, context)
3250
3261
  end
3251
3262
 
@@ -100,6 +100,7 @@ module Aws::EKS
100
100
  IncludeClustersList = Shapes::ListShape.new(name: 'IncludeClustersList')
101
101
  InvalidParameterException = Shapes::StructureShape.new(name: 'InvalidParameterException')
102
102
  InvalidRequestException = Shapes::StructureShape.new(name: 'InvalidRequestException')
103
+ IpFamily = Shapes::StringShape.new(name: 'IpFamily')
103
104
  Issue = Shapes::StructureShape.new(name: 'Issue')
104
105
  IssueList = Shapes::ListShape.new(name: 'IssueList')
105
106
  KubernetesNetworkConfigRequest = Shapes::StructureShape.new(name: 'KubernetesNetworkConfigRequest')
@@ -536,9 +537,12 @@ module Aws::EKS
536
537
  IssueList.member = Shapes::ShapeRef.new(shape: Issue)
537
538
 
538
539
  KubernetesNetworkConfigRequest.add_member(:service_ipv_4_cidr, Shapes::ShapeRef.new(shape: String, location_name: "serviceIpv4Cidr"))
540
+ KubernetesNetworkConfigRequest.add_member(:ip_family, Shapes::ShapeRef.new(shape: IpFamily, location_name: "ipFamily"))
539
541
  KubernetesNetworkConfigRequest.struct_class = Types::KubernetesNetworkConfigRequest
540
542
 
541
543
  KubernetesNetworkConfigResponse.add_member(:service_ipv_4_cidr, Shapes::ShapeRef.new(shape: String, location_name: "serviceIpv4Cidr"))
544
+ KubernetesNetworkConfigResponse.add_member(:service_ipv_6_cidr, Shapes::ShapeRef.new(shape: String, location_name: "serviceIpv6Cidr"))
545
+ KubernetesNetworkConfigResponse.add_member(:ip_family, Shapes::ShapeRef.new(shape: IpFamily, location_name: "ipFamily"))
542
546
  KubernetesNetworkConfigResponse.struct_class = Types::KubernetesNetworkConfigResponse
543
547
 
544
548
  LaunchTemplateSpecification.add_member(:name, Shapes::ShapeRef.new(shape: String, location_name: "name"))
@@ -721,6 +721,7 @@ module Aws::EKS
721
721
  # },
722
722
  # kubernetes_network_config: {
723
723
  # service_ipv_4_cidr: "String",
724
+ # ip_family: "ipv4", # accepts ipv4, ipv6
724
725
  # },
725
726
  # logging: {
726
727
  # cluster_logging: [
@@ -2186,13 +2187,15 @@ module Aws::EKS
2186
2187
  #
2187
2188
  # {
2188
2189
  # service_ipv_4_cidr: "String",
2190
+ # ip_family: "ipv4", # accepts ipv4, ipv6
2189
2191
  # }
2190
2192
  #
2191
2193
  # @!attribute [rw] service_ipv_4_cidr
2192
- # The CIDR block to assign Kubernetes service IP addresses from. If
2193
- # you don't specify a block, Kubernetes assigns addresses from either
2194
- # the 10.100.0.0/16 or 172.20.0.0/16 CIDR blocks. We recommend that
2195
- # you specify a block that does not overlap with resources in other
2194
+ # Don't specify a value if you select `ipv6` for **ipFamily**. The
2195
+ # CIDR block to assign Kubernetes service IP addresses from. If you
2196
+ # don't specify a block, Kubernetes assigns addresses from either the
2197
+ # 10.100.0.0/16 or 172.20.0.0/16 CIDR blocks. We recommend that you
2198
+ # specify a block that does not overlap with resources in other
2196
2199
  # networks that are peered or connected to your VPC. The block must
2197
2200
  # meet the following requirements:
2198
2201
  #
@@ -2208,29 +2211,72 @@ module Aws::EKS
2208
2211
  # and can't change this value once the cluster is created.
2209
2212
  # @return [String]
2210
2213
  #
2214
+ # @!attribute [rw] ip_family
2215
+ # Specify which IP version is used to assign Kubernetes Pod and
2216
+ # Service IP addresses. If you don't specify a value, `ipv4` is used
2217
+ # by default. You can only specify an IP family when you create a
2218
+ # cluster and can't change this value once the cluster is created. If
2219
+ # you specify `ipv6`, the VPC and subnets that you specify for cluster
2220
+ # creation must have both IPv4 and IPv6 CIDR blocks assigned to them.
2221
+ #
2222
+ # You can only specify `ipv6` for 1.21 and later clusters that use
2223
+ # version 1.10.0 or later of the Amazon VPC CNI add-on. If you specify
2224
+ # `ipv6`, then ensure that your VPC meets the requirements and that
2225
+ # you're familiar with the considerations listed in [Assigning IPv6
2226
+ # addresses to Pods and Services][1] in the Amazon EKS User Guide. If
2227
+ # you specify `ipv6`, Kubernetes assigns Service and Pod addresses
2228
+ # from the unique local address range (fc00::/7). You can't specify a
2229
+ # custom IPv6 CIDR block.
2230
+ #
2231
+ #
2232
+ #
2233
+ # [1]: https://docs.aws.amazon.com/eks/latest/userguide/cni-ipv6.html
2234
+ # @return [String]
2235
+ #
2211
2236
  # @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/KubernetesNetworkConfigRequest AWS API Documentation
2212
2237
  #
2213
2238
  class KubernetesNetworkConfigRequest < Struct.new(
2214
- :service_ipv_4_cidr)
2239
+ :service_ipv_4_cidr,
2240
+ :ip_family)
2215
2241
  SENSITIVE = []
2216
2242
  include Aws::Structure
2217
2243
  end
2218
2244
 
2219
- # The Kubernetes network configuration for the cluster.
2245
+ # The Kubernetes network configuration for the cluster. The response
2246
+ # contains a value for **serviceIpv6Cidr** or **serviceIpv4Cidr**, but
2247
+ # not both.
2220
2248
  #
2221
2249
  # @!attribute [rw] service_ipv_4_cidr
2222
- # The CIDR block that Kubernetes service IP addresses are assigned
2223
- # from. If you didn't specify a CIDR block when you created the
2224
- # cluster, then Kubernetes assigns addresses from either the
2225
- # 10.100.0.0/16 or 172.20.0.0/16 CIDR blocks. If this was specified,
2226
- # then it was specified when the cluster was created and it cannot be
2227
- # changed.
2250
+ # The CIDR block that Kubernetes Pod and Service IP addresses are
2251
+ # assigned from. Kubernetes assigns addresses from an IPv4 CIDR block
2252
+ # assigned to a subnet that the node is in. If you didn't specify a
2253
+ # CIDR block when you created the cluster, then Kubernetes assigns
2254
+ # addresses from either the 10.100.0.0/16 or 172.20.0.0/16 CIDR
2255
+ # blocks. If this was specified, then it was specified when the
2256
+ # cluster was created and it can't be changed.
2257
+ # @return [String]
2258
+ #
2259
+ # @!attribute [rw] service_ipv_6_cidr
2260
+ # The CIDR block that Kubernetes Pod and Service IP addresses are
2261
+ # assigned from if you created a 1.21 or later cluster with version
2262
+ # 1.10.0 or later of the Amazon VPC CNI add-on and specified `ipv6`
2263
+ # for **ipFamily** when you created the cluster. Kubernetes assigns
2264
+ # addresses from the unique local address range (fc00::/7).
2265
+ # @return [String]
2266
+ #
2267
+ # @!attribute [rw] ip_family
2268
+ # The IP family used to assign Kubernetes Pod and Service IP
2269
+ # addresses. The IP family is always `ipv4`, unless you have a `1.21`
2270
+ # or later cluster running version 1.10.0 or later of the Amazon VPC
2271
+ # CNI add-on and specified `ipv6` when you created the cluster.
2228
2272
  # @return [String]
2229
2273
  #
2230
2274
  # @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/KubernetesNetworkConfigResponse AWS API Documentation
2231
2275
  #
2232
2276
  class KubernetesNetworkConfigResponse < Struct.new(
2233
- :service_ipv_4_cidr)
2277
+ :service_ipv_4_cidr,
2278
+ :service_ipv_6_cidr,
2279
+ :ip_family)
2234
2280
  SENSITIVE = []
2235
2281
  include Aws::Structure
2236
2282
  end
data/lib/aws-sdk-eks.rb CHANGED
@@ -49,6 +49,6 @@ require_relative 'aws-sdk-eks/customizations'
49
49
  # @!group service
50
50
  module Aws::EKS
51
51
 
52
- GEM_VERSION = '1.70.0'
52
+ GEM_VERSION = '1.71.0'
53
53
 
54
54
  end
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.70.0
4
+ version: 1.71.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: 2021-12-21 00:00:00.000000000 Z
11
+ date: 2022-01-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core