AWS EKS (Elastic Kubernetes Service) is Amazon's managed Kubernetes service, making it easy to deploy, operate, and scale containerized applications and providing benefits such as automatic scaling of worker nodes, automatic upgrades and patching, integration with other AWS services, and access to the Kubernetes community and ecosystem.
Kubernetes is the most powerful container orchestrator, making it easy to deploy, scale, and manage containerized applications.
Kubernetes can be used to build and manage microservices-based applications, allowing for flexibility and scalability in a distributed architecture.
Kubernetes can be used to deploy and manage big data and machine learning workloads, providing scalability and flexibility for processing and analyzing large data sets.
Kubernetes can be used to manage and orchestrate IoT applications, providing robust management and scaling capabilities for distributed IoT devices and gateways.
This preset creates a cluster with a single node group of cost effective t3.medium instances.
This preset creates a cluster with a single node group of compute optimized c5.2xlarge instances.
EKS provides a "barebones" Kubernetes control plane, meaning that it only includes the essential components required to run a Kubernetes cluster. These components include the Kubernetes API server, etcd (a distributed key-value store for storing Kubernetes cluster data), the controller manager and the scheduler.
In order simplify deploying and operating a Kubernetes cluster, this bundle includes numerous optional addons to deliver a fully capable and feature rich cluster that's ready for production workloads. Some of these addons are listed below.
A cluster autoscaler is installed into every EKS cluster to automatically scale the number of nodes in the cluster based on the current resource usage. This providers numerous benefits such as cost efficiency, higher availability and better resource utilization.
Users can optionally install the "official" Kubernetes NGINX ingress controller (not to be confused with NGINX's own ingress controller based on the paid nGinx-plus) into their cluster, which allows workloads in your EKS cluster to be accessible from the internet.
If users associate one or more Route53 domains to their EKS cluster, this bundle will automatically install external-dns and cert-manager in the cluster, allowing the cluster to automatically create and manage DNS records and TLS certificates for internet accessible workloads.
Beginning in Kubernetes version 1.23, EKS no longer comes with the default EBS provisioner. In order to allow users to continue using the default gp2
storage class, this bundle includes the EBS CSI Driver, which replaces the deprecated EBS provisioner.
Optionally, users can also install the EFS CSI Driver which will allow the EKS cluster to attach EFS volumes to cluster workloads for persistant storage. EFS volumes offer some benefits over EBS volumes, such as allowing multiple pods to use the volume simultaneously (ReadWriteMany) and not being being locked to a single AWS availability zone, but these benefits come with higher storage costs and increased latency.
Fargate can be enabled to allow AWS to provide on-demand, right-sized compute capacity for running containers on EKS without managing node pools or clusters of EC2 instances.
For workloads that require high uptime, its recommended to keep some node pools populated even when enabling Fargate to ensure compute is always available during surges.
Fargate has many limitations.
Currently only namespace
selectors are implemented. If you need label
selectors please file an issue.
Worker nodes in the cluster are provisioned as managed node groups.
Cluster is designed according to AWS's EKS networking best practices including deploying nodes in private subnets and only deploying public load balancers into public subnets.
A cluster autoscaler is automatically installed to provide node autoscaling as workload demand increases.
Cluster is pre-configured for out-of-the box support of IAM Roles for Service Accounts (IRSA).
Worker nodes are provisioned into private subnets for security.
IRSA allows kubernetes pods to assume AWS IAM Roles, removing the need for static credentials to access AWS services.
An AWS KMS key is created and associated to the cluster to enable encryption of secrets at rest.
The Instance Metadata Service version 2 (IMDSv2) is required on all EKS node groups. IMDSv1, which was the cause of the 2019 CapitalOne data breach, is disabled on all node groups.
After you have deployed a Kubernetes cluster through Massdriver, you may want to interact with the cluster using the powerful kubectl command line tool.
You will first need to install kubectl
to interact with the kubernetes cluster. Installation instructions for Windows, Mac and Linux can be found here.
Note: While kubectl
generally has forwards and backwards compatibility of core capabilities, it is best if your kubectl
client version is matched with your kubernetes cluster version. This ensures the best stability and compability for your client.
The standard way to manage connection and authentication details for kubernetes clusters is through a configuration file called a kubeconfig
file.
The standard way to manage connection and authentication details for kubernetes clusters is through a configuration file called a kubeconfig
file. The kubernetes-cluster
artifact that is created when you make a kubernetes cluster in Massdriver contains the basic information needed to create a kubeconfig
file. Because of this, Massdriver makes it very easy for you to download a kubeconfig
file that will allow you to use kubectl
to query and administer your cluster.
To download a kubeconfig
file for your cluster, navigate to the project and target where the kubernetes cluster is deployed and move the mouse so it hovers over the artifact connection port. This will pop a windows that allows you to download the artifact in raw JSON, or as a kubeconfig
yaml. Select "Kube Config" from the drop down, and click the button. This will download the kubeconfig
for the kubernetes cluster to your local system.
Once the kubeconfig
file is downloaded, you can move it to your desired location. By default, kubectl
will look for a file named config
located in the $HOME/.kube
directory. If you would like this to be your default configuration, you can rename and move the file to $HOME/.kube/config
.
A single kubeconfig
file can hold multiple cluster configurations, and you can select your desired cluster through the use of contexts
. Alternatively, you can have multiple kubeconfig
files and select your desired file through the KUBECONFIG
environment variable or the --kubeconfig
flag in kubectl
.
Once you've configured your environment properly, you should be able to run kubectl
commands. Here are some commands to try:
# get a list of all pods in the current namespace
kubectl get pods
# get a list of all pods in the kube-system namespace
kubectl get pods --namespace kube-system
# get a list of all the namespaces
kubectl get namespaces
# view the logs of a running pod in the default namespace
kubectl logs <pod name> --namespace default
# describe the status of a deployment in the foo namespace
kubectl describe deployment <deployment name> --namespace foo
# get a list of all the resources the kubernetes cluster can manage
kubectl api-resources
If you would like to manage access your EKS cluster through AWS IAM principals, you can do so via the aws-auth
ConfigMap. This will allow the desired AWS IAM principals to view cluster status in the AWS console, as well as generate short-lived credentials for kubectl
access. Refer to the AWS documentation for more details.
Note: In order to connect to the EKS cluster to view or modify the aws-auth
ConfigMap, you'll need to download the kubeconfig
file and use kubectl
as discussed earlier.