-
Bug
-
Resolution: Unresolved
-
Major
-
Jenkins ver. 2.164.3
kubernetes plugin: 1.15.5
pipeline plugin: 2.6
Pipeline declarative plugin: 1.3.8
Here are the simple pipeline that I'm using
pipeline {
agent {
kubernetes {
label 'mypod'
}
}
stages {
stage('input') {
input {
message "Should we continue?"
}
steps {
echo "continued"
}
}
}
}
The issue was originally found in the usual declarative pipeline and it had been fixed eventually.
https://issues.jenkins-ci.org/browse/JENKINS-37515
https://issues.jenkins-ci.org/browse/JENKINS-48379
however, it is reproducing with the kubernete plugin now.
- relates to
-
JENKINS-48379 Input/parameters for Stages
-
- Closed
-
-
JENKINS-37515 RFE: input() blocks the executor in Declarative, add a stage attribute instead?
-
- Closed
-