🌻10 Stages Real-World CI/CD DevSecOps Pipeline for Deployment of Petclinic Application 🌻

A step-by-step guide to deploying a Java-based Pet Clinic application on Tomcat Server using Jenkins as a CI/CD tool

Cloudoholic β˜πŸ’­βš‘
Cloud Native Daily
10 min readAug 17, 2023

--

Hello friends, we will be deploying a Pet Clinic Java Based Application. This is an everyday use case scenario used by several organizations. We will be using Jenkins as a CICD tool and deploying our application on Tomcat Server. Hope this detailed blog is useful.

We will be deploying our application in two ways, using Docker Container and other is using Tomcat Server.

Steps:-

Step 1 β€” Create an Ubuntu T2 Large Instance

Step 2 β€” Install Jenkins, Docker and Trivy. Create a Sonarqube Container using Docker.

Step 3 β€” Install Plugins like JDK, Sonarqube Scanner, Maven, OWASP Dependency Check,

Step 4 β€” Create a Pipeline Project in Jenkins using Declarative Pipeline

Step 5 β€” Install OWASP Dependency Check Plugins

Step 6 β€” Docker Image Build and Push

Step 7 β€” Deploy image using Docker

Step 8 β€” Install Tomcat on Port 8083 and finally deploy on Apache Tomcat using groovy pipeline script mentioned

Step 9 β€” Access the Real World Application

Step 10 β€” Terminate the AWS EC2 Instance

References

Now, lets get started and dig deeper into each of these steps :-

Step 1 β€” Launch an AWS T2 Large Instance. Use the image as Ubuntu. You can create a new key pair or use an existing one. Enable HTTP and HTTPS settings in the Security Group.

Step 2 β€” Install Jenkins, Docker and Trivy

2A β€” To Install Jenkins

Connect to your console, and enter these commands to Install Jenkins

sudo apt-get update

curl -fsSL https://pkg.jenkins.io/debian-stable/jenkins.io-2023.key | sudo tee \
/usr/share/keyrings/jenkins-keyring.asc > /dev/null
echo deb [signed-by=/usr/share/keyrings/jenkins-keyring.asc] \
https://pkg.jenkins.io/debian-stable binary/ | sudo tee \
/etc/apt/sources.list.d/jenkins.list > /dev/null

sudo apt update
sudo apt install openjdk-17-jdk
sudo apt install openjdk-17-jre

sudo systemctl enable jenkins
sudo systemctl start jenkins
sudo systemctl status jenkins

sudo cat /var/lib/jenkins/secrets/initialAdminPassword

Once Jenkins is installed, you will need to go to your AWS EC2 Security Group and open Inbound Port 8080, since Jenkins works on Port 8080.

Now, grab your Public IP Address

<EC2 Public IP Address:8080>
sudo cat /var/lib/jenkins/secrets/initialAdminPassword

Unlock Jenkins using an administrative password and install the required plugins.

Jenkins will now get installed and install all the libraries.

Jenkins Getting Started Screen

2B β€” Install Docker

sudo apt-get update
sudo apt-get install docker.io -y
sudo usermod -aG docker $USER
sudo chmod 777 /var/run/docker.sock
sudo docker ps

After the docker installation, we create a sonarqube container (Remember added 9000 port in the security group)

docker run -d --name sonar -p 9000:9000 sonarqube:lts-community

2C β€” Install Trivy

sudo apt-get install wget apt-transport-https gnupg lsb-release

wget -qO - https://aquasecurity.github.io/trivy-repo/deb/public.key | gpg --dearmor | sudo tee /usr/share/keyrings/trivy.gpg > /dev/null

echo "deb [signed-by=/usr/share/keyrings/trivy.gpg] https://aquasecurity.github.io/trivy-repo/deb $(lsb_release -sc) main" | sudo tee -a /etc/apt/sources.list.d/trivy.list

sudo apt-get update

sudo apt-get install trivy -y

Next, we will login to Jenkins and start to configure our Pipeline in Jenkins

Step 3 β€” Install Plugins like JDK, Sonarqube Scanner, Maven, OWASP Dependency Check,

3A β€” Install Plugin

Goto Manage Jenkins β†’Plugins β†’ Available Plugins β†’

Install below plugins

1 β†’ Eclipse Temurin Installer (Install without restart)

2 β†’ SonarQube Scanner (Install without restart)

3B β€” Configure Java and Maven in Global Tool Configuration

Goto Manage Jenkins β†’ Tools β†’ Install JDK and Maven3 β†’ Click on Apply and Save

3C β€” Create a Job

Label it as Real-World CI-CD, click on Pipeline and Ok.

Enter this in Pipeline Script,

