Devops-day-9: Create a Jenkins Pipeline Project using declarative pipeline syntax to print “Hello World
Tasks
Create a Jenkins Pipeline named “HelloWorld Example1”
Go to the Dashboard > Configure > Pipeline > Select Definition as “Pipeline Script” > And enter the following command.
pipeline {
agent any
stages {
stage('Hello') {
...
deepdivecloud.hashnode.dev2 min read