gayatrish.hashnode.devDay 29 Task: Jenkins Important Interview QuestionsWhat’s the difference between continuous integration, continuous delivery, and continuous deployment? Continuous Integration (CI)→ Developers frequently merge code into the main branch.→ Every commit triggers an automatic build and test, so bugs ar...Jul 8, 2025·8 min read
gayatrish.hashnode.devDay 28 Task: Jenkins AgentsJenkins Master (Server) The Jenkins master server is the central control unit that manages the overall orchestration of workflows defined in pipelines. It handles tasks such as scheduling jobs, monitoring job status, and managing configurations. The ...Jul 7, 2025·4 min read
gayatrish.hashnode.devDay 27 Task: Jenkins Declarative Pipeline with DockerUse your Docker Build and Run Knowledge docker build - you can use sh 'docker build . -t <tag>' in your pipeline stage block to run the docker build command. (Make sure you have docker installed with correct permissions. docker run: you can use sh 'd...Jul 4, 2025·2 min read
gayatrish.hashnode.devDay 26 Task: Jenkins Declarative Pipeline🔹What is a Jenkins Pipeline? It is a set of steps or instructions that tell Jenkins what to do to: Build your project Test your project Deploy your project Everything happens automatically, step by step. Why use Pipeline? Automates work (no ma...Jul 4, 2025·2 min read
gayatrish.hashnode.devDay 25 Task: Complete Jenkins CI/CD Project - Continued with Documentation🔹Task 1 Document the entire process from cloning the repository to adding webhooks, deployment, and more. Create a detailed README file for your project. You can refer to this example for inspiration. A well-written README file will not only help ...Jul 3, 2025·1 min read