Day 81: Jenkins CI/CD Pipeline to Deploy a Web Application (Feb 15, 2024)
pipeline { agent { label 'dev-server' } stages { stage('code clone') { steps{ echo 'cloning' git url: "https://github.com/hassanb111/django-notes-app", branch: "main" } }...

Search for a command to run...
Articles tagged with #jenkins
pipeline { agent { label 'dev-server' } stages { stage('code clone') { steps{ echo 'cloning' git url: "https://github.com/hassanb111/django-notes-app", branch: "main" } }...

Phase 1: Initial Setup and Deployment Step 1: Launch EC2 (Ubuntu 22.04): Provision an EC2 instance on AWS with Ubuntu 22.04. Connect to the instance using SSH. Step 2: Clone the Code: Update all the packages and then clone the code. Clone your ...

Introduction: As DevOps practices continue to evolve, mastering Jenkins becomes increasingly crucial for DevOps engineers. In a Jenkins-centric interview, candidates are often assessed on their understanding of continuous integration, continuous deli...

Introduction: As we embark on the 28th day of the #90DaysOfDevOps Challenge, we delve into the realm of Jenkins agents—essential components that extend the capabilities of our Jenkins master server. In this blog post, we'll explore the significance o...

Introduction: As we continue our #90DaysOfDevOps Challenge, Day 27 introduces a powerful enhancement to our Jenkins Declarative Pipeline—integration with Docker. Dockerizing your applications simplifies deployment and ensures consistency across diffe...

Introduction: In the ever-evolving landscape of software development, the importance of streamlined Continuous Integration and Continuous Deployment (CICD) processes cannot be overstated. Jenkins, a widely used automation server, plays a pivotal role...
