The CDK Construct Library for AWS::EKS
Project description
Amazon EKS Construct Library
This is a developer preview (public beta) module. Releases might lack important features and might have future breaking changes.
This API is still under active development and subject to non-backward compatible changes or removal in any future version. Use of the API is not recommended in production environments. Experimental APIs are not subject to the Semantic Versioning model.
This construct library allows you to define and create Amazon Elastic Container Service for Kubernetes (EKS) clusters programmatically.
Example
The following example shows how to start an EKS cluster and how to add worker nodes to it:
const vpc = new ec2.Vpc(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.
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):
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(ec2.Peer.ipv4('1.2.3.4/32'), ec2.Port.tcp(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)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for aws_cdk.aws_eks-0.38.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | d1c6294e8e00533133c465ae0e347d125a46675494db37bfd07f343ad61da8d9 |
|
MD5 | 10695d716dfcde0e9d34a15fa5b80cfe |
|
BLAKE2b-256 | 756d51440eea8d4d6624ec0f98bec60c854747faf53ea028295a23d833106a03 |