-
Notifications
You must be signed in to change notification settings - Fork 1
/
Jenkinsfile
394 lines (385 loc) · 15 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
pipeline {
agent any
environment {
PROJECT_NAME = "buy01"
PROJECT_VERSION = ""
NEXUS_DOCKER_REPO = "161.35.24.93:8082/repository/buy02-docker-images"
NEXUS_DOCKER_LOGIN_CONN = "161.35.24.93:8082"
}
stages {
stage('Run Tests: User Service') {
agent {
label 'master'
}
steps {
dir('user-service') {
sh 'mvn test'
}
}
}
stage('Run Tests: Product Service') {
agent {
label 'master'
}
steps {
dir('product-service') {
sh 'mvn test'
}
}
}
stage('Run Tests: Media Service') {
agent {
label 'master'
}
steps {
dir('media-service') {
sh 'mvn test'
}
}
}
stage('Run Tests: Order Service') {
agent {
label 'master'
}
steps {
dir('order-service') {
sh 'mvn test'
}
}
}
stage('Run Tests: Angular') {
agent {
label 'master'
}
steps {
dir('angular') {
sh 'export CHROME_BIN=/usr/bin/google-chrome'
sh 'npm install'
sh 'ng test --watch=false --progress=false --browsers ChromeHeadless'
}
}
}
stage('User Service SonarQube Analysis & Quality Gate') {
steps {
script {
dir('user-service') {
withCredentials([string(credentialsId: 'sonarqube', variable: 'SONAR_AUTH_TOKEN')]) {
withSonarQubeEnv('peter droplet') {
sh 'mvn clean compile'
sh """
mvn sonar:sonar \
-Dsonar.projectKey=buy-01-user-service \
-Dsonar.host.url=http://64.226.78.45:9000 \
-Dsonar.token=$SONAR_AUTH_TOKEN
"""
}
}
timeout(time: 1, unit: 'HOURS') {
waitForQualityGate abortPipeline: true
}
}
}
}
}
stage('Product Service SonarQube Analysis & Quality Gate') {
steps {
script {
dir('product-service') {
withCredentials([string(credentialsId: 'sonarqube', variable: 'SONAR_AUTH_TOKEN')]) {
withSonarQubeEnv('peter droplet') {
sh 'mvn clean compile'
sh """
mvn sonar:sonar \
-Dsonar.projectKey=buy-01-product-service \
-Dsonar.host.url=http://64.226.78.45:9000 \
-Dsonar.token=$SONAR_AUTH_TOKEN
"""
}
}
timeout(time: 1, unit: 'HOURS') {
waitForQualityGate abortPipeline: true
}
}
}
}
}
stage('Media Service SonarQube Analysis & Quality Gate') {
steps {
script {
dir('media-service') {
withCredentials([string(credentialsId: 'sonarqube', variable: 'SONAR_AUTH_TOKEN')]) {
withSonarQubeEnv('peter droplet') {
sh 'mvn clean compile'
sh """
mvn sonar:sonar \
-Dsonar.projectKey=buy-01-media-service \
-Dsonar.host.url=http://64.226.78.45:9000 \
-Dsonar.token=$SONAR_AUTH_TOKEN
"""
}
}
}
timeout(time: 1, unit: 'HOURS') {
waitForQualityGate abortPipeline: true
}
}
}
}
stage('Order Service SonarQube Analysis & Quality Gate') {
steps {
script {
dir('order-service') {
withCredentials([string(credentialsId: 'sonarqube', variable: 'SONAR_AUTH_TOKEN')]) {
withSonarQubeEnv('peter droplet') {
sh 'mvn clean compile'
sh """
mvn sonar:sonar \
-Dsonar.projectKey=buy-01-order-service \
-Dsonar.host.url=http://64.226.78.45:9000 \
-Dsonar.token=$SONAR_AUTH_TOKEN
"""
}
}
}
timeout(time: 1, unit: 'HOURS') {
waitForQualityGate abortPipeline: true
}
}
}
}
stage('Angular SonarQube Analysis & Quality Gate') {
agent {
label 'master'
}
steps {
dir('angular') {
sh 'npm install'
sh 'ng test --watch=false --progress=false --karma-config=karma.conf.js --code-coverage'
withCredentials([string(credentialsId: 'sonarqube', variable: 'SONAR_AUTH_TOKEN')]) {
sh """
sonar-scanner -X \
-Dsonar.projectKey=buy-01-frontend \
-Dsonar.host.url=http://64.226.78.45:9000 \
-Dsonar.token=$SONAR_AUTH_TOKEN \
-Dsonar.javascript.lcov.reportPaths=coverage/lcov.info \
-Dsonar.testExecutionReportPaths=reports/test-report.xml
"""
}
timeout(time: 1, unit: 'HOURS') {
waitForQualityGate abortPipeline: true
}
}
}
}
stage('Extract Version') {
steps {
script {
PROJECT_VERSION = sh(script: "mvn help:evaluate -Dexpression=project.version -q -DforceStdout | sed -r 's/\\x1B\\[[0-9;]*[JKmsu]//g'", returnStdout: true).trim()
echo "Project Version: ${PROJECT_VERSION}"
}
}
}
stage('Deploy User Service to Nexus') {
agent {
label 'master'
}
steps {
dir('user-service') {
sh 'mvn clean deploy -Pprod'
}
}
}
stage('Deploy Product Service to Nexus') {
agent {
label 'master'
}
steps {
dir('product-service') {
sh 'mvn clean deploy'
}
}
}
stage('Deploy Media Service to Nexus') {
agent {
label 'master'
}
steps {
dir('media-service') {
sh 'mvn clean deploy'
}
}
}
stage('Deploy Order Service to Nexus') {
agent {
label 'master'
}
steps {
dir('order-service') {
sh 'mvn clean deploy'
}
}
}
stage('Deploy Frontend to Nexus') {
agent {
label 'master'
}
steps {
dir('angular') {
withCredentials([usernamePassword(credentialsId: 'nexus', usernameVariable: 'NEXUS_USERNAME', passwordVariable: 'NEXUS_PASSWORD')]) {
sh 'npm install'
sh 'npm publish'
}
}
}
}
stage('Login to Nexus Docker Repository') {
steps {
script {
withCredentials([usernamePassword(credentialsId: 'nexus', usernameVariable: 'NEXUS_USERNAME', passwordVariable: 'NEXUS_PASSWORD')]) {
sh "echo ${NEXUS_PASSWORD} | docker login ${NEXUS_DOCKER_LOGIN_CONN} -u ${NEXUS_USERNAME} --password-stdin"
}
}
}
}
stage('Build and Push Docker Images to Nexus') {
steps {
echo "Building and pushing user-service docker image"
withCredentials([usernamePassword(credentialsId: 'nexus', usernameVariable: 'NEXUS_USERNAME', passwordVariable: 'NEXUS_PASSWORD')]) {
sh "docker build -t ${NEXUS_DOCKER_REPO}/user-service:${PROJECT_VERSION} -f user-service/Dockerfile-user-nexus --build-arg VERSION=${PROJECT_VERSION} --build-arg NEXUS_USERNAME=${NEXUS_USERNAME} --build-arg NEXUS_PASSWORD=${NEXUS_PASSWORD} ."
}
sh "docker push ${NEXUS_DOCKER_REPO}/user-service:${PROJECT_VERSION}"
echo "Building and pushing product-service docker image"
withCredentials([usernamePassword(credentialsId: 'nexus', usernameVariable: 'NEXUS_USERNAME', passwordVariable: 'NEXUS_PASSWORD')]) {
sh "docker build -t ${NEXUS_DOCKER_REPO}/product-service:${PROJECT_VERSION} -f product-service/Dockerfile-product-nexus --build-arg VERSION=${PROJECT_VERSION} --build-arg NEXUS_USERNAME=${NEXUS_USERNAME} --build-arg NEXUS_PASSWORD=${NEXUS_PASSWORD} ."
}
sh "docker push ${NEXUS_DOCKER_REPO}/product-service:${PROJECT_VERSION}"
echo "Building and pushing media-service docker image"
withCredentials([usernamePassword(credentialsId: 'nexus', usernameVariable: 'NEXUS_USERNAME', passwordVariable: 'NEXUS_PASSWORD')]) {
sh "docker build -t ${NEXUS_DOCKER_REPO}/media-service:${PROJECT_VERSION} -f media-service/Dockerfile-media-nexus --build-arg VERSION=${PROJECT_VERSION} --build-arg NEXUS_USERNAME=${NEXUS_USERNAME} --build-arg NEXUS_PASSWORD=${NEXUS_PASSWORD} ."
}
sh "docker push ${NEXUS_DOCKER_REPO}/media-service:${PROJECT_VERSION}"
echo "Building and pushing order-service docker image"
withCredentials([usernamePassword(credentialsId: 'nexus', usernameVariable: 'NEXUS_USERNAME', passwordVariable: 'NEXUS_PASSWORD')]) {
sh "docker build -t ${NEXUS_DOCKER_REPO}/order-service:${PROJECT_VERSION} -f order-service/Dockerfile-order-nexus --build-arg VERSION=${PROJECT_VERSION} --build-arg NEXUS_USERNAME=${NEXUS_USERNAME} --build-arg NEXUS_PASSWORD=${NEXUS_PASSWORD} ."
}
sh "docker push ${NEXUS_DOCKER_REPO}/order-service:${PROJECT_VERSION}"
echo "Building and pushing frontend docker image"
dir('angular') {
withCredentials([usernamePassword(credentialsId: 'nexus', usernameVariable: 'NEXUS_USERNAME', passwordVariable: 'NEXUS_PASSWORD')]) {
sh "docker build -t ${NEXUS_DOCKER_REPO}/frontend:${PROJECT_VERSION} -f Dockerfile-frontend-nexus --build-arg VERSION=${PROJECT_VERSION} --build-arg NEXUS_USERNAME=${NEXUS_USERNAME} --build-arg NEXUS_PASSWORD=${NEXUS_PASSWORD} ."
}
sh "docker push ${NEXUS_DOCKER_REPO}/frontend:${PROJECT_VERSION}"
}
}
}
stage('Upload Docker Compose File to Nexus') {
steps {
script {
withCredentials([usernamePassword(credentialsId: 'nexus', usernameVariable: 'NEXUS_USERNAME', passwordVariable: 'NEXUS_PASSWORD')]) {
sh "curl -u ${NEXUS_USERNAME}:${NEXUS_PASSWORD} --upload-file ./docker-compose-nexus.yml http://161.35.24.93:8081/repository/buy02-raw/docker-compose/docker-compose-${PROJECT_VERSION}.yml"
}
}
}
}
stage('Deploy to Production') {
agent {
label 'deploy'
}
steps {
script {
withCredentials([usernamePassword(credentialsId: 'nexus', usernameVariable: 'NEXUS_USERNAME', passwordVariable: 'NEXUS_PASSWORD')]) {
sshagent(credentials: ['jenk to prod']) {
def file = "${env.HOME}/production/buy-01/docker-compose.yml"
def rollbackVersionFile = "${env.HOME}/production/rollback_version.txt"
// check if rollback version file exists and read it
def lastSuccessfulVersion = ''
if (fileExists(rollbackVersionFile)) {
lastSuccessfulVersion = readFile(rollbackVersionFile).trim()
}
try {
sh """
cd /home/peter/production/buy-01
docker login 161.35.24.93:8082 -u ${NEXUS_USERNAME} -p ${NEXUS_PASSWORD}
export PROJECT_VERSION=${PROJECT_VERSION}
if [ -f /home/production/buy-01/docker-compose.yml ]; then
docker-compose --env-file .env.prod down --remove-orphans --volumes
docker system prune -a -f
rm docker-compose.yml
fi
curl -u ${NEXUS_USERNAME}:${NEXUS_PASSWORD} -o /home/peter/production/buy-01/docker-compose.yml http://161.35.24.93:8081/repository/buy02-raw/docker-compose/docker-compose-${PROJECT_VERSION}.yml
docker-compose --env-file .env.prod up -d
"""
// health check
def services = ['buy-01_user-service_1', 'buy-01_product-service_1', 'buy-01_media-service_1', 'buy-01_order-service_1']
def maxWaitTime = 300 // maximum wait time in seconds
boolean allHealthy = false
int elapsedTime = 0
int checkInterval = 10 // seconds
while(!allHealthy && elapsedTime < maxWaitTime) {
allHealthy = true
for (service in services) {
def healthStatus = ''
try {
healthStatus = sh(script: "docker inspect --format='{{.State.Health.Status}}' ${service}", returnStdout: true).trim()
echo "Health status of ${service}: ${healthStatus}"
} catch (Exception e) {
echo "Error inspecting ${service}: ${e.message}"
allHealthy = false
break
}
if (healthStatus != 'healthy') {
allHealthy = false
break
}
}
if (!allHealthy) {
sleep(checkInterval)
elapsedTime += checkInterval
}
}
if (allHealthy) {
// update the rollback version file with the current version number
writeFile file: rollbackVersionFile, text: PROJECT_VERSION
} else {
error("Deployment failed. Rolling back to last successful version.")
}
} catch (Exception e) {
// rollback
if (lastSuccessfulVersion) {
echo "Rolling back to version: ${lastSuccessfulVersion}"
sh """
cd /home/peter/production/buy-01
docker-compose --env-file .env.prod down --remove-orphans --volumes
docker system prune -a -f
rm docker-compose.yml
curl -u ${NEXUS_USERNAME}:${NEXUS_PASSWORD} -o docker-compose.yml http://161.35.24.93:8081/repository/buy02-raw/docker-compose/docker-compose-${lastSuccessfulVersion}.yml
docker login 161.35.24.93:8082 -u ${NEXUS_USERNAME} -p ${NEXUS_PASSWORD}
docker-compose --env-file .env.prod up -d
"""
// mark the build as a failure on rollback
currentBuild.result = 'FAILURE'
error("Rollback to version ${lastSuccessfulVersion} was successful. Marking build as failure.")
} else {
currentBuild.result = 'FAILURE'
error("Rollback failed. No previous successful commit available.")
}
}
}
}
}
}
}
}
post {
success {
mail to: '[email protected],[email protected]',
subject: "Pipeline ${env.PROJECT_NAME} - Build # ${env.BUILD_NUMBER} - SUCCESS",
body: "The pipeline was a SUCCESS. Check console output at ${env.BUILD_URL} to view the results."
}
failure {
mail to: '[email protected],[email protected]',
subject: "Pipeline ${env.PROJECT_NAME} - Build # ${env.BUILD_NUMBER} - FAILURE",
body: "The pipeline was a FAILURE. Check console output at ${env.BUILD_URL} to view the results."
}
}
}