add Jenkinsfile

This commit is contained in:
Jim Minter 2016-11-08 10:51:55 +00:00
parent 69b359bdfc
commit 4344883eb6
2 changed files with 20 additions and 0 deletions

6
openshift/pipeline/Jenkinsfile vendored Normal file
View file

@ -0,0 +1,6 @@
node('nodejs') {
stage 'build'
openshiftBuild(buildConfig: 'nodejs-ex', showBuildLogs: 'true')
stage 'deploy'
openshiftDeploy(deploymentConfig: 'nodejs-ex')
}