44. Jenkins for Beginners: Pipeline as code - Input Parameters - Input From User

preview_player
Показать описание
Join this channel to get access to perks:

Рекомендации по теме
Комментарии
Автор

Hello Gaurav, I sincerely appreciate your efforts for your videos which you have uploaded on the channel, it's really helping me to learn the Devops tools from basics. If possible, can you make an video for Git and github concept it will be really helpful.

sweetyverma
Автор

Watching all u r video bro keep it up 👌👌👍

solankikishan
Автор

hi bro,
if two build are running parallely, and suppose previous build is in 3rd stage waiting for input and next build in 2nd stage waiting for input...Is there a condition to make the the build in 2nd stage to move to next only after the giving input to the previous 3rd stage moving to 4th...Please reply, im stuck in this scenerio..

yashwanths
Автор

Thanks for the videos bhai .Gaurav bhai Ping ki sound hata do . Kafi disturb hota hai .

khushwantsharma
Автор

If we are reading values from properties file and it’s added in pipeline then do we need to pass those credentials specifically in source file?

weloreena
Автор

Gaurav Bhai, Thanks for uploading new video Quality of voice little bit down

shailendragupta
Автор

Gaurav Bhai when i am creating sample pipeline to test input parameter from user getting different error

HTTP ERROR 403 No valid crumb was included in the request

STATUS: 403
MESSAGE: No valid crumb was included in the request
SERVLET: Stapler

Pipeline code is below here

pipeline {
agent any
stages {
stage('build') {
input {
message "Do you really want to Build up?"
ok "Yes we should"
}
steps {
echo "Building the project"
sh 'pwd;cal 2021;uname;whoami;who am i'
}
}
}
}

shailendragupta