Check out the code in the pipeline

This commit is contained in:
Ovidio Mallo 2016-12-07 23:21:17 +01:00
parent dc5be94d63
commit 7b5ac6db23

View file

@ -1,12 +1,11 @@
node() {
def ocCmd = "oc --token=`cat /var/run/secrets/kubernetes.io/serviceaccount/token` --server=https://openshift.default.svc.cluster.local --certificate-authority=/run/secrets/kubernetes.io/serviceaccount/ca.crt"
def buildConfigFile = "deployment/config/build.yaml"
def appConfigFile = "deployment/config/app.yaml"
def buildConfigFile = "ruby-ex/deployment/config/build.yaml"
def appConfigFile = "ruby-ex/deployment/config/app.yaml"
stage('Build') {
sh "pwd"
sh "ls"
git "https://github.com/omallo/ruby-ex.git"
sh "${ocCmd} process -f ${buildConfigFile} -n rubex-dev | ${ocCmd} apply -f - -n rubex-dev"
sh "${ocCmd} start-build frontend -w -n rubex-dev"
}