Jenkins

Programmers working on computer program

How To Remove Unwanted Users From Jira

Reading Time: 3 minutes Considering a scenario where there are multiple users who are inactive for the past two years, and now we wish to remove unwanted users who are inactive say 2 years back now so that we can perform these simple steps and get our work done very easily. Now to do so first, you might be aware of a few simple basics of Jenkins and Jira. Continue Reading

How to get the git changelog in Jenkins

Reading Time: 3 minutes Hello Readers! In this blog, we will see how we can get the changelog in Jenkins. So, basically, a changelog means a file that will contain the ordered list of changes made to a project. And when these changes will be for a git repository then it will be called git changelog. Here for getting git changelog in Jenkins, I will use a Jenkins plugin Continue Reading

two businessmen outdoor using technology

How to analyze Jenkins Build logs using the ELK stack

Reading Time: 3 minutes Hello Readers! In this blog, we are going to see how we can analyze Jenkins build logs using the ELK stack. As Jenkins is known for its automation and we have a number of its builds logs. Here analysis of Jenkins build logs plays a huge role. So, I will explain and show you how we can monitor and analyze Jenkins build logs in our Continue Reading

How to analyze Jenkins job build logs using the log parser plugin

Reading Time: 3 minutes Hello Readers! In this blog, we will see how we can analyze Jenkins job build logs using the log parser plugin. As we all know, Jenkins is now the most widely used CI tool. As we know job build logs in Jenkins can become very verbose sometimes, here keeping the logs in an easy format plays a very significant role. So, here is a plugin Continue Reading

Creating Jenkins Job Using Jenkins Job Builder

Reading Time: 4 minutes Hello Readers! In this blog we will see how we can create a Jenkins job using Jenkins job Builder. Firstly let me introduce you to Jenkins job Builder. What is it? How can we get start using Jenkins Job Builder? How can we set it up? Jenkins Job Builder: As the name suggests builder, i.e used for building and managing things. So, Basically Jenkins Job Continue Reading

jenkins

      Jenkins API to handle Jobs Remotely

Reading Time: 4 minutes Hello Readers! I hope you are doing well. So, In this blog we will see how we can use Jenkins API to handle jobs remotely. In this blog we will create, update, trigger, delete, our Jenkins job through REST API. This is very quick and simple so let’s see. Why do we need to handle a job remotely? Jenkins is well known for its flexibility. Continue Reading

docker

Setup Jenkins in Docker container

Reading Time: 3 minutes Hi Readers, Continuous Integration and Continuous Deployment is the core part of DevOps practices. Jenkins is one of the CI/CD tools. In this blog, we will see how we can set up Jenkins in a Docker container. Jenkins Jenkins is an open source, self contained automation tool written in Java. It streamlines continuous integration and continuous deployment task in software development life cycle process. Jenkins Continue Reading

jenkins logo

Trigger Jenkins Parameterised Job Via HTTP Request

Reading Time: 4 minutes Hi Folks! In this blog we will see how we can easily trigger Jenkins Parameterised job Via HTTP request. Jenkins is one of the oldest & most popular CI (Continuous Integration) tools, and many teams still configure and run their daily and ad-hoc build jobs with Jenkins. Why do we need to trigger a job remotely? Many times we want to trigger the build from Continue Reading

jenkins logo

How to integrate AWS simple email service with Jenkins

Reading Time: 5 minutes Jenkins is an open-source tool written in java and also have a plugin built for continuous integration and build automation purpose. It helps in automating the parts of software development related to building, testing, and deploying, facilitating continuous integration and continuous delivery. In this blog, we are going to learn how can we integrate an AWS simple email service with Jenkins default email notifier. Email Continue Reading

jenkins logo

Master-Slave Architecture of Jenkins and its Working

Reading Time: 2 minutes What is Jenkins? Jenkins is an open-source CI/CD tool that is java based. We use Jenkins because: Jenkins continuously builds and tests the project so the developers can easily integrate the changes in the code, that is, CI (Continuous Integration) Using Jenkins Pipeline to continuously deliver and deploy the application, that is, CD (Continuous Delivery) Jenkins Architecture Jenkins performs distributed build using a Master-Slave Architecture. Continue Reading

jenkins logo

How to trigger Jenkins job via curl command remotely

Reading Time: 3 minutes Hello Readers! We actually know various methods to trigger a Jenkins job but in this blog we will see how we can easily trigger a Jenkins job via curl command remotely. This is very quick and simple so let’s see. cURL Curl stands for client URL. It is a command-line tool that we can easily use to transfer data to and from a server. It Continue Reading

Jenkins builds on Kubernetes cluster

Reading Time: 4 minutes Hello everyone, so in this blog, we are going to learn today that how can we run Jenkins build in Kubernetes as a pod. Jenkins is an open-source tool written in java and also have a plugin built for continuous integration and build automation purpose. It helps in automating the parts of software development related to building, testing, and deploying, facilitating continuous integration and continuous Continue Reading

Jenkins Integration: Selenium Grid

Reading Time: 4 minutes Selenium Grid is a tool that we can use for testing, automating web applications, and run them on remote machines. We can run our tests to integrate them with CI/CD tools such as Jenkins. In this blog, we will see Jenkins Integration with Selenium Grid. Why is Jenkins integration required? Test automation helps us with continuous defects, errors, and bugs as early as possible. If Continue Reading