Welcome to the Amazon EKS SSP Quickstart
repository.
This repository contains the source code for the cdk-eks-blueprint
NPM module. cdk-eks-blueprint
is a CDK construct that makes it easy for customers to build and deploy a Shared Services Platform (SSP) on top of Amazon EKS.
For complete project documentation, please see our official project documentation site.
To view a library of examples for how you can leverage the cdk-eks-blueprint
, please see our SSP Patterns Repository.
A Shared Services Platform (SSP) is an internal development platform that abstracts the complexities of cloud infrastructure from developers, and allows them to deploy workloads with ease. As SSP is typically composed of multiple AWS or open source products and services, including services for running containers, CI/CD pipelines, capturing logs/metrics, and security enforcement. The SSP packages these tools into a cohesive whole and makes them available to development teams as a service. From an operational perspective, SSPs allow companies to consolidate tools and best practices for securing, scaling, monitoring, and operating containerized infrastructure into a central platform that can then be used by developers across an enterprise.
Customers can use this QuickStart to easily architect and deploy a multi-tenant SSP built on EKS. Specifically, customers can leverage the cdk-eks-blueprint
module to:
- Deploy Well-Architected EKS clusters across any number of accounts and regions.
- Manage cluster configuration, including addons that run in each cluster, from a single Git repository.
- Define teams, namespaces, and their associated access permissions for your clusters.
- Create Continuous Delivery (CD) pipelines that are responsible for deploying your infrastructure.
- Leverage GitOps-based workflows for onboarding and managing workloads for your teams.
To view a library of examples for how you can leverage the cdk-eks-blueprint
, please see our SSP Patterns Repository.
You can also find a sample implementation that resides in this repository in bin/main.ts
.
First, make sure you have the aws-cli
installed. To verify your installation, run the following:
aws --version
# output aws-cli/2.2.3 Python/3.9.5 Darwin/20.3.0 source/x86_64 prompt/off
Install CDK matching the current version of the SSP QuickStart (which can be found in package.json).
npm install -g [email protected]
Verify the installation.
cdk --version
# must output 1.113.0
Create a new CDK project. We use typescript
for this example.
cdk init app --language typescript
Bootstrap your environment.
cdk bootstrap aws://<AWS_ACCOUNT_ID>/<AWS_REGION>
Run the following command to install the cdk-eks-blueprint
dependency in your project.
npm i @shapirov/cdk-eks-blueprint
Replace the contents of bin/<your-main-file>.ts
(where your-main-file
by default is the name of the root project directory) with the following:
import * as cdk from '@aws-cdk/core';
import * as ssp from '@shapirov/cdk-eks-blueprint';
const app = new cdk.App();
// AddOns for the cluster.
const addOns: Array<ssp.ClusterAddOn> = [
new ssp.addons.ArgoCDAddOn,
new ssp.addons.CalicoAddOn,
new ssp.addons.MetricsServerAddOn,
new ssp.addons.ContainerInsightsAddOn,
new ssp.addons.AwsLoadBalancerControllerAddOn()
];
const account = '<YOUR_ACCOUNT_ID'
const region = 'us-east-2'
const props = { env: { account, region } }
new ssp.EksBlueprint(scope, { id: 'blueprint', addOns, teams }, props)
Run the following command to confirm there are no issues with your code
npm run build
If there are no errors you should see the following
> [email protected] build
> tsc
Deploy the stack using the following command
cdk deploy
This will provision the following:
- A new Well-Architected VPC with both Public and Private subnets.
- A new Well-Architected EKS cluster in the region and account you specify.
- ArgoCD into your cluster to support GitOps deployments.
- Calico into your cluster to support Network policies.
- Metrics Server into your cluster to support metrics collection.
- AWS and Kubernetes resources needed to forward logs and metrics to Container Insights.
- AWS and Kubernetes resources needed to support AWS Load Balancer Controller.
The ecosystem of tools that have developed around Kubernetes and the Cloud Native Computing Foundation (CNCF) provides cloud engineers with a wealth of choice when it comes to architecting their infrastructure. Determining the right mix of tools and services however, in addition to how they integrate, can be a challenge. As your Kubernetes estate grows, managing configuration for your clusters can also become a challenge.
AWS customers are building internal platforms to tame this complexity, automate the management of their Kubernetes environments, and make it easy for developers to onboard their workloads. However, these platforms require investment of time and engineering resources to build. The goal of this QuickStart is to provide customers with a tool chain that can help them deploy a Well-Architected platform on top of EKS with ease. The cdk-eks-blueprint
framework provides logical abstractions and prescriptive guidance for building a platform. Ultimately, we want to help EKS customers accelerate time to market for their own platform initiatives.
For architectural details, step-by-step instructions, and customization options, see our official documentation site.
To post feedback, submit feature ideas, or report bugs, use the Issues section of this GitHub repo.
To submit code for this Quick Start, see the AWS Quick Start Contributor's Kit.
This library is licensed under the Apache 2.0 License.