-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updating operator guide w/ design decisions and runbook
- Loading branch information
1 parent
dc38b82
commit f5443ee
Showing
1 changed file
with
95 additions
and
82 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,119 +1,132 @@ | ||
# aws-eks-cluster | ||
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. | ||
## AWS EKS (Elastic Kubernetes Service) | ||
|
||
## Use Cases | ||
### Container orchestration | ||
Kubernetes is the most powerful container orchestrator, making it easy to deploy, scale, and manage containerized applications. | ||
### Microservices architecture | ||
Kubernetes can be used to build and manage microservices-based applications, allowing for flexibility and scalability in a distributed architecture. | ||
### Big Data and Machine Learning | ||
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. | ||
### Internet of Things (IoT) | ||
Kubernetes can be used to manage and orchestrate IoT applications, providing robust management and scaling capabilities for distributed IoT devices and gateways. | ||
AWS EKS is a managed Kubernetes service that makes it easy to run Kubernetes on AWS without needing to manage your own Kubernetes control plane. Kubernetes is an open-source system for automating the deployment, scaling, and management of containerized applications. | ||
|
||
## Configuration Presets | ||
### Development Cluster | ||
This preset creates a cluster with a single node group of cost effective t3.medium instances. | ||
### Production Cluster | ||
This preset creates a cluster with a single node group of compute optimized c5.2xlarge instances. | ||
### Design Decisions | ||
|
||
## Design | ||
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](https://kubernetes.io/docs/concepts/overview/components/#kube-apiserver), [etcd](https://kubernetes.io/docs/concepts/overview/components/#etcd) (a distributed key-value store for storing Kubernetes cluster data), the [controller manager](https://kubernetes.io/docs/concepts/overview/components/#kube-controller-manager) and the [scheduler](https://kubernetes.io/docs/concepts/overview/components/#kube-scheduler). | ||
1. **IAM Roles and Policies**: Distinct IAM roles for EKS cluster and node groups to ensure security and proper role-based access. | ||
2. **Logging and Monitoring**: EKS control plane logs are sent to CloudWatch for centralized logging and monitoring. | ||
3. **Add-ons**: Enabled multiple AWS EKS add-ons like EBS CSI, cluster autoscaler, and Prometheus observability. | ||
4. **Cert-Manager and External-DNS**: Enabled cert-manager for certificate management and External-DNS for automated DNS updates. | ||
5. **KMS Encryption**: Used AWS KMS for encrypting secrets within the EKS cluster. | ||
6. **Fargate Support**: Conditional role creation for Fargate profile if Fargate is enabled. | ||
|
||
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. | ||
### Runbook | ||
|
||
### Cluster Autoscaler | ||
A [cluster autoscaler](https://docs.aws.amazon.com/eks/latest/userguide/autoscaling.html#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. | ||
### NGINX Ingress Controller | ||
Users can optionally install the ["official" Kubernetes NGINX ingress controller](https://kubernetes.github.io/ingress-nginx/) (not to be confused with [NGINX's own ingress controller](https://docs.nginx.com/nginx-ingress-controller/) based on the paid nGinx-plus) into their cluster, which allows workloads in your EKS cluster to be accessible from the internet. | ||
### External-DNS and Cert-Manager | ||
If users associate one or more Route53 domains to their EKS cluster, this bundle will automatically install [external-dns](https://github.com/kubernetes-sigs/external-dns) and [cert-manager](https://cert-manager.io/docs/) in the cluster, allowing the cluster to automatically create and manage DNS records and TLS certificates for internet accessible workloads. | ||
### EBS CSI Driver | ||
[Beginning in Kubernetes version 1.23, EKS no longer comes with the default EBS provisioner](https://docs.aws.amazon.com/eks/latest/userguide/kubernetes-versions.html#kubernetes-1.23). In order to allow users to continue using the default `gp2` storage class, this bundle includes the [EBS CSI Driver](https://docs.aws.amazon.com/eks/latest/userguide/ebs-csi.html), which replaces the deprecated EBS provisioner. | ||
### EFS CSI Driver | ||
Optionally, users can also install the [EFS CSI Driver](https://docs.aws.amazon.com/eks/latest/userguide/efs-csi.html) 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)](https://kubernetes.io/docs/concepts/storage/persistent-volumes/#access-modes) and not being being locked to a single AWS availability zone, but these benefits come with higher storage costs and increased latency. | ||
#### Troubleshooting EKS Cluster Connectivity Issues | ||
|
||
### Fargate | ||
Kubernetes cluster endpoint might be unreachable. Verify the connectivity and authentication. | ||
|
||
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. | ||
**Check Cluster Endpoint** | ||
|
||
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. | ||
```sh | ||
aws eks describe-cluster --name your-cluster-name --query "cluster.endpoint" | ||
``` | ||
Ensure the endpoint is reachable from your network. | ||
|
||
**Check Authentication Token** | ||
|
||
```sh | ||
aws eks get-token --cluster-name your-cluster-name | ||
``` | ||
Verify that the token is generated without errors. | ||
|
||
**Kubernetes API Server Logs** | ||
|
||
```sh | ||
kubectl logs -n kube-system $(kubectl get pods -n kube-system -l k8s-app=kube-apiserver -o name) -c kube-apiserver | ||
``` | ||
This command aggregates logs from the API server for debugging potential issues. | ||
|
||
#### Certificate Issues with Cert-Manager | ||
|
||
Cert-Manager might fail to issue certificates due to misconfigurations or API rate limits. | ||
|
||
**Check Cert-Manager Logs** | ||
|
||
Fargate has many [limitations](https://docs.aws.amazon.com/eks/latest/userguide/fargate.html). | ||
```sh | ||
kubectl logs -n md-core-services -l app=cert-manager | ||
``` | ||
Look for errors indicating why certificates might be failing. | ||
|
||
Currently only `namespace` selectors are implemented. If you need `label` selectors please file an [issue](https://github.com/massdriver-cloud/aws-eks-cluster/issues). | ||
**Validate ClusterIssuer** | ||
|
||
## Best Practices | ||
### Managed Node Groups | ||
Worker nodes in the cluster are provisioned as [managed node groups](https://docs.aws.amazon.com/eks/latest/userguide/managed-node-groups.html). | ||
### Secure Networking | ||
Cluster is designed according to [AWS's EKS networking best practices](https://docs.aws.amazon.com/eks/latest/userguide/network_reqs.html) including deploying nodes in private subnets and only deploying public load balancers into public subnets. | ||
### Cluster Autoscaler | ||
A cluster autoscaler is automatically installed to provide node autoscaling as workload demand increases. | ||
### Open ID Connect (OIDC) Provider | ||
Cluster is pre-configured for out-of-the box support of [IAM Roles for Service Accounts (IRSA)](https://docs.aws.amazon.com/eks/latest/userguide/iam-roles-for-service-accounts.html). | ||
```sh | ||
kubectl describe clusterissuer letsencrypt-prod | ||
``` | ||
Ensure that the ClusterIssuer configuration is correct and the ACME server is reachable. | ||
|
||
#### DNS Resolution Problems with External-DNS | ||
|
||
## Security | ||
### Nodes Deployed into Private Subnets | ||
Worker nodes are provisioned into private subnets for security. | ||
### IAM Roles for Service Accounts | ||
IRSA allows kubernetes pods to assume AWS IAM Roles, removing the need for static credentials to access AWS services. | ||
### Secret Encryption | ||
An AWS KMS key is created and associated to the cluster to enable [encryption of secrets](https://kubernetes.io/docs/tasks/administer-cluster/encrypt-data/) at rest. | ||
### IMDSv2 Required on Node Groups | ||
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](https://divvycloud.com/capital-one-data-breach-anniversary/), is disabled on all node groups. | ||
DNS records might fail to update in Route 53. | ||
|
||
## Connecting | ||
After you have deployed a Kubernetes cluster through Massdriver, you may want to interact with the cluster using the powerful [kubectl](https://kubernetes.io/docs/reference/kubectl/) command line tool. | ||
**Check External-DNS Logs** | ||
|
||
### Install Kubectl | ||
```sh | ||
kubectl logs -n md-core-services -l app=external-dns | ||
``` | ||
Identify any error messages related to DNS updates or API limits. | ||
|
||
You will first need to install `kubectl` to interact with the kubernetes cluster. Installation instructions for Windows, Mac and Linux can be found [here](https://kubernetes.io/docs/tasks/tools/#kubectl). | ||
**Verify Route 53 Hosted Zones** | ||
|
||
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. | ||
```sh | ||
aws route53 list-hosted-zones | ||
``` | ||
Ensure that hosted zones' IDs and names match your Route 53 configuration. | ||
|
||
#### EBS CSI Driver Storage Issues | ||
|
||
The standard way to manage connection and authentication details for kubernetes clusters is through a configuration file called a [`kubeconfig`](https://kubernetes.io/docs/concepts/configuration/organize-cluster-access-kubeconfig/) file. | ||
Persistent Volumes may fail to provision or attach to nodes. | ||
|
||
### Download the Kubeconfig File | ||
**Check EBS CSI Driver Logs** | ||
|
||
The standard way to manage connection and authentication details for kubernetes clusters is through a configuration file called a [`kubeconfig`](https://kubernetes.io/docs/concepts/configuration/organize-cluster-access-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. | ||
```sh | ||
kubectl logs -n kube-system -l app=ebs-csi-controller | ||
``` | ||
Review logs to identify issues with volume provisioning or attachment. | ||
|
||
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. | ||
**Manually Describe a Volume** | ||
|
||
![Download Kubeconfig](https://github.com/massdriver-cloud/aws-eks-cluster/blob/main/images/kubeconfig-download.gif?raw=true) | ||
```sh | ||
aws ec2 describe-volumes --volume-ids vol-xxxxxxx | ||
``` | ||
Verify the status and details of the problematic volume directly. | ||
|
||
### Use the Kubeconfig File | ||
#### Pod Scheduling Problems (Cluster Autoscaler) | ||
|
||
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`. | ||
Pods might remain in "Pending" state due to lack of resources or other scheduling issues. | ||
|
||
A single `kubeconfig` file can hold multiple cluster configurations, and you can select your desired cluster through the use of [`contexts`](https://kubernetes.io/docs/concepts/configuration/organize-cluster-access-kubeconfig/#context). Alternatively, you can have multiple `kubeconfig` files and select your desired file through the `KUBECONFIG` environment variable or the `--kubeconfig` flag in `kubectl`. | ||
**Check Cluster Autoscaler Logs** | ||
|
||
Once you've configured your environment properly, you should be able to run `kubectl` commands. Here are some commands to try: | ||
```sh | ||
kubectl logs -n kube-system -l app=cluster-autoscaler | ||
``` | ||
Look for reasons why the autoscaler might not be scaling up nodes. | ||
|
||
```bash | ||
# get a list of all pods in the current namespace | ||
kubectl get pods | ||
**Verify Node Resources** | ||
|
||
# get a list of all pods in the kube-system namespace | ||
kubectl get pods --namespace kube-system | ||
```sh | ||
kubectl describe node <node-name> | ||
``` | ||
Check node capacity and allocations to identify resource issues. | ||
|
||
# get a list of all the namespaces | ||
kubectl get namespaces | ||
#### Metrics and Monitoring Issues | ||
|
||
# view the logs of a running pod in the default namespace | ||
kubectl logs <pod name> --namespace default | ||
Problems with collecting or visualizing metrics using Prometheus and Grafana. | ||
|
||
# describe the status of a deployment in the foo namespace | ||
kubectl describe deployment <deployment name> --namespace foo | ||
**Check Prometheus Operator Logs** | ||
|
||
# get a list of all the resources the kubernetes cluster can manage | ||
kubectl api-resources | ||
```sh | ||
kubectl logs -n md-observability -l app.kubernetes.io/name=prometheus-operator | ||
``` | ||
Identify potential issues with Prometheus scraping or alerting configurations. | ||
|
||
## AWS Access | ||
**Access Grafana UI** | ||
|
||
```sh | ||
kubectl port-forward svc/grafana -n md-observability 3000:3000 | ||
``` | ||
Verify that Grafana is accessible and that dashboards display the expected metrics. | ||
|
||
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](https://docs.aws.amazon.com/eks/latest/userguide/add-user-role.html) for more details. | ||
By utilizing these runbook commands and tools, you can troubleshoot and manage your AWS EKS resources effectively. | ||
|
||
**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. |