Class: AWSCDK::EKS::ClusterOptions
- Inherits:
-
CommonClusterOptions
- Object
- CommonClusterOptions
- AWSCDK::EKS::ClusterOptions
- Defined in:
- eks/cluster_options.rb
Overview
Options for EKS clusters.
Direct Known Subclasses
Instance Attribute Summary collapse
-
#alb_controller ⇒ AWSCDK::EKS::ALBControllerOptions?
readonly
Install the AWS Load Balancer Controller onto the cluster.
-
#authentication_mode ⇒ AWSCDK::EKS::AuthenticationMode?
readonly
The desired authentication mode for the cluster.
-
#awscli_layer ⇒ AWSCDK::Lambda::ILayerVersion?
readonly
An AWS Lambda layer that contains the
awsCLI. -
#cluster_handler_environment ⇒ Hash{String => String}?
readonly
Custom environment variables when interacting with the EKS endpoint to manage the cluster lifecycle.
-
#cluster_handler_security_group ⇒ AWSCDK::EC2::ISecurityGroup?
readonly
A security group to associate with the Cluster Handler's Lambdas.
-
#cluster_logging ⇒ Array<AWSCDK::EKS::ClusterLoggingTypes>?
readonly
The cluster log types which you want to enable.
-
#cluster_name ⇒ String?
readonly
Name for the cluster.
-
#core_dns_compute_type ⇒ AWSCDK::EKS::CoreDNSComputeType?
readonly
Controls the "eks.amazonaws.com/compute-type" annotation in the CoreDNS configuration on your cluster to determine which compute type to use for CoreDNS.
-
#deletion_protection ⇒ Boolean?
readonly
The current deletion protection setting for the cluster.
-
#endpoint_access ⇒ AWSCDK::EKS::EndpointAccess?
readonly
Configure access to the Kubernetes API server endpoint..
-
#ip_family ⇒ AWSCDK::EKS::IPFamily?
readonly
Specify which IP family is used to assign Kubernetes pod and service IP addresses.
-
#kubectl_environment ⇒ Hash{String => String}?
readonly
Environment variables for the kubectl execution.
-
#kubectl_layer ⇒ AWSCDK::Lambda::ILayerVersion
readonly
An AWS Lambda Layer which includes
kubectland Helm. -
#kubectl_memory ⇒ AWSCDK::Size?
readonly
Amount of memory to allocate to the provider's lambda function.
-
#masters_role ⇒ AWSCDK::IAM::IRole?
readonly
An IAM role that will be added to the
system:mastersKubernetes RBAC group. -
#on_event_layer ⇒ AWSCDK::Lambda::ILayerVersion?
readonly
An AWS Lambda Layer which includes the NPM dependency
proxy-agent. -
#output_cluster_name ⇒ Boolean?
readonly
Determines whether a CloudFormation output with the name of the cluster will be synthesized.
-
#output_config_command ⇒ Boolean?
readonly
Determines whether a CloudFormation output with the
aws eks update-kubeconfigcommand will be synthesized. -
#output_masters_role_arn ⇒ Boolean?
readonly
Determines whether a CloudFormation output with the ARN of the "masters" IAM role will be synthesized (if
mastersRoleis specified). -
#place_cluster_handler_in_vpc ⇒ Boolean?
readonly
If set to true, the cluster handler functions will be placed in the private subnets of the cluster vpc, subject to the
vpcSubnetsselection strategy. -
#prune ⇒ Boolean?
readonly
Indicates whether Kubernetes resources added through
addManifest()can be automatically pruned. -
#remote_node_networks ⇒ Array<AWSCDK::EKS::RemoteNodeNetwork>?
readonly
IPv4 CIDR blocks defining the expected address range of hybrid nodes that will join the cluster.
-
#remote_pod_networks ⇒ Array<AWSCDK::EKS::RemotePodNetwork>?
readonly
IPv4 CIDR blocks for Pods running Kubernetes webhooks on hybrid nodes.
-
#removal_policy ⇒ AWSCDK::RemovalPolicy?
readonly
The removal policy applied to all CloudFormation resources created by this construct when they are no longer managed by CloudFormation.
-
#role ⇒ AWSCDK::IAM::IRole?
readonly
Role that provides permissions for the Kubernetes control plane to make calls to AWS API operations on your behalf.
-
#secrets_encryption_key ⇒ AWSCDK::Interfaces::AWSKMS::IKeyRef?
readonly
KMS secret for envelope encryption for Kubernetes secrets.
-
#security_group ⇒ AWSCDK::EC2::ISecurityGroup?
readonly
Security Group to use for Control Plane ENIs.
-
#service_ipv4_cidr ⇒ String?
readonly
The CIDR block to assign Kubernetes service IP addresses from.
-
#version ⇒ AWSCDK::EKS::KubernetesVersion
readonly
The Kubernetes version to run in the cluster.
-
#vpc ⇒ AWSCDK::EC2::IVPC?
readonly
The VPC in which to create the Cluster.
-
#vpc_subnets ⇒ Array<AWSCDK::EC2::SubnetSelection>?
readonly
Where to place EKS Control Plane ENIs.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(version:, cluster_name: nil, output_cluster_name: nil, output_config_command: nil, role: nil, security_group: nil, vpc: nil, vpc_subnets: nil, kubectl_layer:, alb_controller: nil, authentication_mode: nil, awscli_layer: nil, cluster_handler_environment: nil, cluster_handler_security_group: nil, cluster_logging: nil, core_dns_compute_type: nil, deletion_protection: nil, endpoint_access: nil, ip_family: nil, kubectl_environment: nil, kubectl_memory: nil, masters_role: nil, on_event_layer: nil, output_masters_role_arn: nil, place_cluster_handler_in_vpc: nil, prune: nil, remote_node_networks: nil, remote_pod_networks: nil, removal_policy: nil, secrets_encryption_key: nil, service_ipv4_cidr: nil) ⇒ ClusterOptions
constructor
A new instance of ClusterOptions.
- #to_jsii ⇒ Object
Constructor Details
#initialize(version:, cluster_name: nil, output_cluster_name: nil, output_config_command: nil, role: nil, security_group: nil, vpc: nil, vpc_subnets: nil, kubectl_layer:, alb_controller: nil, authentication_mode: nil, awscli_layer: nil, cluster_handler_environment: nil, cluster_handler_security_group: nil, cluster_logging: nil, core_dns_compute_type: nil, deletion_protection: nil, endpoint_access: nil, ip_family: nil, kubectl_environment: nil, kubectl_memory: nil, masters_role: nil, on_event_layer: nil, output_masters_role_arn: nil, place_cluster_handler_in_vpc: nil, prune: nil, remote_node_networks: nil, remote_pod_networks: nil, removal_policy: nil, secrets_encryption_key: nil, service_ipv4_cidr: nil) ⇒ ClusterOptions
Returns a new instance of ClusterOptions.
38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 |
# File 'eks/cluster_options.rb', line 38 def initialize(version:, cluster_name: nil, output_cluster_name: nil, output_config_command: nil, role: nil, security_group: nil, vpc: nil, vpc_subnets: nil, kubectl_layer:, alb_controller: nil, authentication_mode: nil, awscli_layer: nil, cluster_handler_environment: nil, cluster_handler_security_group: nil, cluster_logging: nil, core_dns_compute_type: nil, deletion_protection: nil, endpoint_access: nil, ip_family: nil, kubectl_environment: nil, kubectl_memory: nil, masters_role: nil, on_event_layer: nil, output_masters_role_arn: nil, place_cluster_handler_in_vpc: nil, prune: nil, remote_node_networks: nil, remote_pod_networks: nil, removal_policy: nil, secrets_encryption_key: nil, service_ipv4_cidr: nil) @version = version Jsii::Type.check_type(@version, JSON.parse(Base64.strict_decode64("eyJmcW4iOiJhd3MtY2RrLWxpYi5hd3NfZWtzLkt1YmVybmV0ZXNWZXJzaW9uIn0=")), "version") @cluster_name = cluster_name Jsii::Type.check_type(@cluster_name, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "clusterName") unless @cluster_name.nil? @output_cluster_name = output_cluster_name Jsii::Type.check_type(@output_cluster_name, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJib29sZWFuIn0=")), "outputClusterName") unless @output_cluster_name.nil? @output_config_command = output_config_command Jsii::Type.check_type(@output_config_command, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJib29sZWFuIn0=")), "outputConfigCommand") unless @output_config_command.nil? @role = role Jsii::Type.check_type(@role, JSON.parse(Base64.strict_decode64("eyJmcW4iOiJhd3MtY2RrLWxpYi5hd3NfaWFtLklSb2xlIn0=")), "role") unless @role.nil? @security_group = security_group Jsii::Type.check_type(@security_group, JSON.parse(Base64.strict_decode64("eyJmcW4iOiJhd3MtY2RrLWxpYi5hd3NfZWMyLklTZWN1cml0eUdyb3VwIn0=")), "securityGroup") unless @security_group.nil? @vpc = vpc Jsii::Type.check_type(@vpc, JSON.parse(Base64.strict_decode64("eyJmcW4iOiJhd3MtY2RrLWxpYi5hd3NfZWMyLklWcGMifQ==")), "vpc") unless @vpc.nil? @vpc_subnets = vpc_subnets.is_a?(Array) ? vpc_subnets.map { |jsii_v0| jsii_v0.is_a?(Hash) ? ::AWSCDK::EC2::SubnetSelection.new(**jsii_v0.transform_keys(&:to_sym)) : jsii_v0 } : vpc_subnets Jsii::Type.check_type(@vpc_subnets, JSON.parse(Base64.strict_decode64("eyJjb2xsZWN0aW9uIjp7ImVsZW1lbnR0eXBlIjp7ImZxbiI6ImF3cy1jZGstbGliLmF3c19lYzIuU3VibmV0U2VsZWN0aW9uIn0sImtpbmQiOiJhcnJheSJ9fQ==")), "vpcSubnets") unless @vpc_subnets.nil? @kubectl_layer = kubectl_layer Jsii::Type.check_type(@kubectl_layer, JSON.parse(Base64.strict_decode64("eyJmcW4iOiJhd3MtY2RrLWxpYi5hd3NfbGFtYmRhLklMYXllclZlcnNpb24ifQ==")), "kubectlLayer") @alb_controller = alb_controller.is_a?(Hash) ? ::AWSCDK::EKS::ALBControllerOptions.new(**alb_controller.transform_keys(&:to_sym)) : alb_controller Jsii::Type.check_type(@alb_controller, JSON.parse(Base64.strict_decode64("eyJmcW4iOiJhd3MtY2RrLWxpYi5hd3NfZWtzLkFsYkNvbnRyb2xsZXJPcHRpb25zIn0=")), "albController") unless @alb_controller.nil? @authentication_mode = authentication_mode Jsii::Type.check_type(@authentication_mode, JSON.parse(Base64.strict_decode64("eyJmcW4iOiJhd3MtY2RrLWxpYi5hd3NfZWtzLkF1dGhlbnRpY2F0aW9uTW9kZSJ9")), "authenticationMode") unless @authentication_mode.nil? @awscli_layer = awscli_layer Jsii::Type.check_type(@awscli_layer, JSON.parse(Base64.strict_decode64("eyJmcW4iOiJhd3MtY2RrLWxpYi5hd3NfbGFtYmRhLklMYXllclZlcnNpb24ifQ==")), "awscliLayer") unless @awscli_layer.nil? @cluster_handler_environment = cluster_handler_environment Jsii::Type.check_type(@cluster_handler_environment, JSON.parse(Base64.strict_decode64("eyJjb2xsZWN0aW9uIjp7ImVsZW1lbnR0eXBlIjp7InByaW1pdGl2ZSI6InN0cmluZyJ9LCJraW5kIjoibWFwIn19")), "clusterHandlerEnvironment") unless @cluster_handler_environment.nil? @cluster_handler_security_group = cluster_handler_security_group Jsii::Type.check_type(@cluster_handler_security_group, JSON.parse(Base64.strict_decode64("eyJmcW4iOiJhd3MtY2RrLWxpYi5hd3NfZWMyLklTZWN1cml0eUdyb3VwIn0=")), "clusterHandlerSecurityGroup") unless @cluster_handler_security_group.nil? @cluster_logging = cluster_logging Jsii::Type.check_type(@cluster_logging, JSON.parse(Base64.strict_decode64("eyJjb2xsZWN0aW9uIjp7ImVsZW1lbnR0eXBlIjp7ImZxbiI6ImF3cy1jZGstbGliLmF3c19la3MuQ2x1c3RlckxvZ2dpbmdUeXBlcyJ9LCJraW5kIjoiYXJyYXkifX0=")), "clusterLogging") unless @cluster_logging.nil? @core_dns_compute_type = core_dns_compute_type Jsii::Type.check_type(@core_dns_compute_type, JSON.parse(Base64.strict_decode64("eyJmcW4iOiJhd3MtY2RrLWxpYi5hd3NfZWtzLkNvcmVEbnNDb21wdXRlVHlwZSJ9")), "coreDnsComputeType") unless @core_dns_compute_type.nil? @deletion_protection = deletion_protection Jsii::Type.check_type(@deletion_protection, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJib29sZWFuIn0=")), "deletionProtection") unless @deletion_protection.nil? @endpoint_access = endpoint_access Jsii::Type.check_type(@endpoint_access, JSON.parse(Base64.strict_decode64("eyJmcW4iOiJhd3MtY2RrLWxpYi5hd3NfZWtzLkVuZHBvaW50QWNjZXNzIn0=")), "endpointAccess") unless @endpoint_access.nil? @ip_family = ip_family Jsii::Type.check_type(@ip_family, JSON.parse(Base64.strict_decode64("eyJmcW4iOiJhd3MtY2RrLWxpYi5hd3NfZWtzLklwRmFtaWx5In0=")), "ipFamily") unless @ip_family.nil? @kubectl_environment = kubectl_environment Jsii::Type.check_type(@kubectl_environment, JSON.parse(Base64.strict_decode64("eyJjb2xsZWN0aW9uIjp7ImVsZW1lbnR0eXBlIjp7InByaW1pdGl2ZSI6InN0cmluZyJ9LCJraW5kIjoibWFwIn19")), "kubectlEnvironment") unless @kubectl_environment.nil? @kubectl_memory = kubectl_memory Jsii::Type.check_type(@kubectl_memory, JSON.parse(Base64.strict_decode64("eyJmcW4iOiJhd3MtY2RrLWxpYi5TaXplIn0=")), "kubectlMemory") unless @kubectl_memory.nil? @masters_role = masters_role Jsii::Type.check_type(@masters_role, JSON.parse(Base64.strict_decode64("eyJmcW4iOiJhd3MtY2RrLWxpYi5hd3NfaWFtLklSb2xlIn0=")), "mastersRole") unless @masters_role.nil? @on_event_layer = on_event_layer Jsii::Type.check_type(@on_event_layer, JSON.parse(Base64.strict_decode64("eyJmcW4iOiJhd3MtY2RrLWxpYi5hd3NfbGFtYmRhLklMYXllclZlcnNpb24ifQ==")), "onEventLayer") unless @on_event_layer.nil? @output_masters_role_arn = output_masters_role_arn Jsii::Type.check_type(@output_masters_role_arn, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJib29sZWFuIn0=")), "outputMastersRoleArn") unless @output_masters_role_arn.nil? @place_cluster_handler_in_vpc = place_cluster_handler_in_vpc Jsii::Type.check_type(@place_cluster_handler_in_vpc, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJib29sZWFuIn0=")), "placeClusterHandlerInVpc") unless @place_cluster_handler_in_vpc.nil? @prune = prune Jsii::Type.check_type(@prune, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJib29sZWFuIn0=")), "prune") unless @prune.nil? @remote_node_networks = remote_node_networks.is_a?(Array) ? remote_node_networks.map { |jsii_v0| jsii_v0.is_a?(Hash) ? ::AWSCDK::EKS::RemoteNodeNetwork.new(**jsii_v0.transform_keys(&:to_sym)) : jsii_v0 } : remote_node_networks Jsii::Type.check_type(@remote_node_networks, JSON.parse(Base64.strict_decode64("eyJjb2xsZWN0aW9uIjp7ImVsZW1lbnR0eXBlIjp7ImZxbiI6ImF3cy1jZGstbGliLmF3c19la3MuUmVtb3RlTm9kZU5ldHdvcmsifSwia2luZCI6ImFycmF5In19")), "remoteNodeNetworks") unless @remote_node_networks.nil? @remote_pod_networks = remote_pod_networks.is_a?(Array) ? remote_pod_networks.map { |jsii_v0| jsii_v0.is_a?(Hash) ? ::AWSCDK::EKS::RemotePodNetwork.new(**jsii_v0.transform_keys(&:to_sym)) : jsii_v0 } : remote_pod_networks Jsii::Type.check_type(@remote_pod_networks, JSON.parse(Base64.strict_decode64("eyJjb2xsZWN0aW9uIjp7ImVsZW1lbnR0eXBlIjp7ImZxbiI6ImF3cy1jZGstbGliLmF3c19la3MuUmVtb3RlUG9kTmV0d29yayJ9LCJraW5kIjoiYXJyYXkifX0=")), "remotePodNetworks") unless @remote_pod_networks.nil? @removal_policy = removal_policy Jsii::Type.check_type(@removal_policy, JSON.parse(Base64.strict_decode64("eyJmcW4iOiJhd3MtY2RrLWxpYi5SZW1vdmFsUG9saWN5In0=")), "removalPolicy") unless @removal_policy.nil? @secrets_encryption_key = secrets_encryption_key Jsii::Type.check_type(@secrets_encryption_key, JSON.parse(Base64.strict_decode64("eyJmcW4iOiJhd3MtY2RrLWxpYi5pbnRlcmZhY2VzLmF3c19rbXMuSUtleVJlZiJ9")), "secretsEncryptionKey") unless @secrets_encryption_key.nil? @service_ipv4_cidr = service_ipv4_cidr Jsii::Type.check_type(@service_ipv4_cidr, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "serviceIpv4Cidr") unless @service_ipv4_cidr.nil? end |
Instance Attribute Details
#alb_controller ⇒ AWSCDK::EKS::ALBControllerOptions? (readonly)
Default: - The controller is not installed.
Install the AWS Load Balancer Controller onto the cluster.
173 174 175 |
# File 'eks/cluster_options.rb', line 173 def alb_controller @alb_controller end |
#authentication_mode ⇒ AWSCDK::EKS::AuthenticationMode? (readonly)
Default: AuthenticationMode.CONFIG_MAP
The desired authentication mode for the cluster.
178 179 180 |
# File 'eks/cluster_options.rb', line 178 def authentication_mode @authentication_mode end |
#awscli_layer ⇒ AWSCDK::Lambda::ILayerVersion? (readonly)
Default: - a default layer with the AWS CLI 1.x
An AWS Lambda layer that contains the aws CLI.
The handler expects the layer to include the following executables:
/opt/awscli/aws
189 190 191 |
# File 'eks/cluster_options.rb', line 189 def awscli_layer @awscli_layer end |
#cluster_handler_environment ⇒ Hash{String => String}? (readonly)
Default: - No environment variables.
Custom environment variables when interacting with the EKS endpoint to manage the cluster lifecycle.
194 195 196 |
# File 'eks/cluster_options.rb', line 194 def cluster_handler_environment @cluster_handler_environment end |
#cluster_handler_security_group ⇒ AWSCDK::EC2::ISecurityGroup? (readonly)
Default: - No security group.
A security group to associate with the Cluster Handler's Lambdas.
The Cluster Handler's Lambdas are responsible for calling AWS's EKS API.
Requires place_cluster_handler_in_vpc to be set to true.
203 204 205 |
# File 'eks/cluster_options.rb', line 203 def cluster_handler_security_group @cluster_handler_security_group end |
#cluster_logging ⇒ Array<AWSCDK::EKS::ClusterLoggingTypes>? (readonly)
Default: - none
The cluster log types which you want to enable.
208 209 210 |
# File 'eks/cluster_options.rb', line 208 def cluster_logging @cluster_logging end |
#cluster_name ⇒ String? (readonly)
Default: - Automatically generated name
Name for the cluster.
111 112 113 |
# File 'eks/cluster_options.rb', line 111 def cluster_name @cluster_name end |
#core_dns_compute_type ⇒ AWSCDK::EKS::CoreDNSComputeType? (readonly)
Default: CoreDnsComputeType.EC2 (for FargateCluster the default is FARGATE)
Controls the "eks.amazonaws.com/compute-type" annotation in the CoreDNS configuration on your cluster to determine which compute type to use for CoreDNS.
213 214 215 |
# File 'eks/cluster_options.rb', line 213 def core_dns_compute_type @core_dns_compute_type end |
#deletion_protection ⇒ Boolean? (readonly)
Default: - deletion protection is disabled
The current deletion protection setting for the cluster.
When true, deletion protection is enabled and the cluster cannot be deleted until protection is disabled. When false, the cluster can be deleted normally. This setting only applies to clusters in an active state.
222 223 224 |
# File 'eks/cluster_options.rb', line 222 def deletion_protection @deletion_protection end |
#endpoint_access ⇒ AWSCDK::EKS::EndpointAccess? (readonly)
Default: EndpointAccess.PUBLIC_AND_PRIVATE
Configure access to the Kubernetes API server endpoint..
228 229 230 |
# File 'eks/cluster_options.rb', line 228 def endpoint_access @endpoint_access end |
#ip_family ⇒ AWSCDK::EKS::IPFamily? (readonly)
Default: - IpFamily.IP_V4
Specify which IP family is used to assign Kubernetes pod and service IP addresses.
234 235 236 |
# File 'eks/cluster_options.rb', line 234 def ip_family @ip_family end |
#kubectl_environment ⇒ Hash{String => String}? (readonly)
Default: - No environment variables.
Environment variables for the kubectl execution.
Only relevant for kubectl enabled clusters.
241 242 243 |
# File 'eks/cluster_options.rb', line 241 def kubectl_environment @kubectl_environment end |
#kubectl_layer ⇒ AWSCDK::Lambda::ILayerVersion (readonly)
An AWS Lambda Layer which includes kubectl and Helm.
This layer is used by the kubectl handler to apply manifests and install
helm charts. You must pick an appropriate releases of one of the
@aws-cdk/layer-kubectl-vXX packages, that works with the version of
Kubernetes you have chosen.
The handler expects the layer to include the following executables:
/opt/helm/helm
/opt/kubectl/kubectl
167 168 169 |
# File 'eks/cluster_options.rb', line 167 def kubectl_layer @kubectl_layer end |
#kubectl_memory ⇒ AWSCDK::Size? (readonly)
Default: Size.gibibytes(1)
Amount of memory to allocate to the provider's lambda function.
246 247 248 |
# File 'eks/cluster_options.rb', line 246 def kubectl_memory @kubectl_memory end |
#masters_role ⇒ AWSCDK::IAM::IRole? (readonly)
Default: - no masters role.
An IAM role that will be added to the system:masters Kubernetes RBAC group.
252 253 254 |
# File 'eks/cluster_options.rb', line 252 def masters_role @masters_role end |
#on_event_layer ⇒ AWSCDK::Lambda::ILayerVersion? (readonly)
Default: - a layer bundled with this module.
An AWS Lambda Layer which includes the NPM dependency proxy-agent.
This layer is used by the onEvent handler to route AWS SDK requests through a proxy.
By default, the provider will use the layer included in the "aws-lambda-layer-node-proxy-agent" SAR application which is available in all commercial regions.
To deploy the layer locally define it in your app as follows:
layer = AWSCDK::Lambda::LayerVersion.new(self, "proxy-agent-layer", {
code: AWSCDK::Lambda::Code.from_asset("#{__dirname}/layer.zip"),
compatible_runtimes: [AWSCDK::Lambda::Runtime.NODEJS_LATEST],
})
273 274 275 |
# File 'eks/cluster_options.rb', line 273 def on_event_layer @on_event_layer end |
#output_cluster_name ⇒ Boolean? (readonly)
Default: false
Determines whether a CloudFormation output with the name of the cluster will be synthesized.
116 117 118 |
# File 'eks/cluster_options.rb', line 116 def output_cluster_name @output_cluster_name end |
#output_config_command ⇒ Boolean? (readonly)
Default: true
Determines whether a CloudFormation output with the aws eks update-kubeconfig command will be synthesized.
This command will include the cluster name and the ARN of the masters IAM role.
Note: If mastersRole is not specified, this property will be ignored and no config command will be emitted.
127 128 129 |
# File 'eks/cluster_options.rb', line 127 def output_config_command @output_config_command end |
#output_masters_role_arn ⇒ Boolean? (readonly)
Default: false
Determines whether a CloudFormation output with the ARN of the "masters" IAM role will be synthesized (if mastersRole is specified).
278 279 280 |
# File 'eks/cluster_options.rb', line 278 def output_masters_role_arn @output_masters_role_arn end |
#place_cluster_handler_in_vpc ⇒ Boolean? (readonly)
Default: false
If set to true, the cluster handler functions will be placed in the private subnets of the cluster vpc, subject to the vpcSubnets selection strategy.
283 284 285 |
# File 'eks/cluster_options.rb', line 283 def place_cluster_handler_in_vpc @place_cluster_handler_in_vpc end |
#prune ⇒ Boolean? (readonly)
Default: true
Indicates whether Kubernetes resources added through addManifest() can be automatically pruned.
When this is enabled (default), prune labels will be
allocated and injected to each resource. These labels will then be used
when issuing the kubectl apply operation with the --prune switch.
292 293 294 |
# File 'eks/cluster_options.rb', line 292 def prune @prune end |
#remote_node_networks ⇒ Array<AWSCDK::EKS::RemoteNodeNetwork>? (readonly)
Default: - none
IPv4 CIDR blocks defining the expected address range of hybrid nodes that will join the cluster.
297 298 299 |
# File 'eks/cluster_options.rb', line 297 def remote_node_networks @remote_node_networks end |
#remote_pod_networks ⇒ Array<AWSCDK::EKS::RemotePodNetwork>? (readonly)
Default: - none
IPv4 CIDR blocks for Pods running Kubernetes webhooks on hybrid nodes.
302 303 304 |
# File 'eks/cluster_options.rb', line 302 def remote_pod_networks @remote_pod_networks end |
#removal_policy ⇒ AWSCDK::RemovalPolicy? (readonly)
Default: - Resources will be deleted.
The removal policy applied to all CloudFormation resources created by this construct when they are no longer managed by CloudFormation.
This can happen in one of three situations:
- The resource is removed from the template, so CloudFormation stops managing it;
- A change to the resource is made that requires it to be replaced, so CloudFormation stops managing it;
- The stack is deleted, so CloudFormation stops managing all resources in it.
This affects the EKS cluster itself, associated IAM roles, node groups, security groups, VPC and any other CloudFormation resources managed by this construct.
316 317 318 |
# File 'eks/cluster_options.rb', line 316 def removal_policy @removal_policy end |
#role ⇒ AWSCDK::IAM::IRole? (readonly)
Default: - A role is automatically created for you
Role that provides permissions for the Kubernetes control plane to make calls to AWS API operations on your behalf.
132 133 134 |
# File 'eks/cluster_options.rb', line 132 def role @role end |
#secrets_encryption_key ⇒ AWSCDK::Interfaces::AWSKMS::IKeyRef? (readonly)
Default: - By default, Kubernetes stores all secret object data within etcd and all etcd volumes used by Amazon EKS are encrypted at the disk-level using AWS-Managed encryption keys.
KMS secret for envelope encryption for Kubernetes secrets.
321 322 323 |
# File 'eks/cluster_options.rb', line 321 def secrets_encryption_key @secrets_encryption_key end |
#security_group ⇒ AWSCDK::EC2::ISecurityGroup? (readonly)
Default: - A security group is automatically created
Security Group to use for Control Plane ENIs.
137 138 139 |
# File 'eks/cluster_options.rb', line 137 def security_group @security_group end |
#service_ipv4_cidr ⇒ String? (readonly)
Default: - Kubernetes assigns addresses from either the 10.100.0.0/16 or 172.20.0.0/16 CIDR blocks
The CIDR block to assign Kubernetes service IP addresses from.
327 328 329 |
# File 'eks/cluster_options.rb', line 327 def service_ipv4_cidr @service_ipv4_cidr end |
#version ⇒ AWSCDK::EKS::KubernetesVersion (readonly)
The Kubernetes version to run in the cluster.
106 107 108 |
# File 'eks/cluster_options.rb', line 106 def version @version end |
#vpc ⇒ AWSCDK::EC2::IVPC? (readonly)
Default: - a VPC with default configuration will be created and can be accessed through cluster.vpc.
The VPC in which to create the Cluster.
142 143 144 |
# File 'eks/cluster_options.rb', line 142 def vpc @vpc end |
#vpc_subnets ⇒ Array<AWSCDK::EC2::SubnetSelection>? (readonly)
Default: - All public and private subnets
Where to place EKS Control Plane ENIs.
For example, to only select private subnets, supply the following:
vpcSubnets: [{ subnetType: ec2.SubnetType.PRIVATE_WITH_EGRESS }]
151 152 153 |
# File 'eks/cluster_options.rb', line 151 def vpc_subnets @vpc_subnets end |
Class Method Details
.jsii_properties ⇒ Object
329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 |
# File 'eks/cluster_options.rb', line 329 def self.jsii_properties { :version => "version", :cluster_name => "clusterName", :output_cluster_name => "outputClusterName", :output_config_command => "outputConfigCommand", :role => "role", :security_group => "securityGroup", :vpc => "vpc", :vpc_subnets => "vpcSubnets", :kubectl_layer => "kubectlLayer", :alb_controller => "albController", :authentication_mode => "authenticationMode", :awscli_layer => "awscliLayer", :cluster_handler_environment => "clusterHandlerEnvironment", :cluster_handler_security_group => "clusterHandlerSecurityGroup", :cluster_logging => "clusterLogging", :core_dns_compute_type => "coreDnsComputeType", :deletion_protection => "deletionProtection", :endpoint_access => "endpointAccess", :ip_family => "ipFamily", :kubectl_environment => "kubectlEnvironment", :kubectl_memory => "kubectlMemory", :masters_role => "mastersRole", :on_event_layer => "onEventLayer", :output_masters_role_arn => "outputMastersRoleArn", :place_cluster_handler_in_vpc => "placeClusterHandlerInVpc", :prune => "prune", :remote_node_networks => "remoteNodeNetworks", :remote_pod_networks => "remotePodNetworks", :removal_policy => "removalPolicy", :secrets_encryption_key => "secretsEncryptionKey", :service_ipv4_cidr => "serviceIpv4Cidr", } end |
Instance Method Details
#to_jsii ⇒ Object
365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 |
# File 'eks/cluster_options.rb', line 365 def to_jsii result = {} result.merge!(super) result.merge!({ "version" => @version, "clusterName" => @cluster_name, "outputClusterName" => @output_cluster_name, "outputConfigCommand" => @output_config_command, "role" => @role, "securityGroup" => @security_group, "vpc" => @vpc, "vpcSubnets" => @vpc_subnets, "kubectlLayer" => @kubectl_layer, "albController" => @alb_controller, "authenticationMode" => @authentication_mode, "awscliLayer" => @awscli_layer, "clusterHandlerEnvironment" => @cluster_handler_environment, "clusterHandlerSecurityGroup" => @cluster_handler_security_group, "clusterLogging" => @cluster_logging, "coreDnsComputeType" => @core_dns_compute_type, "deletionProtection" => @deletion_protection, "endpointAccess" => @endpoint_access, "ipFamily" => @ip_family, "kubectlEnvironment" => @kubectl_environment, "kubectlMemory" => @kubectl_memory, "mastersRole" => @masters_role, "onEventLayer" => @on_event_layer, "outputMastersRoleArn" => @output_masters_role_arn, "placeClusterHandlerInVpc" => @place_cluster_handler_in_vpc, "prune" => @prune, "remoteNodeNetworks" => @remote_node_networks, "remotePodNetworks" => @remote_pod_networks, "removalPolicy" => @removal_policy, "secretsEncryptionKey" => @secrets_encryption_key, "serviceIpv4Cidr" => @service_ipv4_cidr, }) result.compact end |