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:
- Set up an AWS account.
- Install the AWS Copilot CLI.
- Install and configure the AWS CLI.
- Run
aws configure
to set up a default profile that the AWS Copilot CLI will use to manage your application and services. - 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 -yservice docker startchkconfig docker on
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/git clone https://github.com/manikcloud/copilot-demo.gitllcd copilot-demo/Ocopilot init command complete the entire setup, below resources has been created in your was accounts:
- AWS VPC
- Subnets
- Security Group
- 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
Post a Comment