Day 14 Task: Create a Linux & Git-GitHub Cheat Sheet

👋 Hey there! I'm Gayatri, I have completed a degree in Computer Engineering. I am extensively involved in the fields of DevOps and Cloud computing.
Search for a command to run...

👋 Hey there! I'm Gayatri, I have completed a degree in Computer Engineering. I am extensively involved in the fields of DevOps and Cloud computing.
No comments yet. Be the first to comment.
What’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...

Jenkins 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 ...

Use 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...

🔹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...

🔹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 ...
