Giter VIP home page Giter VIP logo

pipeline-eks-app's Introduction

AWS EKS CI/CD Pipeline    License: CC0 1.0 Universal


MinIO on EKS

MinIO on Amazon Elastic Kubernetes Service (EKS) deployed with GitHub Actions and TerraForm

Table of Contents

Tech Stacks

The pipeline uses the following key technologies:

  • Amazon Web Services (AWS): The cloud provider used for hosting the application and the pipeline.
  • Terraform: An Infrastructure as Code (IaC) tool used to provision and manage the infrastructure on AWS.
  • Kubernetes (EKS): A container orchestration platform, used here via Amazon Elastic Kubernetes Service (EKS), to manage and automate the deployment of the Docker containers.
  • GitHub Actions: A CI/CD platform used to automate the software development workflow.
  • MinIO: A Object Storage. It's API compatible with Amazon S3 cloud storage service.

Getting Started

Instructions for setting up and deploying the CI/CD pipeline are provided in this section.

Prerequisites

  • An AWS account with necessary permissions to create and manage resources.
  • Ensure that the necessary AWS credentials are stored as secrets in your GitHub repository.

Set GitHub Repository Secrets

You need to set the following secrets at the repository level:

  • AWS_ACCESS_KEY_ID: The access key ID for your AWS account.
  • AWS_SECRET_ACCESS_KEY: The secret access key for your AWS account.
  • AWS_REGION: The AWS region in which to deploy the resources.
  • TF_STATE_BUCKET: The name of the S3 bucket where Terraform will store its state.
  • EKS_BUCKET_NAME: The name of the S3 bucket that the MinIO service will have access to.
  • MINIO_ACCESS_KEY: The access key for the MinIO service.
  • MINIO_SECRET_KEY: The secret key for the MinIO service.

In addition, you need to set the following variables at the repository level:

  • AWS_REGION: The AWS region in which to deploy the resources

Usage

Once you've set the necessary secrets, you can deploy the pipeline by pushing to the main or releases/* branches of your repository. This will trigger the GitHub Actions workflow, which will then deploy your application to an EKS cluster on AWS.

Pipeline Explanation

‼️ NOTE The pipeline is run using GitHub Actions and is defined in the eks_create_deploy.yaml file in this repository.

  • The pipeline is triggered on every push or pull_request event to the main branch or push to any branch with releases/* pattern.
  • The pipeline ignores changes to README, .gitignore or screenshots/ and doesn't run on changes to these files for obvious reasons.

The pipeline includes the following steps:

  1. Checkout: Checks out the code from the GitHub repository.
  2. Configure AWS Credentials: Authenticates to AWS using the access key ID and secret access key stored in the repository secrets.
    uses: aws-actions/configure-aws-credentials@v4
  3. Setup Terraform: Sets up Terraform on the runner. (uses actions hashicorp/setup-terraform)
    uses: hashicorp/setup-terraform@v3
    with:
      terraform_version: ${{ env.TF_VERSION }}
  4. Terraform Init and validate: Initializes Terraform, sets the backend S3 bucket for terraform state file, validates the Terraform configuration, and creates a Terraform plan.
    terraform init -backend-config="bucket=${TF_VAR_state_bucket}"
    terraform validate
    terraform plan
  5. Terraform Apply and get Output: Applies the Terraform configuration to create the EKS cluster and associated resources on AWS. Captures the ARN of the MinIO IAM role and sets it as an environment variable.
    terraform apply -auto-approve
    echo "MINIO_IAM_ROLE_ARN=$(terraform output -raw minio_role_arn)" >> $GITHUB_ENV
  6. Install and configure kubectl: Installs kubectl on the runner and updates the kubeconfig file with the information to access the EKS cluster.
    curl -LO "https://dl.k8s.io/release/$(curl -L -s https://dl.k8s.io/release/stable.txt)/bin/linux/amd64/kubectl"
    chmod +x kubectl
    sudo mv kubectl /usr/local/bin/
    aws eks update-kubeconfig --region $AWS_REGION --name $CLUSTER_NAME
  7. Create MinIO service account: Creates a Kubernetes service account and annotates it with the ARN of the MinIO IAM role. This is important for minio to access a specific S3 bucket. This service account used OIDC to assume the role assigned to the EKS cluster.
    kubectl create serviceaccount minio-serviceaccount
    kubectl annotate serviceaccount minio-serviceaccount eks.amazonaws.com/role-arn=$MINIO_IAM_ROLE_ARN
  8. Create MinIO credentials secret: Creates a Kubernetes secret to hold the MinIO access key and secret key.
    kubectl create secret generic minio-credentials --params VALUE
  9. Deploy MinIO on EKS: Deploys the MinIO service to the EKS cluster using the Kubernetes manifests.
    kubectl apply -f PATH_TO_MINIO_DEPLOYMENT_FILE
  10. Get the endpoint of the load balancer created for the MinIO service: Retrieves the endpoint of the load balancer that is created for the MinIO service.
    kubectl get svc minio-service
  11. Sleep & then Delete MinIO Service and Terraform Destroy: Waits for a period, and then destroys the EKS cluster and associated resources using Terraform to avoid costs..
    if: always() 
    run: sleep 600 && terraform destroy -auto-approve

Screenshots

For screenshots, see: Screenshots


Contributing

Contributions are welcome. Please open an issue to discuss your ideas or initiate a pull request with your changes.

License

This project is licensed under the terms of the CC0 1.0 Universal.


‼️ NOTE‼️: For Japanese documentation, refer 日本語-README.md

pipeline-eks-app's People

Contributors

rbnhd avatar

Watchers

 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.