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

Show "Run build steps in a container" from Kubernetes plugin

XMLWordPrintable

      Show "Run build steps in a container" from Kubernetes plugin

      stage('Run maven') {
        steps {
          sh 'set'
          sh 'test -f /usr/bin/mvn' // checking backwards compatibility
          sh "echo OUTSIDE_CONTAINER_ENV_VAR = ${CONTAINER_ENV_VAR}"
          container('maven') {
            sh 'echo INSIDE_CONTAINER_ENV_VAR = ${CONTAINER_ENV_VAR}'
            sh 'mvn -version'
          }
         }
      }

      Example: https://github.com/jenkinsci/kubernetes-plugin/blob/master/src/test/resources/org/csanchez/jenkins/plugins/kubernetes/pipeline/declarative.groovy

            Unassigned Unassigned
            edimarlnx Edimar Cardoso
            Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

              Created:
              Updated: