Task 2 DevOps using Jenkins, Docker and git

2.When we launch this image, it should automatically starts Jenkins service in the container.
3.Create a job chain of job1, job2, job3 and job4 using build pipeline plugin in Jenkins
4.Job1 : Pull the Github repo automatically when some developers push repo to Github.
5.Job2 : By looking at the code or program file, Jenkins should automatically start the respective language interpreter install image container to deploy code ( eg. If code is of PHP, then Jenkins should start the container that has PHP already installed ).
6.Job3 : Test your app if it is working or not.
7.Job4 : if app is not working , then send email to developer with error messages.
8.Create One extra job job5 for monitor : If container where app is running. fails due to any reson then this job should automatically start the container again.
RUN yum install httpd -y
RUN yum install wget -y
RUN wget -O /etc/yum.repos.d/jenkins.repo https://pkg.jenkins.io/redhat-stable/jenkins.repo
RUN rpm --import https://pkg.jenkins.io/redhat-stable/jenkins.io.key
RUN yum install java-11-openjdk -y
RUN yum install jenkins -y
RUN yum install git -y
RUN echo -e "jenkins ALL=(ALL) NOPASSWD: ALL" >> /etc/sudoers
USER jenkins
ENV USER jenkins
CMD ["java", "-jar", "/usr/lib/jenkins/jenkins.war"]


#!/bin/bash -xe
export perl=$(ls | grep .perl | cut -d'.' -f2)if [ [ "$py" == "py" ]]
export js=$(ls |grep .js| cut -d'.' -f2)
export php=$(ls |grep .php| cut -d'.' -f2)
export py=$(ls |grep .py| cut -d'.' -f2)
then
elif [ [ "$php" == "php" ]]
then
docker pull php
docker run -d -it --name php -p 8002:80 php:latest
elif [[ "$perl" == "perl" ]]
then
docker pull perl
then
docker pull node
echo "Unknown format"
#!/bin/bash -xe
export php=$(sudo ls mytest/ | grep .php | wc –l)
if echo $php > 0
then
if sudo docker ps -a | grep phpsetup
then
echo "php setup already running"
else
sudo docker run -d -i -t --name phpsetup -p 9001:80 php
sleep 5
sudo docker cp *.php phpsetup:/var/www/html/
fi
elif echo $html > 0
then
if sudo docker ps -a | grep htmlsetup
then
echo "html setup already running"
else
sudo docker run -d -i -t --name htmlsetup -p 9002:80 httpd
sleep 5
sudo docker cp *.php htmlsetup:/usr/local/apache2/htdocs/
fi
fi
1) Create job
3 same as we created job 1 and 2
2) Copy and paste github url same as job 1
3) In build triggers select build after project is build give name of job 2
4) To test it the job and above all code has successfully executed we need to check the exit code of the last run commands or program. we can use the command
* if you want to check the web app status use the following commands
#!/bin/bash -xe
htmlfiles=$(sudo ls *.html)
phpfiles=$(sudo ls *.php)
for file in $htmlfiles; do
status=$(curl -o /dev/null -s -w
"%{http_code}" your ip:port/$file)
if [ $status == 200 ] ; then
echo "OK"
else
echo "Error"
fi
done
for file in $allphpfiles; do
status=$(curl -o /dev/null -s -w "%{http_code}" your ip:port/$file)
if [ $status == 200 ] ; then
echo "OK"
else
echo "Website not working"
fi
echo "done"
1) Create job 4 as we create job 1, 2, 3
then
echo "php website running"
elif docker ps | awk '{print$11}' | grep htmlsetup
echo "htmlwebsite running"
else
python3 mail.py
fi
1.
import smtplib
2. sender
="email address of sender"
3. receiver= "email of receiver"
4. password= "any password"
5.
message= "Web application not working"
6. server=smtplib.SMTP("smtp.gmail.com",587)
7. server.starttls()
8. server.login(sender,password)
9. server.sendmail(sender,receiver,message)
10. print(“message sended”)
***********Job 4 Completed*******************************************
1) Create job 5 as we create job and and goto configure then
2) Copy and paste github url same as you did in job 1
3) In build trigger select poll scm and give * * * * * to check changes every one minute
4) To check is all the programs are running correctly use
In build select execute shell:
if sudo docker ps -a | grep
phpsetup
then
echo "Program running"
else
sudo docker run -d -i -t --name
phpsetup -p 9001:80 phpsetup
fi
if sudo docker ps -a | grep prodserver
then
echo "no need"
else #else run httpd server
sudo docker run -d -i -t -p 8084:80 -v devops-t2:/usr/local/apache2/htdocs --name prodserver httpd
fi
*******Job 5 Completed*******************************************
Comments
Post a Comment