Exciting DevOps Project: AWS EKS Cluster with CI/CD Pipeline for Spring PetClinic Application

In this blog, I’m thrilled to share the step-by-step demonstration of my latest DevOps project, showcasing the deployment of the Spring PetClinic Application using an automated CI/CD pipeline. This project integrates the power of AWS EKS, Jenkins, SonarQube, and Helm Charts to achieve seamless and efficient application deployment. Project Overview This project focuses on deploying … Read more

Git Rebase Simplified: Step-by-Step Guide for Clean and Linear Version Control History

What is Git Rebase? Rebasing in Git rewrites commit history. It does not merge two branches as merging does. Merging creates a merge commit. Rebasing moves the commits from one branch to the top of another branch’s HEAD. How Does Git Rebase Work? During a rebase, Git picks the changes from your branch and places … Read more