pipeline {
agent any

tools{
jdk 'jdk17'
maven 'maven3'
}

stages{

stage("Git Checkout"){
steps{
git branch: 'main', changelog: false, poll: false, url: 'https://github.com/writetoritika/Petclinic.git'
}
}

stage("Compile"){
steps{
sh "mvn clean compile"
}
}

stage("Test Cases"){
steps{
sh "mvn test"
}
}
}
}

The stage view would look like this,

Step 4 β€” Configure Sonar Server in Manage Jenkins

Grab the Public IP Address of your EC2 Instance, Sonarqube works on Port 9000 , sp <Public IP>:9000. Goto your Sonarqube Server. Click on Administration β†’ Security β†’ Users β†’ Click on Tokens and Update Token β†’ Give it a name β†’ and click on Generate Token

Click on Update Token

Copy this Token

Goto Dashboard β†’ Manage Jenkins β†’ Credentials β†’ Add Secret Text. It should look like this

Now, goto Dashboard β†’ Manage Jenkins β†’ Configure System

Click on Apply and Save

Configure System option is used in Jenkins to configure different server

Global Tool Configuration is used to configure different tools that we install using Plugins

We will install sonar-scanner in tools.

Lets goto our Pipeline and add Sonar-qube Stage in our Pipeline Script

pipeline {
agent any

tools{
jdk 'jdk17'
maven 'maven3'
}

environment {
SCANNER_HOME=tool 'sonar-scanner'
}

stages{

stage("Git Checkout"){
steps{
git branch: 'main', changelog: false, poll: false, url: 'https://github.com/writetoritika/Petclinic.git'
}
}

stage("Compile"){
steps{
sh "mvn clean compile"
}
}

stage("Test Cases"){
steps{
sh "mvn test"
}
}


}
}
}

Click on Build now, you will see the stage view like this

To see the report, you can goto Sonarqube Server and goto Projects.

You can see the report has been generated and the status shows as passed. You can see that there are 15K lines. To see detailed report, you can go to issues.

Step 5 β€” Install OWASP Dependency Check Plugins

GotoDashboard β†’ Manage Jenkins β†’ Plugins β†’ OWASP Dependency-Check. Click on it and install without restart.

First, we configured Plugin and next we have to configure Tool

Goto Dashboard β†’ Manage Jenkins β†’ Tools β†’

Click on apply and Save here.

Now goto configure β†’ Pipeline and add this stage to your pipeline

   stage("OWASP Dependency Check"){
steps{
dependencyCheck additionalArguments: '--scan ./ --format HTML ', odcInstallation: 'DP-Check'
dependencyCheckPublisher pattern: '**/dependency-check-report.xml'
}
}
stage("Build"){
steps{
sh " mvn clean install"
}
}

The final pipeline would look like this,

pipeline {
agent any

tools{
jdk 'jdk17'
maven 'maven3'
}

environment {
SCANNER_HOME=tool 'sonar-scanner'
}

stages{

stage("Git Checkout"){
steps{
git branch: 'main', changelog: false, poll: false, url: 'https://github.com/writetoritika/Petclinic.git'
}
}

stage("Compile"){
steps{
sh "mvn clean compile"
}
}

stage("Test Cases"){
steps{
sh "mvn test"
}
}

stage("Sonarqube Analysis "){
steps{
withSonarQubeEnv('sonar-server') {
sh ''' $SCANNER_HOME/bin/sonar-scanner -Dsonar.projectName=Petclinic \
-Dsonar.java.binaries=. \
-Dsonar.projectKey=Petclinic '''

}
}
}


stage("Build"){
steps{
sh " mvn clean install"
}
}

stage("OWASP Dependency Check"){
steps{
dependencyCheck additionalArguments: '--scan ./ ' , odcInstallation: 'DP-Check'
dependencyCheckPublisher pattern: '**/dependency-check-report.xml'
}
}

}
}

The stage view would look like this,

You will see that in status, a graph will also be generated

Step 6 β€” Docker Image Build and Push

We need to install Docker tool in our system, Goto Dashboard β†’ Manage Plugins β†’ Available plugins β†’ Search for Docker and install these plugins

  • Docker
  • Docker Commons
  • Docker Pipeline
  • Docker API
  • docker-build-step

and click on install without restart

Now, goto Dashboard β†’ Manage Jenkins β†’ Tools β†’

Add DockerHub Username and Password under Global Credentials

Add this stage in Pipeline Script

    stage("Docker Build & Push"){
steps{
script{
withDockerRegistry(credentialsId: ''bc86df08-bacf-4695-99cb-8cefb3406235', toolName: 'docker') {

sh "docker build -t petclinic1 ."
sh "docker tag petclinic1 writetoritika/pet-clinic123:latest "
sh "docker push writetoritika/pet-clinic123:latest "

}
}
}
}

