This repository has been archived on 2023-11-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
jenkinskube/ci/Jenkinsfile
Dustin C. Hatch 40f1ef7ab2
All checks were successful
dustin/jenkinskube/pipeline/head This commit looks good
Add busybox container
2022-07-25 16:13:49 -05:00

21 lines
360 B
Groovy

// vim: set sw=4 ts=4 sts=4 et :
pipeline {
agent {
kubernetes {
yamlFile 'ci/podTemplate.yaml'
defaultContainer 'busybox'
}
}
stages {
stage('Stage 1') {
steps {
sh 'env'
sh 'touch "${BUILD_ID}".txt'
sh 'ls'
}
}
}
}