Uploaded image for project: 'Jenkins'
  1. Jenkins
  2. JENKINS-57871

Input directive is blocking executor in declarative pipeline

XMLWordPrintable

      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.

            Unassigned Unassigned
            jubel jubel han
            Votes:
            1 Vote for this issue
            Watchers:
            3 Start watching this issue

              Created:
              Updated: