Jenkinsfile 411 B

123456789101112131415161718
  1. podTemplate(containers: [
  2. containerTemplate(
  3. name: 'jnlp',
  4. image: 'jenkins/inbound-agent:latest'
  5. )
  6. ]) {
  7. node(POD_LABEL) {
  8. stage('Get a Maven project') {
  9. container('jnlp') {
  10. stage('Say Hello') {
  11. sh '''
  12. echo "Hello! I am executing shell"
  13. '''
  14. }
  15. }
  16. }
  17. }
  18. }