AWS Copilot: Containers on AWS

Beginning for Beginners


Use Case: It will highly useful in microservices deployment, where, only developers are responsible for infra deployment and management. So the developer can easily manage the infra from their local machine & create the deployment pipeline. This way they will save a lot of time, as time is directly proportional to money. Also, a company can reduce the cost for system admin or cloud engineer as these positions are not required in this kind of infra management. Basic docker and Linux knowledge are required at the developer end.

What is AWS Copilot…?

The AWS Copilot command-line interface (CLI) provides application-first, high-level commands to simplify modeling, creating, releasing, and managing production-ready containerized applications on Amazon ECS from a local development environment.

Provisioned with application templates, infrastructure as code, and CI/CD pipeline options, the AWS Copilot CLI aligns with application workflows that support modern application best practices. Use the AWS Copilot CLI as part of your everyday development and testing cycle as an alternative to the AWS Management Console.

Prerequisites

Before you begin, complete the following prerequisites:

  1. Set up an AWS account.
  2. Install the AWS Copilot CLI.
  3. Install and configure the AWS CLI.
  4. Run aws configure to set up a default profile that the AWS Copilot CLI will use to manage your application and services.
  5. Install Docker, Git

Let’s Get started with Installation part

Copilot Installation on Linux Server:

sudo curl -Lo /usr/local/bin/copilot https://github.com/aws/copilot-cli/releases/download/v0.1.0/copilot-linux-v0.1.0  \
&& sudo chmod +x /usr/local/bin/copilot \
&& copilot --help

Install Docker & Git in Linux Server

yum install docker git  -y

As I am using EC2 Linux server so that I need to create a soft link for Copilot binary file to “/usr/bin/copilot” location

ln -s /usr/local/bin/copilot /usr/bin/copilot

Go to Opt directory and clone your empty git repo.

https://github.com/manikcloud/copilot

cd /opt/
  • AWS VPC
  • Subnets
  • Security Group
ECS Cluster
  • ECS Service
  • Fargate task
  • Service Discovery
  • ECR Repositories
  • Application Load balance

Conclusion:

I have successfully shown you all the steps for AWS Copilot installation and application deployment. All AWS infra {ECS, Tasks, Laodbalancer, IAM, VPC, and VPC related resources } has been created automatically in DevOps manner. In the end, we tested our Deployment ALB DNS to paste in a web browser, and our website is up and running.


Comments

Popular posts from this blog

5 Way to Save more time.

New era of AR.

Time Travel