yasindevops / jenkins-todo-app

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Project-208: Jenkins Pipeline for Web Page Application (Postgresql-Nodejs-React) deployed on EC2's with Ansible and Docker

Description

This project aims to create a Jenkins pipeline to deploy web-page written Nodejs and React Frameworks on AWS Cloud Infrastructure using Ansible. Building infrastructure process is managing with control node utilizing Ansible. This infrastructure has 1 jenkins server (Amazon Linux 2023 AMI) as ansible control node and 3 EC2's as worker node (Red Hat Enterprise Linux 9 with High Availability). These EC2's will be launched on AWS console. Web-page has 3 main components which are postgresql, nodejs, and react. Each component is serving in Docker container on EC2s dedicated for them. Postgresql is serving as Database of web-page. Nodejs controls backend part of web-side and react controls frontend side of web-page. The code was written by Clarusway's Developers and architecture will be created by Clarusway's AWS & DevOps Team.

Problem Statement

Project_007

  • Clarusway has recently ended up a project that aims to serve as web page. You and your colleagues are assigned to work on this project. Clarusway Developer team has done with code and DevOps team is going to deploy the app in production environment using ansible.

  • Application is coded by Clarusway Fullstack development team and given you as DevOps team. Web-page allows users to collect their infos. Registration data should be kept in separate PostgreSQL database located in one of EC2s. Nodejs framework controls backend and serves on port 5000, it is als connected to the PostgreSQL database on port 5432. React framework controls the frontend and it is also connected to the Nodejs server on port 5000. React server broadcasts web-page on port 3000.

  • The Web Application will be deployed using Nodejs and React framework.

  • The Web Application should be accessible via web browser from anywhere on port 3000.

  • EC2's and their security groups should be created on AWS console with Terraform.

  • The rest of the process has to be controlled with control node which is connected SSH port.

  • Codes written by Clarusway developers should be pulled from Clarusway Repo into the Jenkins server and sent them to the EC2's from here with Ansible.

  • Postgresql, Nodejs and React parts has to be placed in docker container.

  • Your project manager wants the DevOps team to launch an EC2 for each postgresql, nodejs and react docker container. In addition, he asks to write one playbook for this project to install and configure docker and create containers in each instances.

  • You are also requested; to use AWS ECR as image repository, to create Docker Containers with 3 managed nodes (postgresql, nodejs and react EC2 instances).

In the architecture, you can configure your architecture with these conditions,

  • Create a new private repository for the project on GitHub.

  • All process has to be controlled into the jenkins server as control node.

  • Dynamic inventory (inventory_aws_ec2.yml) has to be used for inventory file.

  • Ansible config file (ansible.cfg) has to be placed in jenkins server.

  • Docker should be installed in all worker nodes using ansible.

  • Docker images should be build in jenkins server and pushed to the AWS ECR.

  • student_files file should be pulled from Github Repo at the beginning. Then these files should be copy to related folders.

  • For PostgreSQL worker node

    • Docker image should be created for PostgreSQL container with dockerfile-postgresql and init.sql file should be placed under necessary folder.

    • Docker images should be build in jenkins server from dockerfile-postgresql and pushed to the AWS ECR.

    • Create PostgreSQL container in the worker node. Do not forget to set password as environmental variable.

    • Please make sure this instance's security group should be accept traffic from PostgreSQL's dedicated port from Nodejs EC2 and port 22 from anywhere.

    • To keep database's data, volume has to be created with docker container and necessary file(s) should be kept under this file.

    • For Nodejs worker node

      • Please make sure to correct or create .env file under server folder based on PostgreSQL environmental variables. To automize taking private ip of postgresql instance you can use linux envsubst command with env-template.

      • Docker image should be created for nodejs container with dockerfile-nodejs and server files should be placed under necessary folder. This file will use for docker image. You don't need any extra file for creating Nodejs image.

      • Docker image should be built for Nodejs container in jenkins server from dockerfile-nodejs and pushed to the AWS ECR.

      • Create Nodejs container in nodejs instance with ansible and publish it on port 5000.

      • Please make sure this instance's security group should be accept traffic from 5000, 22 dedicated port from anywhere.

    • For React worker node

      • Please make sure to correct .env file under client folder based on Nodejs environmental variables. To automize taking public ip of nodejs instance, you can use linux envsubst command with env-template.

      • Docker image should be created for react container with dockerfile-react and client files should be placed under necessary folder. This file will be used for docker image. You don't need any extra file for creating react image.

      • Docker image should be built for React container in jenkins server from dockerfile-react and pushed to the AWS ECR.

      • Create React container and publish it on port 3000.

      • Please make sure this instance's security group should be accept traffic from 3000, and 80 dedicated port from anywhere.

    • To use the AWS ECR as image repository;

      • Enable the instances with IAM Role allowing them to work with ECR repos using the instance profile.

      • Install AWS CLI Version 2 on worker node instances to use aws ecr commands.

  • To create a Jenkins Pipeline, you need to launch a Jenkins Server with security group allowing SSH (port 22) and HTTP (ports 80, 8080) connections. For this purpose, you can use pre-configured Terraform configuration file for Jenkins Server enabled with Git, Docker, Terraform, Ansible and also configured to work with AWS ECR using IAM role.

  • Create a Jenkins Pipeline with following configuration;

    • Build the infrastructure for the app on EC2 instances using Terraform configuration file.

    • Create an image repository on ECR for the app.

    • Build the application Docker image and push it to the same ECR repository with different tags.

    • Deploy the application on AWS EC2's with ansible.

    • Make a failure stage and ensure to destroy infrastructure, ECR repo and docker images when the pipeline failed.

