-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathJenkinsfile
28 lines (24 loc) · 967 Bytes
/
Jenkinsfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
node ('nimble-jenkins-slave') {
stage('Download Latest') {
git(url: 'https://github.com/nimble-platform/dashboards-service.git', branch: 'master')
}
stage ('Build docker image') {
sh 'mvn -Dmaven.test.skip=true clean install'
sh 'docker build -t nimbleplatform/dashboards-service:${BUILD_NUMBER} .'
sh 'sleep 5'
}
stage ('Push docker image') {
withDockerRegistry([credentialsId: 'NimbleDocker']) {
sh 'docker push nimbleplatform/dashboards-service:${BUILD_NUMBER}'
}
}
stage ('Deploy') {
sh ''' sed -i 's/IMAGE_TAG/'"$BUILD_NUMBER"'/g' kubernetes/deploy.yaml '''
sh 'kubectl apply -f kubernetes/deploy.yaml -n prod --validate=false'
sh 'kubectl apply -f kubernetes/svc.yaml -n prod --validate=false'
}
stage ('Print-deploy logs') {
sh 'sleep 60'
sh 'kubectl -n prod logs deploy/dashboards-service -c dashboards-service'
}
}