Dynamic Jenkins Cluster + Kubernetes
TASK-DISCRIPTION
1. Create container image that’s has Linux and other basic configuration required to run Slave for Jenkins. ( example here we require kubectl to be configured )
2. When we launch the job it should automatically starts job on slave based on the label provided for dynamic approach.
3. Create a job chain of job1 & job2 using build pipeline plugin in Jenkins
4. Job1 : Pull the Github repo automatically when some developers push repo to Github and perform the following operations as:
a. Create the new image dynamically for the application and copy the application code into that corresponding docker image
Push that image to the docker hub (Public repository)
( Github code contain the application code and Dockerfile to create a new image )
5. Job2 ( Should be run on the dynamic slave of Jenkins configured with Kubernetes kubectl command): Launch the application on the top of Kubernetes cluster performing following operations:
1. If launching first time then create a deployment of the pod using the image created in the previous job. Else if deployment already exists then do rollout of the existing pod making zero downtime for the user.
2. If Application created first time, then Expose the application. Else don’t expose it.
---------
1. Create a container image for the slave (kubctl installed)
2. Setting up cluster
Need two machines- one act as docker client and other as docker service
to make other vm as server we need to change ExecStart value in docker.service file
To make changes run the following command
systemctl daemon-reload
systemctl restart docker
Now start jenkins
Cluster-setup done
Job1:
Job2:
Thankyou!











Comments
Post a Comment