-
Notifications
You must be signed in to change notification settings - Fork 1
/
Jenkinsfile
27 lines (23 loc) · 916 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
node ('nimble-jenkins-slave') {
stage('Download Latest') {
git(url: 'https://github.com/nimble-platform/object-storage-service.git', branch: 'master')
}
stage ('Build docker image') {
sh 'mvn clean install'
sh 'docker build -t nimbleplatform/object-store:${BUILD_NUMBER} .'
}
stage ('Push docker image') {
withDockerRegistry([credentialsId: 'NimbleDocker']) {
sh 'docker push nimbleplatform/object-store:${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/object-store -c object-store'
}
}