aws-sdk-eks 1.121.0 → 1.123.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-eks/client.rb +165 -19
- data/lib/aws-sdk-eks/client_api.rb +71 -0
- data/lib/aws-sdk-eks/types.rb +481 -5
- data/lib/aws-sdk-eks.rb +1 -1
- data/sig/client.rbs +49 -1
- data/sig/types.rbs +78 -2
- metadata +2 -2
data/lib/aws-sdk-eks/types.rb
CHANGED
@@ -424,6 +424,10 @@ module Aws::EKS
|
|
424
424
|
# The architectures that the version supports.
|
425
425
|
# @return [Array<String>]
|
426
426
|
#
|
427
|
+
# @!attribute [rw] compute_types
|
428
|
+
# Indicates the compute type of the addon version.
|
429
|
+
# @return [Array<String>]
|
430
|
+
#
|
427
431
|
# @!attribute [rw] compatibilities
|
428
432
|
# An object representing the compatibilities of a version.
|
429
433
|
# @return [Array<Types::Compatibility>]
|
@@ -442,6 +446,7 @@ module Aws::EKS
|
|
442
446
|
class AddonVersionInfo < Struct.new(
|
443
447
|
:addon_version,
|
444
448
|
:architecture,
|
449
|
+
:compute_types,
|
445
450
|
:compatibilities,
|
446
451
|
:requires_configuration,
|
447
452
|
:requires_iam_permissions)
|
@@ -655,6 +660,28 @@ module Aws::EKS
|
|
655
660
|
include Aws::Structure
|
656
661
|
end
|
657
662
|
|
663
|
+
# Indicates the current configuration of the block storage capability on
|
664
|
+
# your EKS Auto Mode cluster. For example, if the capability is enabled
|
665
|
+
# or disabled. If the block storage capability is enabled, EKS Auto Mode
|
666
|
+
# will create and delete EBS volumes in your Amazon Web Services
|
667
|
+
# account. For more information, see EKS Auto Mode block storage
|
668
|
+
# capability in the EKS User Guide.
|
669
|
+
#
|
670
|
+
# @!attribute [rw] enabled
|
671
|
+
# Indicates if the block storage capability is enabled on your EKS
|
672
|
+
# Auto Mode cluster. If the block storage capability is enabled, EKS
|
673
|
+
# Auto Mode will create and delete EBS volumes in your Amazon Web
|
674
|
+
# Services account.
|
675
|
+
# @return [Boolean]
|
676
|
+
#
|
677
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/BlockStorage AWS API Documentation
|
678
|
+
#
|
679
|
+
class BlockStorage < Struct.new(
|
680
|
+
:enabled)
|
681
|
+
SENSITIVE = []
|
682
|
+
include Aws::Structure
|
683
|
+
end
|
684
|
+
|
658
685
|
# An object representing the `certificate-authority-data` for your
|
659
686
|
# cluster.
|
660
687
|
#
|
@@ -876,6 +903,29 @@ module Aws::EKS
|
|
876
903
|
# The configuration for zonal shift for the cluster.
|
877
904
|
# @return [Types::ZonalShiftConfigResponse]
|
878
905
|
#
|
906
|
+
# @!attribute [rw] remote_network_config
|
907
|
+
# The configuration in the cluster for EKS Hybrid Nodes. You can't
|
908
|
+
# change or update this configuration after the cluster is created.
|
909
|
+
# @return [Types::RemoteNetworkConfigResponse]
|
910
|
+
#
|
911
|
+
# @!attribute [rw] compute_config
|
912
|
+
# Indicates the current configuration of the compute capability on
|
913
|
+
# your EKS Auto Mode cluster. For example, if the capability is
|
914
|
+
# enabled or disabled. If the compute capability is enabled, EKS Auto
|
915
|
+
# Mode will create and delete EC2 Managed Instances in your Amazon Web
|
916
|
+
# Services account. For more information, see EKS Auto Mode compute
|
917
|
+
# capability in the EKS User Guide.
|
918
|
+
# @return [Types::ComputeConfigResponse]
|
919
|
+
#
|
920
|
+
# @!attribute [rw] storage_config
|
921
|
+
# Indicates the current configuration of the block storage capability
|
922
|
+
# on your EKS Auto Mode cluster. For example, if the capability is
|
923
|
+
# enabled or disabled. If the block storage capability is enabled, EKS
|
924
|
+
# Auto Mode will create and delete EBS volumes in your Amazon Web
|
925
|
+
# Services account. For more information, see EKS Auto Mode block
|
926
|
+
# storage capability in the EKS User Guide.
|
927
|
+
# @return [Types::StorageConfigResponse]
|
928
|
+
#
|
879
929
|
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/Cluster AWS API Documentation
|
880
930
|
#
|
881
931
|
class Cluster < Struct.new(
|
@@ -901,7 +951,10 @@ module Aws::EKS
|
|
901
951
|
:outpost_config,
|
902
952
|
:access_config,
|
903
953
|
:upgrade_policy,
|
904
|
-
:zonal_shift_config
|
954
|
+
:zonal_shift_config,
|
955
|
+
:remote_network_config,
|
956
|
+
:compute_config,
|
957
|
+
:storage_config)
|
905
958
|
SENSITIVE = []
|
906
959
|
include Aws::Structure
|
907
960
|
end
|
@@ -968,6 +1021,72 @@ module Aws::EKS
|
|
968
1021
|
include Aws::Structure
|
969
1022
|
end
|
970
1023
|
|
1024
|
+
# Request to update the configuration of the compute capability of your
|
1025
|
+
# EKS Auto Mode cluster. For example, enable the capability. For more
|
1026
|
+
# information, see EKS Auto Mode compute capability in the EKS User
|
1027
|
+
# Guide.
|
1028
|
+
#
|
1029
|
+
# @!attribute [rw] enabled
|
1030
|
+
# Request to enable or disable the compute capability on your EKS Auto
|
1031
|
+
# Mode cluster. If the compute capability is enabled, EKS Auto Mode
|
1032
|
+
# will create and delete EC2 Managed Instances in your Amazon Web
|
1033
|
+
# Services account.
|
1034
|
+
# @return [Boolean]
|
1035
|
+
#
|
1036
|
+
# @!attribute [rw] node_pools
|
1037
|
+
# Configuration for node pools that defines the compute resources for
|
1038
|
+
# your EKS Auto Mode cluster. For more information, see EKS Auto Mode
|
1039
|
+
# Node Pools in the EKS User Guide.
|
1040
|
+
# @return [Array<String>]
|
1041
|
+
#
|
1042
|
+
# @!attribute [rw] node_role_arn
|
1043
|
+
# The ARN of the IAM Role EKS will assign to EC2 Managed Instances in
|
1044
|
+
# your EKS Auto Mode cluster. This value cannot be changed after the
|
1045
|
+
# compute capability of EKS Auto Mode is enabled. For more
|
1046
|
+
# information, see the IAM Reference in the EKS User Guide.
|
1047
|
+
# @return [String]
|
1048
|
+
#
|
1049
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/ComputeConfigRequest AWS API Documentation
|
1050
|
+
#
|
1051
|
+
class ComputeConfigRequest < Struct.new(
|
1052
|
+
:enabled,
|
1053
|
+
:node_pools,
|
1054
|
+
:node_role_arn)
|
1055
|
+
SENSITIVE = []
|
1056
|
+
include Aws::Structure
|
1057
|
+
end
|
1058
|
+
|
1059
|
+
# Indicates the status of the request to update the compute capability
|
1060
|
+
# of your EKS Auto Mode cluster.
|
1061
|
+
#
|
1062
|
+
# @!attribute [rw] enabled
|
1063
|
+
# Indicates if the compute capability is enabled on your EKS Auto Mode
|
1064
|
+
# cluster. If the compute capability is enabled, EKS Auto Mode will
|
1065
|
+
# create and delete EC2 Managed Instances in your Amazon Web Services
|
1066
|
+
# account.
|
1067
|
+
# @return [Boolean]
|
1068
|
+
#
|
1069
|
+
# @!attribute [rw] node_pools
|
1070
|
+
# Indicates the current configuration of node pools in your EKS Auto
|
1071
|
+
# Mode cluster. For more information, see EKS Auto Mode Node Pools in
|
1072
|
+
# the EKS User Guide.
|
1073
|
+
# @return [Array<String>]
|
1074
|
+
#
|
1075
|
+
# @!attribute [rw] node_role_arn
|
1076
|
+
# The ARN of the IAM Role EKS will assign to EC2 Managed Instances in
|
1077
|
+
# your EKS Auto Mode cluster.
|
1078
|
+
# @return [String]
|
1079
|
+
#
|
1080
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/ComputeConfigResponse AWS API Documentation
|
1081
|
+
#
|
1082
|
+
class ComputeConfigResponse < Struct.new(
|
1083
|
+
:enabled,
|
1084
|
+
:node_pools,
|
1085
|
+
:node_role_arn)
|
1086
|
+
SENSITIVE = []
|
1087
|
+
include Aws::Structure
|
1088
|
+
end
|
1089
|
+
|
971
1090
|
# The configuration sent to a cluster for configuration.
|
972
1091
|
#
|
973
1092
|
# @!attribute [rw] role_arn
|
@@ -1508,6 +1627,25 @@ module Aws::EKS
|
|
1508
1627
|
# [1]: https://docs.aws.amazon.com/eks/latest/userguide/zone-shift.html
|
1509
1628
|
# @return [Types::ZonalShiftConfigRequest]
|
1510
1629
|
#
|
1630
|
+
# @!attribute [rw] remote_network_config
|
1631
|
+
# The configuration in the cluster for EKS Hybrid Nodes. You can't
|
1632
|
+
# change or update this configuration after the cluster is created.
|
1633
|
+
# @return [Types::RemoteNetworkConfigRequest]
|
1634
|
+
#
|
1635
|
+
# @!attribute [rw] compute_config
|
1636
|
+
# Enable or disable the compute capability of EKS Auto Mode when
|
1637
|
+
# creating your EKS Auto Mode cluster. If the compute capability is
|
1638
|
+
# enabled, EKS Auto Mode will create and delete EC2 Managed Instances
|
1639
|
+
# in your Amazon Web Services account
|
1640
|
+
# @return [Types::ComputeConfigRequest]
|
1641
|
+
#
|
1642
|
+
# @!attribute [rw] storage_config
|
1643
|
+
# Enable or disable the block storage capability of EKS Auto Mode when
|
1644
|
+
# creating your EKS Auto Mode cluster. If the block storage capability
|
1645
|
+
# is enabled, EKS Auto Mode will create and delete EBS volumes in your
|
1646
|
+
# Amazon Web Services account.
|
1647
|
+
# @return [Types::StorageConfigRequest]
|
1648
|
+
#
|
1511
1649
|
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/CreateClusterRequest AWS API Documentation
|
1512
1650
|
#
|
1513
1651
|
class CreateClusterRequest < Struct.new(
|
@@ -1524,7 +1662,10 @@ module Aws::EKS
|
|
1524
1662
|
:access_config,
|
1525
1663
|
:bootstrap_self_managed_addons,
|
1526
1664
|
:upgrade_policy,
|
1527
|
-
:zonal_shift_config
|
1665
|
+
:zonal_shift_config,
|
1666
|
+
:remote_network_config,
|
1667
|
+
:compute_config,
|
1668
|
+
:storage_config)
|
1528
1669
|
SENSITIVE = []
|
1529
1670
|
include Aws::Structure
|
1530
1671
|
end
|
@@ -1848,6 +1989,10 @@ module Aws::EKS
|
|
1848
1989
|
# The node group update configuration.
|
1849
1990
|
# @return [Types::NodegroupUpdateConfig]
|
1850
1991
|
#
|
1992
|
+
# @!attribute [rw] node_repair_config
|
1993
|
+
# The node auto repair configuration for the node group.
|
1994
|
+
# @return [Types::NodeRepairConfig]
|
1995
|
+
#
|
1851
1996
|
# @!attribute [rw] capacity_type
|
1852
1997
|
# The capacity type for your node group.
|
1853
1998
|
# @return [String]
|
@@ -1907,6 +2052,7 @@ module Aws::EKS
|
|
1907
2052
|
:client_request_token,
|
1908
2053
|
:launch_template,
|
1909
2054
|
:update_config,
|
2055
|
+
:node_repair_config,
|
1910
2056
|
:capacity_type,
|
1911
2057
|
:version,
|
1912
2058
|
:release_version)
|
@@ -2912,6 +3058,26 @@ module Aws::EKS
|
|
2912
3058
|
include Aws::Structure
|
2913
3059
|
end
|
2914
3060
|
|
3061
|
+
# Indicates the current configuration of the load balancing capability
|
3062
|
+
# on your EKS Auto Mode cluster. For example, if the capability is
|
3063
|
+
# enabled or disabled. For more information, see EKS Auto Mode load
|
3064
|
+
# balancing capability in the EKS User Guide.
|
3065
|
+
#
|
3066
|
+
# @!attribute [rw] enabled
|
3067
|
+
# Indicates if the load balancing capability is enabled on your EKS
|
3068
|
+
# Auto Mode cluster. If the load balancing capability is enabled, EKS
|
3069
|
+
# Auto Mode will create and delete load balancers in your Amazon Web
|
3070
|
+
# Services account.
|
3071
|
+
# @return [Boolean]
|
3072
|
+
#
|
3073
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/ElasticLoadBalancing AWS API Documentation
|
3074
|
+
#
|
3075
|
+
class ElasticLoadBalancing < Struct.new(
|
3076
|
+
:enabled)
|
3077
|
+
SENSITIVE = []
|
3078
|
+
include Aws::Structure
|
3079
|
+
end
|
3080
|
+
|
2915
3081
|
# The encryption configuration for the cluster.
|
2916
3082
|
#
|
2917
3083
|
# @!attribute [rw] resources
|
@@ -3603,11 +3769,18 @@ module Aws::EKS
|
|
3603
3769
|
# [1]: https://docs.aws.amazon.com/eks/latest/userguide/cni-ipv6.html
|
3604
3770
|
# @return [String]
|
3605
3771
|
#
|
3772
|
+
# @!attribute [rw] elastic_load_balancing
|
3773
|
+
# Request to enable or disable the load balancing capability on your
|
3774
|
+
# EKS Auto Mode cluster. For more information, see EKS Auto Mode load
|
3775
|
+
# balancing capability in the EKS User Guide.
|
3776
|
+
# @return [Types::ElasticLoadBalancing]
|
3777
|
+
#
|
3606
3778
|
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/KubernetesNetworkConfigRequest AWS API Documentation
|
3607
3779
|
#
|
3608
3780
|
class KubernetesNetworkConfigRequest < Struct.new(
|
3609
3781
|
:service_ipv_4_cidr,
|
3610
|
-
:ip_family
|
3782
|
+
:ip_family,
|
3783
|
+
:elastic_load_balancing)
|
3611
3784
|
SENSITIVE = []
|
3612
3785
|
include Aws::Structure
|
3613
3786
|
end
|
@@ -3644,12 +3817,19 @@ module Aws::EKS
|
|
3644
3817
|
# created the cluster.
|
3645
3818
|
# @return [String]
|
3646
3819
|
#
|
3820
|
+
# @!attribute [rw] elastic_load_balancing
|
3821
|
+
# Indicates the current configuration of the load balancing capability
|
3822
|
+
# on your EKS Auto Mode cluster. For example, if the capability is
|
3823
|
+
# enabled or disabled.
|
3824
|
+
# @return [Types::ElasticLoadBalancing]
|
3825
|
+
#
|
3647
3826
|
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/KubernetesNetworkConfigResponse AWS API Documentation
|
3648
3827
|
#
|
3649
3828
|
class KubernetesNetworkConfigResponse < Struct.new(
|
3650
3829
|
:service_ipv_4_cidr,
|
3651
3830
|
:service_ipv_6_cidr,
|
3652
|
-
:ip_family
|
3831
|
+
:ip_family,
|
3832
|
+
:elastic_load_balancing)
|
3653
3833
|
SENSITIVE = []
|
3654
3834
|
include Aws::Structure
|
3655
3835
|
end
|
@@ -4625,6 +4805,21 @@ module Aws::EKS
|
|
4625
4805
|
include Aws::Structure
|
4626
4806
|
end
|
4627
4807
|
|
4808
|
+
# The node auto repair configuration for the node group.
|
4809
|
+
#
|
4810
|
+
# @!attribute [rw] enabled
|
4811
|
+
# Specifies whether to enable node auto repair for the node group.
|
4812
|
+
# Node auto repair is disabled by default.
|
4813
|
+
# @return [Boolean]
|
4814
|
+
#
|
4815
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/NodeRepairConfig AWS API Documentation
|
4816
|
+
#
|
4817
|
+
class NodeRepairConfig < Struct.new(
|
4818
|
+
:enabled)
|
4819
|
+
SENSITIVE = []
|
4820
|
+
include Aws::Structure
|
4821
|
+
end
|
4822
|
+
|
4628
4823
|
# An object representing an Amazon EKS managed node group.
|
4629
4824
|
#
|
4630
4825
|
# @!attribute [rw] nodegroup_name
|
@@ -4748,6 +4943,10 @@ module Aws::EKS
|
|
4748
4943
|
# The node group update configuration.
|
4749
4944
|
# @return [Types::NodegroupUpdateConfig]
|
4750
4945
|
#
|
4946
|
+
# @!attribute [rw] node_repair_config
|
4947
|
+
# The node auto repair configuration for the node group.
|
4948
|
+
# @return [Types::NodeRepairConfig]
|
4949
|
+
#
|
4751
4950
|
# @!attribute [rw] launch_template
|
4752
4951
|
# If a launch template was used to create the node group, then this is
|
4753
4952
|
# the launch template that was used.
|
@@ -4784,6 +4983,7 @@ module Aws::EKS
|
|
4784
4983
|
:disk_size,
|
4785
4984
|
:health,
|
4786
4985
|
:update_config,
|
4986
|
+
:node_repair_config,
|
4787
4987
|
:launch_template,
|
4788
4988
|
:tags)
|
4789
4989
|
SENSITIVE = []
|
@@ -5464,6 +5664,225 @@ module Aws::EKS
|
|
5464
5664
|
include Aws::Structure
|
5465
5665
|
end
|
5466
5666
|
|
5667
|
+
# The configuration in the cluster for EKS Hybrid Nodes. You can't
|
5668
|
+
# change or update this configuration after the cluster is created.
|
5669
|
+
#
|
5670
|
+
# @!attribute [rw] remote_node_networks
|
5671
|
+
# The list of network CIDRs that can contain hybrid nodes.
|
5672
|
+
#
|
5673
|
+
# These CIDR blocks define the expected IP address range of the hybrid
|
5674
|
+
# nodes that join the cluster. These blocks are typically determined
|
5675
|
+
# by your network administrator.
|
5676
|
+
#
|
5677
|
+
# Enter one or more IPv4 CIDR blocks in decimal dotted-quad notation
|
5678
|
+
# (for example, ` 10.2.0.0/16`).
|
5679
|
+
#
|
5680
|
+
# It must satisfy the following requirements:
|
5681
|
+
#
|
5682
|
+
# * Each block must be within an `IPv4` RFC-1918 network range.
|
5683
|
+
# Minimum allowed size is /24, maximum allowed size is /8.
|
5684
|
+
# Publicly-routable addresses aren't supported.
|
5685
|
+
#
|
5686
|
+
# * Each block cannot overlap with the range of the VPC CIDR blocks
|
5687
|
+
# for your EKS resources, or the block of the Kubernetes service IP
|
5688
|
+
# range.
|
5689
|
+
#
|
5690
|
+
# * Each block must have a route to the VPC that uses the VPC CIDR
|
5691
|
+
# blocks, not public IPs or Elastic IPs. There are many options
|
5692
|
+
# including Transit Gateway, Site-to-Site VPN, or Direct Connect.
|
5693
|
+
#
|
5694
|
+
# * Each host must allow outbound connection to the EKS cluster
|
5695
|
+
# control plane on TCP ports `443` and `10250`.
|
5696
|
+
#
|
5697
|
+
# * Each host must allow inbound connection from the EKS cluster
|
5698
|
+
# control plane on TCP port 10250 for logs, exec and port-forward
|
5699
|
+
# operations.
|
5700
|
+
#
|
5701
|
+
# * Each host must allow TCP and UDP network connectivity to and from
|
5702
|
+
# other hosts that are running `CoreDNS` on UDP port `53` for
|
5703
|
+
# service and pod DNS names.
|
5704
|
+
# @return [Array<Types::RemoteNodeNetwork>]
|
5705
|
+
#
|
5706
|
+
# @!attribute [rw] remote_pod_networks
|
5707
|
+
# The list of network CIDRs that can contain pods that run Kubernetes
|
5708
|
+
# webhooks on hybrid nodes.
|
5709
|
+
#
|
5710
|
+
# These CIDR blocks are determined by configuring your Container
|
5711
|
+
# Network Interface (CNI) plugin. We recommend the Calico CNI or
|
5712
|
+
# Cilium CNI. Note that the Amazon VPC CNI plugin for Kubernetes
|
5713
|
+
# isn't available for on-premises and edge locations.
|
5714
|
+
#
|
5715
|
+
# Enter one or more IPv4 CIDR blocks in decimal dotted-quad notation
|
5716
|
+
# (for example, ` 10.2.0.0/16`).
|
5717
|
+
#
|
5718
|
+
# It must satisfy the following requirements:
|
5719
|
+
#
|
5720
|
+
# * Each block must be within an `IPv4` RFC-1918 network range.
|
5721
|
+
# Minimum allowed size is /24, maximum allowed size is /8.
|
5722
|
+
# Publicly-routable addresses aren't supported.
|
5723
|
+
#
|
5724
|
+
# * Each block cannot overlap with the range of the VPC CIDR blocks
|
5725
|
+
# for your EKS resources, or the block of the Kubernetes service IP
|
5726
|
+
# range.
|
5727
|
+
# @return [Array<Types::RemotePodNetwork>]
|
5728
|
+
#
|
5729
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/RemoteNetworkConfigRequest AWS API Documentation
|
5730
|
+
#
|
5731
|
+
class RemoteNetworkConfigRequest < Struct.new(
|
5732
|
+
:remote_node_networks,
|
5733
|
+
:remote_pod_networks)
|
5734
|
+
SENSITIVE = []
|
5735
|
+
include Aws::Structure
|
5736
|
+
end
|
5737
|
+
|
5738
|
+
# The configuration in the cluster for EKS Hybrid Nodes. You can't
|
5739
|
+
# change or update this configuration after the cluster is created.
|
5740
|
+
#
|
5741
|
+
# @!attribute [rw] remote_node_networks
|
5742
|
+
# The list of network CIDRs that can contain hybrid nodes.
|
5743
|
+
# @return [Array<Types::RemoteNodeNetwork>]
|
5744
|
+
#
|
5745
|
+
# @!attribute [rw] remote_pod_networks
|
5746
|
+
# The list of network CIDRs that can contain pods that run Kubernetes
|
5747
|
+
# webhooks on hybrid nodes.
|
5748
|
+
# @return [Array<Types::RemotePodNetwork>]
|
5749
|
+
#
|
5750
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/RemoteNetworkConfigResponse AWS API Documentation
|
5751
|
+
#
|
5752
|
+
class RemoteNetworkConfigResponse < Struct.new(
|
5753
|
+
:remote_node_networks,
|
5754
|
+
:remote_pod_networks)
|
5755
|
+
SENSITIVE = []
|
5756
|
+
include Aws::Structure
|
5757
|
+
end
|
5758
|
+
|
5759
|
+
# A network CIDR that can contain hybrid nodes.
|
5760
|
+
#
|
5761
|
+
# These CIDR blocks define the expected IP address range of the hybrid
|
5762
|
+
# nodes that join the cluster. These blocks are typically determined by
|
5763
|
+
# your network administrator.
|
5764
|
+
#
|
5765
|
+
# Enter one or more IPv4 CIDR blocks in decimal dotted-quad notation
|
5766
|
+
# (for example, ` 10.2.0.0/16`).
|
5767
|
+
#
|
5768
|
+
# It must satisfy the following requirements:
|
5769
|
+
#
|
5770
|
+
# * Each block must be within an `IPv4` RFC-1918 network range. Minimum
|
5771
|
+
# allowed size is /24, maximum allowed size is /8. Publicly-routable
|
5772
|
+
# addresses aren't supported.
|
5773
|
+
#
|
5774
|
+
# * Each block cannot overlap with the range of the VPC CIDR blocks for
|
5775
|
+
# your EKS resources, or the block of the Kubernetes service IP range.
|
5776
|
+
#
|
5777
|
+
# * Each block must have a route to the VPC that uses the VPC CIDR
|
5778
|
+
# blocks, not public IPs or Elastic IPs. There are many options
|
5779
|
+
# including Transit Gateway, Site-to-Site VPN, or Direct Connect.
|
5780
|
+
#
|
5781
|
+
# * Each host must allow outbound connection to the EKS cluster control
|
5782
|
+
# plane on TCP ports `443` and `10250`.
|
5783
|
+
#
|
5784
|
+
# * Each host must allow inbound connection from the EKS cluster control
|
5785
|
+
# plane on TCP port 10250 for logs, exec and port-forward operations.
|
5786
|
+
#
|
5787
|
+
# * Each host must allow TCP and UDP network connectivity to and from
|
5788
|
+
# other hosts that are running `CoreDNS` on UDP port `53` for service
|
5789
|
+
# and pod DNS names.
|
5790
|
+
#
|
5791
|
+
# @!attribute [rw] cidrs
|
5792
|
+
# A network CIDR that can contain hybrid nodes.
|
5793
|
+
#
|
5794
|
+
# These CIDR blocks define the expected IP address range of the hybrid
|
5795
|
+
# nodes that join the cluster. These blocks are typically determined
|
5796
|
+
# by your network administrator.
|
5797
|
+
#
|
5798
|
+
# Enter one or more IPv4 CIDR blocks in decimal dotted-quad notation
|
5799
|
+
# (for example, ` 10.2.0.0/16`).
|
5800
|
+
#
|
5801
|
+
# It must satisfy the following requirements:
|
5802
|
+
#
|
5803
|
+
# * Each block must be within an `IPv4` RFC-1918 network range.
|
5804
|
+
# Minimum allowed size is /24, maximum allowed size is /8.
|
5805
|
+
# Publicly-routable addresses aren't supported.
|
5806
|
+
#
|
5807
|
+
# * Each block cannot overlap with the range of the VPC CIDR blocks
|
5808
|
+
# for your EKS resources, or the block of the Kubernetes service IP
|
5809
|
+
# range.
|
5810
|
+
#
|
5811
|
+
# * Each block must have a route to the VPC that uses the VPC CIDR
|
5812
|
+
# blocks, not public IPs or Elastic IPs. There are many options
|
5813
|
+
# including Transit Gateway, Site-to-Site VPN, or Direct Connect.
|
5814
|
+
#
|
5815
|
+
# * Each host must allow outbound connection to the EKS cluster
|
5816
|
+
# control plane on TCP ports `443` and `10250`.
|
5817
|
+
#
|
5818
|
+
# * Each host must allow inbound connection from the EKS cluster
|
5819
|
+
# control plane on TCP port 10250 for logs, exec and port-forward
|
5820
|
+
# operations.
|
5821
|
+
#
|
5822
|
+
# * Each host must allow TCP and UDP network connectivity to and from
|
5823
|
+
# other hosts that are running `CoreDNS` on UDP port `53` for
|
5824
|
+
# service and pod DNS names.
|
5825
|
+
# @return [Array<String>]
|
5826
|
+
#
|
5827
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/RemoteNodeNetwork AWS API Documentation
|
5828
|
+
#
|
5829
|
+
class RemoteNodeNetwork < Struct.new(
|
5830
|
+
:cidrs)
|
5831
|
+
SENSITIVE = []
|
5832
|
+
include Aws::Structure
|
5833
|
+
end
|
5834
|
+
|
5835
|
+
# A network CIDR that can contain pods that run Kubernetes webhooks on
|
5836
|
+
# hybrid nodes.
|
5837
|
+
#
|
5838
|
+
# These CIDR blocks are determined by configuring your Container Network
|
5839
|
+
# Interface (CNI) plugin. We recommend the Calico CNI or Cilium CNI.
|
5840
|
+
# Note that the Amazon VPC CNI plugin for Kubernetes isn't available
|
5841
|
+
# for on-premises and edge locations.
|
5842
|
+
#
|
5843
|
+
# Enter one or more IPv4 CIDR blocks in decimal dotted-quad notation
|
5844
|
+
# (for example, ` 10.2.0.0/16`).
|
5845
|
+
#
|
5846
|
+
# It must satisfy the following requirements:
|
5847
|
+
#
|
5848
|
+
# * Each block must be within an `IPv4` RFC-1918 network range. Minimum
|
5849
|
+
# allowed size is /24, maximum allowed size is /8. Publicly-routable
|
5850
|
+
# addresses aren't supported.
|
5851
|
+
#
|
5852
|
+
# * Each block cannot overlap with the range of the VPC CIDR blocks for
|
5853
|
+
# your EKS resources, or the block of the Kubernetes service IP range.
|
5854
|
+
#
|
5855
|
+
# @!attribute [rw] cidrs
|
5856
|
+
# A network CIDR that can contain pods that run Kubernetes webhooks on
|
5857
|
+
# hybrid nodes.
|
5858
|
+
#
|
5859
|
+
# These CIDR blocks are determined by configuring your Container
|
5860
|
+
# Network Interface (CNI) plugin. We recommend the Calico CNI or
|
5861
|
+
# Cilium CNI. Note that the Amazon VPC CNI plugin for Kubernetes
|
5862
|
+
# isn't available for on-premises and edge locations.
|
5863
|
+
#
|
5864
|
+
# Enter one or more IPv4 CIDR blocks in decimal dotted-quad notation
|
5865
|
+
# (for example, ` 10.2.0.0/16`).
|
5866
|
+
#
|
5867
|
+
# It must satisfy the following requirements:
|
5868
|
+
#
|
5869
|
+
# * Each block must be within an `IPv4` RFC-1918 network range.
|
5870
|
+
# Minimum allowed size is /24, maximum allowed size is /8.
|
5871
|
+
# Publicly-routable addresses aren't supported.
|
5872
|
+
#
|
5873
|
+
# * Each block cannot overlap with the range of the VPC CIDR blocks
|
5874
|
+
# for your EKS resources, or the block of the Kubernetes service IP
|
5875
|
+
# range.
|
5876
|
+
# @return [Array<String>]
|
5877
|
+
#
|
5878
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/RemotePodNetwork AWS API Documentation
|
5879
|
+
#
|
5880
|
+
class RemotePodNetwork < Struct.new(
|
5881
|
+
:cidrs)
|
5882
|
+
SENSITIVE = []
|
5883
|
+
include Aws::Structure
|
5884
|
+
end
|
5885
|
+
|
5467
5886
|
# The specified resource is in use.
|
5468
5887
|
#
|
5469
5888
|
# @!attribute [rw] cluster_name
|
@@ -5628,6 +6047,41 @@ module Aws::EKS
|
|
5628
6047
|
include Aws::Structure
|
5629
6048
|
end
|
5630
6049
|
|
6050
|
+
# Request to update the configuration of the storage capability of your
|
6051
|
+
# EKS Auto Mode cluster. For example, enable the capability. For more
|
6052
|
+
# information, see EKS Auto Mode block storage capability in the EKS
|
6053
|
+
# User Guide.
|
6054
|
+
#
|
6055
|
+
# @!attribute [rw] block_storage
|
6056
|
+
# Request to configure EBS Block Storage settings for your EKS Auto
|
6057
|
+
# Mode cluster.
|
6058
|
+
# @return [Types::BlockStorage]
|
6059
|
+
#
|
6060
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/StorageConfigRequest AWS API Documentation
|
6061
|
+
#
|
6062
|
+
class StorageConfigRequest < Struct.new(
|
6063
|
+
:block_storage)
|
6064
|
+
SENSITIVE = []
|
6065
|
+
include Aws::Structure
|
6066
|
+
end
|
6067
|
+
|
6068
|
+
# Indicates the status of the request to update the block storage
|
6069
|
+
# capability of your EKS Auto Mode cluster.
|
6070
|
+
#
|
6071
|
+
# @!attribute [rw] block_storage
|
6072
|
+
# Indicates the current configuration of the block storage capability
|
6073
|
+
# on your EKS Auto Mode cluster. For example, if the capability is
|
6074
|
+
# enabled or disabled.
|
6075
|
+
# @return [Types::BlockStorage]
|
6076
|
+
#
|
6077
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/StorageConfigResponse AWS API Documentation
|
6078
|
+
#
|
6079
|
+
class StorageConfigResponse < Struct.new(
|
6080
|
+
:block_storage)
|
6081
|
+
SENSITIVE = []
|
6082
|
+
include Aws::Structure
|
6083
|
+
end
|
6084
|
+
|
5631
6085
|
# @!attribute [rw] resource_arn
|
5632
6086
|
# The Amazon Resource Name (ARN) of the resource to add tags to.
|
5633
6087
|
# @return [String]
|
@@ -6062,6 +6516,20 @@ module Aws::EKS
|
|
6062
6516
|
# [1]: https://docs.aws.amazon.com/eks/latest/userguide/zone-shift.html
|
6063
6517
|
# @return [Types::ZonalShiftConfigRequest]
|
6064
6518
|
#
|
6519
|
+
# @!attribute [rw] compute_config
|
6520
|
+
# Update the configuration of the compute capability of your EKS Auto
|
6521
|
+
# Mode cluster. For example, enable the capability.
|
6522
|
+
# @return [Types::ComputeConfigRequest]
|
6523
|
+
#
|
6524
|
+
# @!attribute [rw] kubernetes_network_config
|
6525
|
+
# The Kubernetes network configuration for the cluster.
|
6526
|
+
# @return [Types::KubernetesNetworkConfigRequest]
|
6527
|
+
#
|
6528
|
+
# @!attribute [rw] storage_config
|
6529
|
+
# Update the configuration of the block storage capability of your EKS
|
6530
|
+
# Auto Mode cluster. For example, enable the capability.
|
6531
|
+
# @return [Types::StorageConfigRequest]
|
6532
|
+
#
|
6065
6533
|
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/UpdateClusterConfigRequest AWS API Documentation
|
6066
6534
|
#
|
6067
6535
|
class UpdateClusterConfigRequest < Struct.new(
|
@@ -6071,7 +6539,10 @@ module Aws::EKS
|
|
6071
6539
|
:client_request_token,
|
6072
6540
|
:access_config,
|
6073
6541
|
:upgrade_policy,
|
6074
|
-
:zonal_shift_config
|
6542
|
+
:zonal_shift_config,
|
6543
|
+
:compute_config,
|
6544
|
+
:kubernetes_network_config,
|
6545
|
+
:storage_config)
|
6075
6546
|
SENSITIVE = []
|
6076
6547
|
include Aws::Structure
|
6077
6548
|
end
|
@@ -6217,6 +6688,10 @@ module Aws::EKS
|
|
6217
6688
|
# The node group update configuration.
|
6218
6689
|
# @return [Types::NodegroupUpdateConfig]
|
6219
6690
|
#
|
6691
|
+
# @!attribute [rw] node_repair_config
|
6692
|
+
# The node auto repair configuration for the node group.
|
6693
|
+
# @return [Types::NodeRepairConfig]
|
6694
|
+
#
|
6220
6695
|
# @!attribute [rw] client_request_token
|
6221
6696
|
# A unique, case-sensitive identifier that you provide to ensure the
|
6222
6697
|
# idempotency of the request.
|
@@ -6234,6 +6709,7 @@ module Aws::EKS
|
|
6234
6709
|
:taints,
|
6235
6710
|
:scaling_config,
|
6236
6711
|
:update_config,
|
6712
|
+
:node_repair_config,
|
6237
6713
|
:client_request_token)
|
6238
6714
|
SENSITIVE = []
|
6239
6715
|
include Aws::Structure
|