Day 52: Your CI/CD pipeline on AWS - Part 3 πŸš€ ☁

Β·

4 min read

Day 52: Your CI/CD pipeline on AWS - Part 3 πŸš€ ☁

What is CodeDeploy?

  • AWS CodeDeploy is a deployment service that automates application deployments to Amazon EC2 instances, on-premises instances, serverless Lambda functions, or Amazon ECS services.

CodeDeploy can deploy application content that runs on a server and is stored in Amazon S3 buckets, GitHub repositories, or Bitbucket repositories. CodeDeploy can also deploy a serverless Lambda function. You do not need to make changes to your existing code before you can use CodeDeploy.

Task-01 :

  • Read about Appspec.yaml file for CodeDeploy.

The appspec.yaml file is typically used in the context of AWS CodeDeploy. The application specification file (AppSpec file) is a YAML-formatted or JSON-formatted file. The AppSpec file for an EC2/On-Premises deployment must be named appspec. yml or appspec.yaml , unless you are performing a local deployment.

The appspec.yaml file is a configuration file that defines how the deployment should proceed. It specifies the deployment process, including which files should be deployed, where they should be deployed, and any scripts or hooks that should be executed during the deployment.

The appspec.yaml file typically includes the following sections:

version: 0.0
os: linux
files:
  - source: /path/to/source/code
    destination: /path/on/target/server
hooks:
  BeforeInstall:
   - location: scripts/before_install.sh
      timeout: 300
      runas: ec2-user
  1. version: This section specifies the version of the AppSpec file format being used.

  2. os: This section specifies the operating system of the target instances.

  3. files: This section specifies the source and destination locations of the files to be deployed.

  4. hooks: This section specifies any scripts or hooks that should be executed during the deployment, such as scripts to stop and start the application.

Deploy index.html file on EC2 machine using nginx

For code commit and code build steps, please follow my Day 51 task article.

Create a CodeDeploy application:

You need to create a CodeDeploy application to deploy your index.html file. You can do this in the AWS Management Console.

In CodeDeploy, go to Applications and click on 'Create application'.

Select compute platform 'EC2/on premises' and click on 'Create application'.

Create a 'service role' for enabling communication between code deploy and other aws services.

Go to IAM service and create 'code-deploy-service-role' with below permissions.

Set up an EC2 instance:

You will need to create an EC2 instance on which you want to deploy the index.html file.

Create an Ubuntu EC2 instance.

Create a deployment group:

Once you have created a CodeDeploy application, you need to create a deployment group. A deployment group is a set of EC2 instances where you want to deploy your application.

Add a deployment group name and choose 'Service role'.

A deployment group is created.

You have to setup a CodeDeploy agent in order to deploy code on EC2.

Install the CodeDeploy agent:

You need to install the CodeDeploy agent on your Ubuntu EC2 instance. The CodeDeploy agent is a software package that runs on your instance and interacts with CodeDeploy to deploy your application. You can install the CodeDeploy agent by running the following script on your EC2 instance:

Run the script using the command bash install.sh

Create an index.html file:

you need to create an index.html file that you want to deploy. You can create a simple HTML file using any text editor.

Task-02 :

Add appspec.yaml file to CodeCommit Repository and complete the deployment process.

You need to create an appspec.yaml file that tells CodeDeploy what to do with your application. Here is an appspec.yaml file that deploys the index.html file on nginx. also create 2 scripts for installing nginx and starting nginx.

Push all the files to code commit using 'git add' and 'git commit' commands.

In build projects, Edit and choose 'Artifacts'.

first create 'S3 bucket'.

In Artifacts, select artifact type as Amazon S3 and choose bucket name.

After building completion, go to S3 bucket and copy S3 url of nginx_code_output zip file.

Create deployment:

In the Application, Go to Deployments and click on 'Create deployment'

In revision type, select Amazon S3 and paste the above copied S3 url to the revision location.

Click on 'Create deployment'.

Deployment is created. but events are in a pending state.

EC2 doesn't have any role policy to retrieve the data from S3 to CodeDeploy.

Go to IAM > Roles> EC2-code-deploy-role

Attach that service role to EC2 instance.

Select EC2 instance, In actions, go to security and click on 'Modify IAM role'.

Select service role.

After updating the IAM role, restart the code-deploy agent.

Deployment status is Succeeded.

Browse the instance public IP address, it will show the output of the index.html file.

Happy Learning!

Β