Skip to content

Building pipelines and automating EKS deployment using AWS CodeSeries

Notifications You must be signed in to change notification settings

na3150/JUJY-LOG

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

50 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

🦄 JUJY-LOG

JUJY-LOG is created by customizing morethan-log open source. This web contains brief introductions to team members and various documents. You can check the jujy-log team repo here. Also, please check the Wiki for the troubleshooting process.

🕹️ Features

☁️ AWS

  • Building a CI/CD pipeline using AWS CodeSeries (CodeCommit, CodeBuild, CodePipeline)
  • Configure EKS clusters with Fargate
  • Deploying eks cluster using eksctl
  • Use assume role to temporarily grant permission only when needed

👾 Terraform

  • Automate infrastructure deployment with Terraform
  • Improved reusability through modularization
terraform
├── README.md
├── module
│   ├── codebuild
│   │   ├── main.tf
│   │   ├── outputs.tf
│   │   ├── role.tf
│   │   └── variables.tf
│   ├── codepipeline
│   │   ├── main.tf
│   │   ├── outputs.tf
│   │   ├── role.tf
│   │   └── variables.tf
│   ├── ecr
│   │   ├── main.tf
│   │   ├── outputs.tf
│   │   └── variables.tf
│   └── eks
│       ├── main.tf
│       ├── outputs.tf
│       ├── role.tf
│       └── variables.tf
└── root
    └── dev
        ├── main.tf
        └── variables.tf

🌐 Architecture

AWS Resource Content Terraform Automation
Codecommit Includes jujylog code file, kubernetes manifest file and buildspec.yaml. x
CodeBuild Build docker image and push to ecr, eks apply (according to buildspec.yaml). o
CodePipeline Run pipeline when push is detected in codecommit. o
ECR Save the image created from codebuild. o
EKS Create an eks yaml file and deploy it with eksctl. Deploy jujylog image with eks fargate. Automate eksctl command execution with local-exec, without modularization. x

👀 Results

Check the endpoint of loadbalancer.

kubectl get svc

NAME          TYPE           CLUSTER-IP      EXTERNAL-IP                                                                    PORT(S)        AGE
jujy-svc-lb   LoadBalancer   10.100.45.255   k8s-default-jujysvcl-92594f457a-7581a6210e49c6a5.elb.us-east-1.amazonaws.com   80:31814/TCP   14m

Connect to endpoint. image

About

Building pipelines and automating EKS deployment using AWS CodeSeries

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • TypeScript 72.8%
  • HCL 17.4%
  • CSS 5.2%
  • JavaScript 4.1%
  • Dockerfile 0.5%