All checks were successful
dustin/jenkinskube/pipeline/head This commit looks good
21 lines
360 B
Groovy
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'
|
|
}
|
|
}
|
|
}
|
|
|
|
}
|