Metadata-Version: 2.1
Name: aws-cdk.aws-eks
Version: 0.31.0
Summary: The CDK Construct Library for AWS::EKS
Home-page: https://github.com/awslabs/aws-cdk
Author: Amazon Web Services
License: UNKNOWN
Project-URL: Source, https://github.com/awslabs/aws-cdk.git
Description: ## AWS Elastic Container Service for Kubernetes (EKS) Construct Library
        
        This construct library allows you to define and create [Amazon Elastic Container Service for Kubernetes (EKS)](https://aws.amazon.com/eks/) clusters programmatically.
        
        ### Example
        
        The following example shows how to start an EKS cluster and how to
        add worker nodes to it:
        
        ```ts
            const vpc = new ec2.VpcNetwork(this, 'VPC');
        
            const cluster = new eks.Cluster(this, 'EKSCluster', {
              vpc
            });
        
            cluster.addCapacity('Nodes', {
              instanceType: new ec2.InstanceType('t2.medium'),
              desiredCapacity: 1,  // Raise this number to add more nodes
            });
        ```
        
        After deploying the previous CDK app you still need to configure `kubectl`
        and manually add the nodes to your cluster, as described [in the EKS user
        guide](https://docs.aws.amazon.com/eks/latest/userguide/launch-workers.html).
        
        ### SSH into your nodes
        
        If you want to be able to SSH into your worker nodes, you must already
        have an SSH key in the region you're connecting to and pass it, and you must
        be able to connect to the hosts (meaning they must have a public IP and you
        should be allowed to connect to them on port 22):
        
        ```ts
            const asg = cluster.addCapacity('Nodes', {
              instanceType: new ec2.InstanceType('t2.medium'),
              vpcSubnets: { subnetType: ec2.SubnetType.Public },
              keyName: 'my-key-name',
            });
        
            // Replace with desired IP
            asg.connections.allowFrom(new ec2.CidrIPv4('1.2.3.4/32'), new ec2.TcpPort(22));
        ```
        
        If you want to SSH into nodes in a private subnet, you should set up a
        bastion host in a public subnet. That setup is recommended, but is
        unfortunately beyond the scope of this documentation.
        
        ### Roadmap
        
        - [ ] Add ability to start tasks on clusters using CDK (similar to ECS's "`Service`" concept).
        - [ ] Describe how to set up AutoScaling (how to combine EC2 and Kubernetes scaling)
        
Platform: UNKNOWN
Requires-Python: >=3.6
Description-Content-Type: text/markdown