Project Skeleton

208:clarusway_jenkins_project (folder)
|
|----Readme.md                  # Given to the students (Definition of the project)
|----dockerfile-postgresql      # Given to the students
|----dockerfile-nodejs          # Given to the students
|----dockerfile-react           # Given to the students
|----main.tf                    # To be delivered by students (for managed nodes)
|----Jenkinsfile                # To be delivered by students
|----Ansible-Playbook           # To be delivered by students
|----student_files (folder)     # Given to the students (Postgresql, Nodejs and React files)
|       1.server (folder) ---> Nodejs folders and files
|       2.client (folder) ---> React folders and files
|       3.database (folder)--> init.sql file 
|----ansible.cfg                # Given to the students
|----inventory_aws_ec2.yml      # Given to the students
|----install-jenkins.tf         # Given to the students (Terraform template for Jenkins Server)
|----variables.tf               # Given to the students (Terraform template for Jenkins Server)
|----jenkins.sh                 # Given to the students (Terraform template for Jenkins Server)
|----node-env-template          # Given to the students (env template to take prostgresql node private ip)
|----react-env-template         # Given to the students (env template to take nodejs node private ip)

Expected Outcome

Todo Web Page

At the end of the project, following topics are to be covered;

  • Jenkins Pipeline Configuration

  • Create infrastructure with Terraform

  • Deploy the application with Ansible

  • Ansible playbook preparation

  • Docker image creation for postgresql, nodejs and react containers

  • Docker container launching using created image with ansible playbook

  • Bash scripting

  • AWS ECR as Image Repository

  • AWS IAM Policy and Role Configuration

  • AWS EC2 Launch Template Configuration

  • AWS EC2 Configuration

  • AWS EC2 Security Group Configuration

  • Git & Github for Version Control System

At the end of the project, students will be able to;

  • demonstrate how to configure Jenkins pipeline to create infrstructure with terraform.

  • demonstrate how to configure Jenkins pipeline to deploy app with ansible.

  • demonstrate how to configure Dockerfile.

  • set up 3 containers to work with AWS ECR for pulling docker images.

  • deploy an application with ansible.

  • create and configure AWS ECR from the AWS CLI.

  • use Docker commands effectively to tag, push, and pull images to/from ECR.

  • demonstrate bash scripting skills using user data section in terraform to install and setup environment for ansible manged nodes.

  • demonstrate their configuration skills of AWS EC2, IAM Policy, Role, Instance Profile, and Security Group.

  • apply git commands (push, pull, commit, add etc.) and Github as Version Control System.

Resources

About


Languages

Language:JavaScript 60.7%Language:HTML 17.5%Language:HCL 14.2%Language:CSS 7.6%