CICD Pipeline Project Using CodeDeploy, CodePipeline Part 1

Опубликовано: 19 Декабрь 2020
на канале: The Muzaffar Method: Ops Unlocked
128
10

In this video, the following content will be covered:

The deployment strategy in AWS CodeDeploy.
Writing an application-specific file.
Deploying a static application in an EC2 instance from the S3 bucket using AWS CodeDeploy.
Introducing AWS CodePipeline and its working.
Continuous deployment of static application to AWS S3 using AWS CodePipeline.

Deploying a static application in an EC2instance from the S3 Bucket using AWS CodeDeploy:

1. Creating an IAM role and attaching permission to that role.
2. Creating an EC2 instance in a public subnet and attaching the role in it.
3. Creating the S3 bucket and uploading the file in that.

Codedeploy agent install on Centos/Red hat OS:

yum update
yum install ruby
yum install wget
wget https://aws-codedeploy-ap-south-.s3.amazonaws.com/latest/install
chmod +x install
./install auto
service codedeploy-agent start
yum install nodejs (curl -sL https://rpm.nodesource.com/setup_10.x | sudo bash -)
npm install -g forever


github url : https://github.com/muzafferjoya/Node-...