-
Notifications
You must be signed in to change notification settings - Fork 63
Expand file tree
/
Copy pathJenkinsfile
More file actions
508 lines (442 loc) · 15.3 KB
/
Copy pathJenkinsfile
File metadata and controls
508 lines (442 loc) · 15.3 KB
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
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
#!/usr/bin/env groovy
/**
* Fusion Electronics - Production CI/CD Pipeline
*
* This Jenkins pipeline implements:
* - Automated testing and quality gates
* - Blue-Green deployment strategy
* - Canary deployment strategy
* - Automated rollback capabilities
* - Production-ready monitoring and health checks
*
* @author Fusion Electronics DevOps Team
* @version 2.0.0
*/
pipeline {
agent any
options {
buildDiscarder(logRotator(numToKeepStr: '10'))
timestamps()
timeout(time: 60, unit: 'MINUTES')
disableConcurrentBuilds()
}
environment {
// Docker Configuration
DOCKER_REGISTRY = credentials('docker-registry-url')
DOCKER_CREDENTIALS = credentials('docker-credentials')
// Kubernetes Configuration
KUBECONFIG = credentials('kubeconfig')
K8S_NAMESPACE = 'fusion-ecommerce'
// Application Configuration
APP_NAME = 'fusion-electronics'
FRONTEND_IMAGE = "${DOCKER_REGISTRY}/${APP_NAME}-frontend"
BACKEND_IMAGE = "${DOCKER_REGISTRY}/${APP_NAME}-backend"
BUILD_TAG = "${env.BUILD_NUMBER}-${env.GIT_COMMIT.take(7)}"
// MongoDB Configuration
MONGO_URI = credentials('mongodb-uri')
// Vector DB Configuration
PINECONE_API_KEY = credentials('pinecone-api-key')
PINECONE_HOST = credentials('pinecone-host')
GOOGLE_AI_API_KEY = credentials('google-ai-api-key')
// Deployment Configuration
DEPLOYMENT_STRATEGY = "${params.DEPLOYMENT_STRATEGY ?: 'blue-green'}"
CANARY_PERCENTAGE = "${params.CANARY_PERCENTAGE ?: 10}"
// Health Check Configuration
HEALTH_CHECK_RETRIES = 30
HEALTH_CHECK_INTERVAL = 10
}
parameters {
choice(
name: 'DEPLOYMENT_STRATEGY',
choices: ['blue-green', 'canary', 'rolling'],
description: 'Select deployment strategy'
)
choice(
name: 'CANARY_PERCENTAGE',
choices: ['10', '25', '50', '75', '100'],
description: 'Canary traffic percentage (only for canary deployment)'
)
booleanParam(
name: 'RUN_SMOKE_TESTS',
defaultValue: true,
description: 'Run smoke tests after deployment'
)
booleanParam(
name: 'AUTO_PROMOTE',
defaultValue: false,
description: 'Automatically promote canary deployment without manual approval'
)
booleanParam(
name: 'SKIP_TESTS',
defaultValue: false,
description: 'Skip test execution (not recommended for production)'
)
}
stages {
stage('Initialize') {
steps {
script {
echo "========================================="
echo "Fusion Electronics Deployment Pipeline"
echo "========================================="
echo "Build Number: ${env.BUILD_NUMBER}"
echo "Git Commit: ${env.GIT_COMMIT}"
echo "Build Tag: ${BUILD_TAG}"
echo "Deployment Strategy: ${DEPLOYMENT_STRATEGY}"
echo "========================================="
// Clean workspace
cleanWs()
// Checkout code
checkout scm
// Set build description
currentBuild.description = "Deploy ${BUILD_TAG} (${DEPLOYMENT_STRATEGY})"
}
}
}
stage('Install Dependencies') {
parallel {
stage('Frontend Dependencies') {
steps {
script {
echo "Installing frontend dependencies..."
sh '''
npm ci --legacy-peer-deps
'''
}
}
}
stage('Backend Dependencies') {
steps {
script {
echo "Installing backend dependencies..."
sh '''
cd backend
npm ci
'''
}
}
}
}
}
stage('Code Quality & Security') {
parallel {
stage('Lint') {
steps {
script {
echo "Running linters..."
sh 'npm run lint'
}
}
}
stage('Security Scan') {
steps {
script {
echo "Running security vulnerability scan..."
sh '''
npm audit --audit-level=moderate || true
cd backend && npm audit --audit-level=moderate || true
'''
}
}
}
stage('Code Coverage Check') {
when {
expression { !params.SKIP_TESTS }
}
steps {
script {
echo "Checking code coverage requirements..."
sh '''
npm run test:coverage || true
cd backend && npm run test:coverage || true
'''
}
}
}
}
}
stage('Run Tests') {
when {
expression { !params.SKIP_TESTS }
}
parallel {
stage('Frontend Tests') {
steps {
script {
echo "Running frontend tests..."
sh 'npm test'
}
}
}
stage('Backend Tests') {
steps {
script {
echo "Running backend tests..."
sh 'cd backend && npm test'
}
}
}
stage('Integration Tests') {
steps {
script {
echo "Running integration tests..."
sh '''
# Run integration tests if they exist
if [ -d "tests/integration" ]; then
npm run test:integration || true
fi
'''
}
}
}
}
}
stage('Build Docker Images') {
parallel {
stage('Build Frontend Image') {
steps {
script {
echo "Building frontend Docker image..."
sh """
docker build \
-t ${FRONTEND_IMAGE}:${BUILD_TAG} \
-t ${FRONTEND_IMAGE}:latest \
-f Dockerfile.frontend \
.
"""
}
}
}
stage('Build Backend Image') {
steps {
script {
echo "Building backend Docker image..."
sh """
docker build \
-t ${BACKEND_IMAGE}:${BUILD_TAG} \
-t ${BACKEND_IMAGE}:latest \
-f Dockerfile.backend \
.
"""
}
}
}
}
}
stage('Push Docker Images') {
steps {
script {
echo "Pushing Docker images to registry..."
sh """
echo ${DOCKER_CREDENTIALS_PSW} | docker login ${DOCKER_REGISTRY} -u ${DOCKER_CREDENTIALS_USR} --password-stdin
docker push ${FRONTEND_IMAGE}:${BUILD_TAG}
docker push ${FRONTEND_IMAGE}:latest
docker push ${BACKEND_IMAGE}:${BUILD_TAG}
docker push ${BACKEND_IMAGE}:latest
"""
}
}
}
stage('Deploy') {
steps {
script {
echo "Executing ${DEPLOYMENT_STRATEGY} deployment..."
switch(DEPLOYMENT_STRATEGY) {
case 'blue-green':
blueGreenDeploy()
break
case 'canary':
canaryDeploy()
break
case 'rolling':
rollingDeploy()
break
default:
error("Unknown deployment strategy: ${DEPLOYMENT_STRATEGY}")
}
}
}
}
stage('Smoke Tests') {
when {
expression { params.RUN_SMOKE_TESTS }
}
steps {
script {
echo "Running smoke tests..."
sh '''
bash deployment/scripts/smoke-tests.sh
'''
}
}
}
stage('Performance Tests') {
when {
expression { params.RUN_SMOKE_TESTS && DEPLOYMENT_STRATEGY == 'canary' }
}
steps {
script {
echo "Running performance tests on canary deployment..."
sh '''
bash deployment/scripts/performance-tests.sh
'''
}
}
}
}
post {
success {
script {
echo "✅ Deployment completed successfully!"
// Send success notification
notifySuccess()
// Clean up old Docker images
cleanupDockerImages()
}
}
failure {
script {
echo "❌ Deployment failed!"
// Trigger automatic rollback
if (DEPLOYMENT_STRATEGY in ['blue-green', 'canary']) {
echo "Initiating automatic rollback..."
sh '''
bash deployment/scripts/rollback.sh
'''
}
// Send failure notification
notifyFailure()
}
}
always {
script {
// Archive test results
junit '**/test-results/**/*.xml' allowEmptyResults: true
// Archive logs
archiveArtifacts artifacts: '**/logs/**/*.log', allowEmptyArchive: true
// Clean workspace
cleanWs()
}
}
}
}
// ========================================
// Deployment Strategy Functions
// ========================================
def blueGreenDeploy() {
echo "Starting Blue-Green Deployment..."
stage('Deploy to Green Environment') {
sh """
export BUILD_TAG=${BUILD_TAG}
bash deployment/scripts/blue-green-deploy.sh deploy-green
"""
}
stage('Health Check - Green') {
sh """
bash deployment/scripts/health-check.sh green
"""
}
stage('Approval - Switch Traffic') {
timeout(time: 30, unit: 'MINUTES') {
input message: 'Switch traffic to Green environment?', ok: 'Deploy'
}
}
stage('Switch Traffic to Green') {
sh """
bash deployment/scripts/blue-green-deploy.sh switch-to-green
"""
}
stage('Verify Green Environment') {
sh """
bash deployment/scripts/health-check.sh green
"""
}
stage('Cleanup Blue Environment') {
timeout(time: 15, unit: 'MINUTES') {
input message: 'Cleanup old Blue environment?', ok: 'Cleanup'
}
sh """
bash deployment/scripts/blue-green-deploy.sh cleanup-blue
"""
}
}
def canaryDeploy() {
echo "Starting Canary Deployment (${CANARY_PERCENTAGE}% traffic)..."
stage('Deploy Canary') {
sh """
export BUILD_TAG=${BUILD_TAG}
export CANARY_PERCENTAGE=${CANARY_PERCENTAGE}
bash deployment/scripts/canary-deploy.sh deploy-canary
"""
}
stage('Health Check - Canary') {
sh """
bash deployment/scripts/health-check.sh canary
"""
}
stage('Monitor Canary') {
echo "Monitoring canary deployment for 5 minutes..."
sleep time: 5, unit: 'MINUTES'
sh """
bash deployment/scripts/monitor-canary.sh
"""
}
stage('Approval - Promote Canary') {
when {
expression { !params.AUTO_PROMOTE }
}
timeout(time: 30, unit: 'MINUTES') {
input message: "Promote canary to 100% traffic?", ok: 'Promote'
}
}
stage('Promote Canary') {
sh """
bash deployment/scripts/canary-deploy.sh promote-canary
"""
}
stage('Cleanup Old Deployment') {
sh """
bash deployment/scripts/canary-deploy.sh cleanup-old
"""
}
}
def rollingDeploy() {
echo "Starting Rolling Deployment..."
stage('Rolling Update') {
sh """
export BUILD_TAG=${BUILD_TAG}
kubectl set image deployment/${APP_NAME}-frontend \
frontend=${FRONTEND_IMAGE}:${BUILD_TAG} \
-n ${K8S_NAMESPACE}
kubectl set image deployment/${APP_NAME}-backend \
backend=${BACKEND_IMAGE}:${BUILD_TAG} \
-n ${K8S_NAMESPACE}
kubectl rollout status deployment/${APP_NAME}-frontend -n ${K8S_NAMESPACE}
kubectl rollout status deployment/${APP_NAME}-backend -n ${K8S_NAMESPACE}
"""
}
}
// ========================================
// Utility Functions
// ========================================
def notifySuccess() {
// Add notification logic (Slack, email, etc.)
echo "Sending success notification..."
}
def notifyFailure() {
// Add notification logic (Slack, email, etc.)
echo "Sending failure notification..."
}
def cleanupDockerImages() {
sh '''
# Remove old Docker images (keep last 5 builds)
docker images ${FRONTEND_IMAGE} --format "{{.Tag}}" | \
grep -v latest | \
tail -n +6 | \
xargs -I {} docker rmi ${FRONTEND_IMAGE}:{} || true
docker images ${BACKEND_IMAGE} --format "{{.Tag}}" | \
grep -v latest | \
tail -n +6 | \
xargs -I {} docker rmi ${BACKEND_IMAGE}:{} || true
'''
}