-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathJenkinsfile
36 lines (23 loc) · 930 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
29
30
31
32
33
34
35
36
node ('nimble-jenkins-slave') {
stage('Download Latest') {
git(url: 'https://github.com/nimble-platform/dcf_service.git', branch: env.BRANCH_NAME)
}
stage ('Build docker image') {
sh 'mvn clean install'
sh 'docker build -t nimbleplatform/dcf_service:${BUILD_NUMBER} .'
}
stage ('Push docker image') {
withDockerRegistry([credentialsId: 'NimbleDocker']) {
sh 'docker push nimbleplatform/dcf_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/dcf-service -c dcf-service'
}
}