Git Product home page Git Product logo

constellation's Introduction

Constellation

Proof of concept for auto-scaling applications via AWS EKS, driven by CI


MIT Licensed Powered by Modus_Create

Constellation Kubernetes Dashboard example

Dashboard

The fleet of Kubernetes worker nodes scales up and down in response to demand.

Problem Description

Modus Create has multiple customers who are interested in reducing their AWS bills by containerizing their applications for development and production. Generally, customers in an intermediate stage of AWS adoption run many different EC2 instances with one application per instance, on relatively large and expensive instance types. This fleet of instances often suffers from very low CPU and memory usage relative to total capacity.

If it were possible to define smaller, horizontally scalable sets of containers an entire set of environments (e.g., Dev, QA, or Prod) could be collapsed onto many fewer servers, reducing TCO significantly. If the fleet of containers could then dynamically scale-out as CPU usage (or another critical metric) increased, this would demonstrate the proof of concept of a dynamically scaled container fleet.

Solution

This project uses AWS and Kubernetes (via AWS EKS) to demonstrate autoscaling. It uses a test harness load sink application called spin.py that can be driven to induce high loads to verify that the autoscaling is working correctly, and a test harness control application that is separate to show that the cluster will stay responsive for other applications even while it is under load. The worker nodes should be spread across at least 2 AWS availability zones.

Implementation

We use Terraform to define the AWS EKS control plane and supporting resources. This demonstrates that we can deploy an application and have it scale out while maintaining an adequate quality of service for other applications in the cluster.

This uses horizontal pod autoscaling in conjunction with the cluster autoscaler to scale out a set of 2 applications in it: one application that is just NGINX serving up a simple HTML page and set of static resources, and another application spin.py that is a Python application built with Bottle that has an /api/spin GET endpoint that will spin the CPU for 2 seconds and return a text/plain response that describes the node and characteristics of the run. The python application uses WSGI and is run through the Emperor uWSGI server. An ingress controller allows access to the applications. We can monitor the Kubernetes cluster with Prometheus.

See spin.py for code that will consume CPU cycles. Calling the RESTful endpoint with a GET of /api/spin will consume CPU time.

You should be able to use Docker Compose to test the 2 applications locally before deploying them to Kubernetes.

Testing

To test the scale-out characteristics, use JMeter to apply one thread group with a Ramp to Fail / Stress test load to the /api/spin application and another thread group that applies a steady state load to the other application.

The JMeter load tests under the applications/appname/jmeter tests serve to demonstrate this scaling.

You can measure the latency to the simple web application and ensure that it says relatively steady as the load ramps up. You can measure the size of the cluster as the load grows. You can measure the CPU utilization across the fleet during the test.

Instructions

To run the demo end to end, you will need:

Optionally, you can use Jenkins to orchestrate creation of AWS resources in conjunction with GitHub branches and pull requests.

You will also need to set a few environment variables. The method of doing so will vary from platform to platform.

AWS_PROFILE
AWS_DEFAULT_PROFILE
AWS_DEFAULT_REGION
AWS_ACCESS_KEY_ID
AWS_SECRET_ACCESS_KEY

A sample file is provided as a template to customize:

cp env.sh.sample env.sh
vim env.sh
. env.sh

The AWS profile IAM user should have full control of EC2 in the account you are using.

Jenkins

A Jenkinsfile is provided that will allow Jenkins to execute Terraform. In order for Jenkins to do this, it needs to have AWS credentials set up, preferably through an IAM role, granting full control of EC2 and VPC resources in that account. Terraform needs this to create a VPC and EC2 resources. This could be pared down further through some careful logging and role work.

Requirements

If 'aws-iam-authenticator' isn't installed, prep.sh will install it from the AWS repository.

If 'kubectl' isn't installed, prep.sh will install it from the AWS repository.

  • helm:

    brew install kubernetes-helm

or

https://github.com/helm/helm/releases
  • tiller: Run these commands to install the tiller cli:

    cd /tmp sudo helm init

Terraform

