cicd

How To Quality-Check Python Code Using Pylint On CI?

Reading Time: 2 minutes In this article, we will talk about how to quality-check Python code using Pylint on CI. Code Quality Through CI As we know, code quality is an important aspect of any project. It is the responsibility of every developer to quality-check the code before pushing it to the repository. However, to enforce this and implement the concepts of Continuous Integration (CI), we need to have Continue Reading

How To Run Postman Test With Newman In Gitlab Ci

Reading Time: 4 minutes Hi folks, In this brief blog post, we’ll learn more about Gitlab CI and Postman, the API testing tool we use the most frequently. This article’s goal is to provide a quick process for automatically testing the service API response. The solution makes use of the capabilities provided by the Gitlab-integrated Continuous Integration tool. Introduction to Gitlab CICD GitLab CI/CD is a continuous integration (CI) and 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

How to test API load with k6 using GitHub Actions

Reading Time: 5 minutes Hi friends, As we are all familiar with CI/CD and it has taken a very crucial place in the software development industry. Along with our development code therefore it is very important to integrate our automated tests with CI/CD as well. But you may think that we already have Jenkins and other CICD tools available in the market so why do we use GITHUB action Continue Reading

Complete CI/CD Pipeline For MicroService Using Akka Http And BitBucket

Reading Time: 4 minutes In this blog, we will see how to set up a Bit-Bucket Pipeline to get CI/CD for your Akka HTTP Application. We will be deploying the application on the HEROKU server, but in this blog, we will also see how to dockerize the application and push the image on Docker Hub which further can be used to deploy on any container orchestration platform. Let’s get Continue Reading

CI/CD Overview and Jenkins Introduction

Reading Time: 3 minutes What is CI/CD The name CI/CD stands for continuous integration (CI) and continuous deployment (CD). At a high level, this process is responsible for managing the automation of building projects, testing them, and then deploying them to different servers either for testing purposes or production. The CI/CD pipeline typically falls under the responsibility of DevOps. Let us now concretize this idea by providing an example. Continue Reading

Manual Trigger In GitHub Actions

Reading Time: 4 minutes This blog will give you an idea of the different options in which we can implement manual trigger using GitHub Actions.In this we will have the answer of following question. Is there a way to trigger a workflow manually in GitHub Actions? There are different event by using which we can trigger the workflow like push, pull-request and many more. You can the detail information Continue Reading

CI/CD using GitHub Actions

Reading Time: 3 minutes GitHub Actions: How to create a pipeline using GitHub Actions? There are many other tools present for CI/CD like Jenkins, Circle CI, Teamcity, and many more. Here we are going to know about GitHub Actions, how to create a pipeline and what are the features of using GitHub Actions. So, Let’s start with the little bit of introduction on GitHub Actions. Introduction GitHub Actions help Continue Reading

Concourse CI CD pipeline

Reading Time: 4 minutes In this blog, we are going to set up a typical CI/CD pipeline using concourse to make the development process more agile and deployment more visible.

Databricks Deployment via Jenkins

Reading Time: 3 minutes In this blog, We will learn how do we create the Databricks Deployment pipelines to deploy databricks components(Notebooks, Libraries, Config files and packages) via a Jenkins.