Devops

Generate fine grained personal access token in GitHub

What is a Personal Access Token GitHub is a tool used by many projects to store and version control their code. So, as an initial step during code integration, it is required to fetch the code from version control i.e. GitHub in our case. This can be done by using...

Scripted Pipeline

Structure of a Scripted Pipeline in Jenkins with sample code

There are two ways of writing pipeline code in jenkins, scripted and declarative. Here we will discuss how to start with writing a scripted pipeline in Jenkins. We will write pipeline code for a java web app project using maven, however high level structure will hold true for any project type. First...

Setup DevOps CI CD pipeline by using docker containers and Image promotion

Setup DevOps CI CD pipeline by using docker containers and Image promotion 

If you write code and then check it into the version control, build the code and deploy on your dev server. Then deploy the same build artifacts onto your test server and post testing deploy on staging and on production. You might also use a orchestration tool for continuous delivery...