This Terraform setup stores its state in Amazon S3 and uses DynamoDB for locking. There is a bit of setup required to bootstrap that configuration. You can use this repository to use Terraform to do that bootstrap process. The backend.tfvars file in that repo should be modified as follows to work with this project:

(Replace us-east-1 and XXXXXXXXXXXX with the AWS region and your account ID)

bucket = "tf-state.k8s-eks-scaling-demo.us-east-1.XXXXXXXXXXXX"
dynamodb_table = "TerraformStatelock-k8s-eks-scaling-demo"
key = "terraform.tfstate"
profile = "terraform"
region = "us-east-1"

You'll also need to modify the list of operators who can modify the object in the S3 bucket. Put in the IAM user names of the user into the setup/variables.tf file in that project. If your Jenkins instance uses an IAM role to grant access, give it a similar set of permissions to those granted on in the bucket policy to IAM users.

These commands will then set up cloud resources using terraform:

cd terraform
terraform init
terraform get
# Example with values from our environment (replace with values from your environment)
# terraform plan -var domain=modus.app -out tf.plan
terraform plan -out tf.plan -var 'domain=example.net'
terraform apply tf.plan
# check to see if everything worked - use the same variables here as above
terraform destroy -var 'domain=example.net'

This assumes that you already have a Route 53 domain in your AWS account created. You need to either edit variables.tf to match your domain and AWS zone or specify these values as command line var parameters.

Building and Starting the Demo

At any time you can enter "./bin/build.sh help" for the available commands.

./bin/build.sh stand-up-demo

Connect a browser to test these endpoints:

Monitoring the applications

Run this command to start up and connect to the dashboard:

./bin/build.sh proxy-dashboard

Follow the instructions it gives, connect a browser to the dashboard, and login with the token.

Induce load that will scale out the application

Run this command in one terminal window to put load on the web application to make it scale out:

/bin/build.sh run-jmeter-www webapp

Run this command in another terminal window to put load on the load sink spin.py application to make it scale out:

./bin/build.sh run-jmeter-www spin

Once you have run the commands to make JMeter apply load to the tests, look at the Prometheus dashboard where you will be able to observe increasing pod and node counts. By looking at these and the request and response rates in JMeter, you will get a good idea about how the applications are scaling out.

Useful commands

Here are some useful commands you might use to inspect the running cluster:

./bin/build.sh kubeconfig  # run this first to update the config in your home directory
kubectl top node
kubectl top pod
kubectl get hpa
kubectl get deployments
kubectl get rs
kubectl get pods
kubectl describe deployments
kubectl scale deployment.v1.apps/k8s-dev-spin --replicas=10
kubectl get deployment metrics-server -n kube-system
kubectl get --raw "/apis/metrics.k8s.io/v1beta1/nodes"
kubectl run -i --tty load-generator --image=busybox /bin/sh
kubectl -n metrics logs -l app=metrics-server

Stopping the Demo

Stop the demo with this command:

./bin/build.sh tear-down-demo

Development Notes

  • Run './bin/build.sh help' for help on building applications.
  • The ECR repositories are not currently created by Terraform. Depending on the goals of the demo they could be managed by Terraform.
  • For EKS to report CPU usage to the metrics server, the 'kubectl run' command needs a cpu limit applied: EG: "--limits=cpu=200m,memory=512Mi"

CloudWatch

CloudWatch

References

The code is based in part on commit 61bee0b7858bbcd3d4276f186cc4cc7bf298ac11 from the ModusCreateOrg/devops-infra-demo repository.

Modus Create

Modus Create is a digital product consultancy. We use a distributed team of the best talent in the world to offer a full suite of digital product design-build services; ranging from consumer facing apps, to digital migration, to agile development training, and business transformation.

Modus Create

This project is part of Modus Labs.

Modus Labs

Licensing

This project is MIT licensed.

The content in application is adapted from Dimension by https://html5up.net/ and is licensed under a Creative Commons Attribution 3.0 License See its README.md and LICENSE.md files for more details.

constellation's People

Contributors

obscurerichard avatar grgur avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.