Abhishek Yadavitabhishekyadav.hashnode.dev·May 1, 2023Day 30 Task: Kubernetes ArchitectureKubernetes Overview With the widespread adoption of containers among organizations, Kubernetes, the container-centric management software, has become a standard to deploy and operate containerized applications and is one of the most important parts o...122 readsDevops
Abhishek Yadavitabhishekyadav.hashnode.dev·Apr 24, 2023Day 29 Task: Jenkins Important interview Questions.Questions What’s the difference between continuous integration, continuous delivery, and continuous deployment? Benefits of CI/CD What is meant by CI-CD? What is Jenkins Pipeline? How do you configure the job in Jenkins? Where do you find error...135 readsDevops
Abhishek Yadavitabhishekyadav.hashnode.dev·Apr 24, 2023Day 28 Task: Jenkins AgentJenkins Master (Server) Jenkins’s server or master node holds all key configurations. Jenkins master server is like a control server that orchestrates all the workflow defined in the pipelines. For example, scheduling a job, monitoring the jobs, etc....76 readsDevops
Abhishek Yadavitabhishekyadav.hashnode.dev·Apr 22, 2023Day-27: Jenkins Declarative Pipeline with DockerDocker Build and Docker Run 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 'docker run -d...73 readsDevops
Abhishek Yadavitabhishekyadav.hashnode.dev·Apr 22, 2023Day 26 Task: Jenkins Declarative PipelineWhat is Pipeline - A pipeline is a collection of steps or jobs interlinked in a sequence. Declarative: Declarative is a more recent and advanced implementation of a pipeline as a code. Scripted: Scripted was the first and most traditional implementat...47 reads#day26
Abhishek Yadavitabhishekyadav.hashnode.dev·Apr 22, 2023Day 25 Task: Complete Jenkins CI/CD Project - ContinuedCI/CD in Jenkins refers to the practice of Continuous Integration and Continuous Delivery or Deployment using Jenkins, which is a popular open-source automation server used for building, testing, and deploying software applications. Continuous Integr...73 readsDevops
Abhishek Yadavitabhishekyadav.hashnode.dev·Apr 22, 2023Day 24 Task: Complete Jenkins CI/CD ProjectWhat is Github webhook and what is used? GitHub webhook is a feature that allows you to configure and automate events that occur in your GitHub repositories. A webhook is essentially an HTTP callback that occurs when something specific happens in you...49 readsday24