-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathJenkinsfile
69 lines (60 loc) · 2.11 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
pipeline {
agent any
stages {
stage('Prepare secret file') {
steps {
withCredentials([file(credentialsId: 'application-secret', variable: 'prodCredentials')]) {
script {
sh 'sudo cp $prodCredentials ./src/main/resources/application-secret.yml'
}
}
}
}
stage('Build Jar') {
steps {
echo "Running ${env.BUILD_ID} on ${env.JENKINS_URL}"
sh './gradlew clean build -x test'
}
}
stage('Dockerize') {
steps {
sh "sudo docker image build -t hf/backend:${env.BUILD_ID} ."
sh "sudo docker tag hf/backend:${env.BUILD_ID} rudeh1253/sample-hub:${env.BUILD_ID}"
}
}
stage('Docker Push') {
steps {
withCredentials([string(credentialsId: 'docker_hub_access_token', variable: 'dockerHubAccesstoken')]) {
sh "echo ${dockerHubAccesstoken} | sudo docker login --username rudeh1253 --password-stdin"
sh "sudo docker push rudeh1253/sample-hub:${env.BUILD_ID}"
}
}
}
stage('Deploy') {
steps {
withCredentials([file(credentialsId: 'node_credential', variable: 'nodeInfo'),
file(credentialsId: 'docker_shell_script', variable: 'deployShellFile')]) {
sh "sudo chown jenkins ${deployShellFile}"
sh "sudo chown jenkins ${nodeInfo}"
sh "sh ${deployShellFile} \$(cat ${nodeInfo}) ${env.BUILD_ID}"
}
}
}
stage('Health Check') {
steps {
echo "Health Check new deployment"
}
}
stage('Convert Blue or Green') {
steps {
echo "Convert traffic"
echo "Stop old version container"
}
}
stage('Clear') {
steps {
echo "Clear old images"
}
}
}
}