You will see the output like below,

Now, when you do

docker images

You will see this output

When you log in to Dockerhub, you will see a new image is created

Step 7 β€” Deploy image using Docker

Add this stage to your pipeline syntax

stage("Deploy Using Docker"){
steps{
sh " docker run -d --name pet1 -p 8082:8082 writetoritika/pet-clinic123:latest "
}
}

You will see the Stage View like this,

Step 8 β€” Install Tomcat on Port 8083 and finally deploy on Apache Tomcat using groovy pipeline script mentioned

Before we add Pipeline Script, we need to install and configure Tomcat on our server.

Here are the steps to install Tomcat 9

cd /opt/
sudo wget https://archive.apache.org/dist/tomcat/tomcat-9/v9.0.65/bin/apache-tomcat-9.0.65.tar.gz
sudo tar -xvf apache-tomcat-9.0.65.tar.gz
sudo rm -rf apache-tomcat-9.0.65
sudo su

cd /opt/apache-tomcat-9.0.65/conf
sudo vi tomcat-users.xml
---add-below-line at the end (2nd-last line)----
<user username="admin" password="admin1234" roles="admin-gui, manager-gui"/>



sudo ln -s /opt/apache-tomcat-9.0.65/bin/startup.sh /usr/bin/startTomcat
sudo ln -s /opt/apache-tomcat-9.0.65/bin/shutdown.sh /usr/bin/stopTomcat



sudo vi /opt/apache-tomcat-9.0.65/webapps/manager/META-INF/context.xml
comment:
<!-- Valve className="org.apache.catalina.valves.RemoteAddrValve"
allow="127\.\d+\.\d+\.\d+|::1|0:0:0:0:0:0:0:1" /> -->

sudo vi /opt/apache-tomcat-9.0.65/webapps/host-manager/META-INF/context.xml
comment:
<!-- Valve className="org.apache.catalina.valves.RemoteAddrValve"
allow="127\.\d+\.\d+\.\d+|::1|0:0:0:0:0:0:0:1" /> -->



sudo stopTomcat
sudo startTomcat

SincePort 8080 is being used by Jenkins, we have used Port 8083 to host Tomcat Server

Add this stage to your Pipeline script

  stage("Deploy To Tomcat"){
steps{
sh "cp /var/lib/jenkins/workspace/Real-World-CI-CD/target/petclinic.war /opt/apache-tomcat-9.0.65/webapps/ "
}
}

Kindly note that this application can be deployed via Docker and also via Tomcat Server. Here I have used Tomcat to deploy the application

The final script looks like this,

pipeline {
agent any

tools{
jdk 'jdk17'
maven 'maven3'
}

environment {
SCANNER_HOME=tool 'sonar-scanner'
}

stages{

stage("Git Checkout"){
steps{
git branch: 'main', changelog: false, poll: false, url: 'https://github.com/writetoritika/Petclinic.git'
}
}

stage("Compile"){
steps{
sh "mvn clean compile"
}
}

stage("Test Cases"){
steps{
sh "mvn test"
}
}




stage("Build"){
steps{
sh " mvn clean install"
}
}

stage("OWASP Dependency Check"){
steps{
dependencyCheck additionalArguments: '--scan ./ ' , odcInstallation: 'DP-Check'
dependencyCheckPublisher pattern: '**/dependency-check-report.xml'
}
}

stage("Docker Build & Push"){
steps{
script{
withDockerRegistry(credentialsId: 'bc86df08-bacf-4695-99cb-8cefb3406235', toolName: 'docker') {


sh "docker build -t petclinic1 ."
sh "docker tag petclinic1 writetoritika/pet-clinic123:latest "
sh "docker push writetoritika/pet-clinic123:latest "

}
}
}
}

stage("Deploy Using Docker"){
steps{
sh " docker run -d --name pet12 -p 8082:8082 writetoritika/pet-clinic123:latest "
}
}

stage("Deploy To Tomcat"){
steps{
sh "cp target/petclinic.war /opt/apache-tomcat-9.0.65/webapps/ "
}
}
}
}

And you can access your application on Port 8083. This is a Real World Application that has all Functional Tabs.

Step 9 β€” Access the Real World Application

Step 10 β€” Terminate the AWS EC2 Instance

Lastly, do not forget to terminate the AWS EC2 Instance.

Resources Used β€” https://www.youtube.com/watch?v=Hen2biH2BSI

Here is the GitHub Repo for this Project

Hope you found this article useful and interesting. Thank you and Happy Learning πŸ™

--

--

Cloudoholic β˜πŸ’­βš‘
Cloud Native Daily

Devops Engineer (Sister of Ansible, Knight of Vim, Chaplain of Terraform)