BMBhanu Mathurthiinbhanudevsr211230.hashnode.dev·Aug 14 · 2 min readAbout EC2what is EC2 and how to launch it? to launch an ec2 server, we need to know these 7 steps before moving onto ec2: step 1: Choose an Amazon Machine image (AMI) each ami contains AMI ID which is region s00
BMBhanu Mathurthiinbhanudevsr211230.hashnode.dev·Mar 13 · 4 min readMaster-Slave in JenkinsThis will be one of the most important concept in entire jenkins Why do we need to implement Master and Slave concept in simple words: Suppose if we create any job in jenkins dashboard, by default we 00
BMBhanu Mathurthiinbhanudevsr211230.hashnode.dev·Feb 25 · 4 min readApplication Deployment through Jenkinsstep by step execution process for CI/CD: Code (Developer writes the code on their local system) => GitHub (once the code is ready, they push it to the central repository) => CI/CD(with that code, nee00
BMBhanu Mathurthiinbhanudevsr211230.hashnode.dev·Feb 20 · 3 min readChapter-3: Scheduling Pipelines/Jobs in jenkinsCron: Cron is a syntax which is used to schedule a particular task, which means it will perfom all activities in that job. Cron Syntax: It has 5 starts * * * * * 1st star represents - no. of minutes 200
BMBhanu Mathurthiinbhanudevsr211230.hashnode.dev·Feb 18 · 3 min readWebhook integration with JenkinsJenkins Terminology: Job: Job is a task we are going to perform in jenkins. There are different types of jobs in jenkins: freestyle pipeline multibranch-pipeline, etc… Source Code Management here00