Software Engineering, Automation and DevOps Solutions
SonarQube is an open source tool that is being widely used to manage code quality. SonarQube performs code inspection to detect issues in the code. In this post we will learn how to install SonarQube on a docker container. We will install community version of SonarQube with LTS edition. We will...
This article provides an overview of what we can achieve by using Kubernetes by providing simple explanations with examples. It is a good starting point for anyone beginning the journey towards a very widely used tool for managing and scaling containers. What is container orchestration Kubernetes is commonly described as...
In this post we will discuss few points to consider when this error occurs while trying to connect to GitHub repository from Jenkins. For clarity, let us try to re-create the scenario where we might face this error using Jenkins pipeline project. Learn more about GitHub: How to integrate a...
Let us start with a common use case in a typical project. The use case is to fetch the code from source control. Once we are execute this use case i.e. once we are able to fetch the source code, we should be able to perform continuous integration and delivery...
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...