#90DaysOfDevOps - Day 34Working with different types of Services in Kubernetes We successfully created a pod on Day 31, and a Deployment on Day 32, we also saw the concept of namespaces and services on Day 33. Today, let's do a hands-on on services. What are Services in K8s...Sep 16, 2023·2 min read
#90DaysOfDevOps - Day 29Jenkins Important Interview Questions. Here are some Jenkins-specific questions that one can be asked during a DevOps Engineer interview: Questions What’s the difference between continuous integration, continuous delivery, and continuous deployment?...Aug 11, 2023·4 min read
#90DaysOfDevOps - Day 28Let's have a look at Jenkins' Agents. Jenkins Master (Server) Jenkins’s server or master node holds all key configurations. The Jenkins master server is like a control server that orchestrates all the workflow defined in the pipelines. For example, s...Aug 10, 2023·3 min read
#90DaysOfDevOps - Day 27Let's level up things and integrate Docker and Jenkins declarative pipeline. Use Docker Build and Run - docker build - you can use sh 'docker build . -t <tag>' in your pipeline stage block to run the docker build command. docker run: you can use sh '...Aug 9, 2023·2 min read
#90DaysOfDevOps - Day 26One of the most important parts of your DevOps and CICD journey is a Declarative Pipeline Syntax of Jenkins. So let's make a pipeline to Some terms for your knowledge - What is Pipeline? - A pipeline is a collection of steps or jobs interlinked in a ...Aug 9, 2023·2 min read
#90DaysOfDevOps - Day 25Catching up will be tough so take a small breather today and complete the Jenkins CI/CD project from Day 24. Today, let's add documentation to understand yesterday's task. Task 1: Documentation Document the process from cloning the repository to add...Aug 8, 2023·1 min read
#90DaysOfDevOps - Day 24Task 1: Using Jenkins and Docker with GitHub Webhooks Fork this repository: https://github.com/LondheShubham153/node-todo-cicd.git Create a connection to your Jenkins job and your GitHub Repository via GitHub Integration. To use the GitHub webhoo...Aug 7, 2023·2 min read