-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJenkinsfile
468 lines (429 loc) · 14.6 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
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
pipeline {
agent any
environment {
GOPROXY = 'https://goproxy.cn,direct'
}
tools {
go 'go'
}
stages {
stage('Clone') {
steps {
git(url: scm.userRemoteConfigs[0].url, branch: '$BRANCH_NAME', changelog: true, credentialsId: 'KK-github-key', poll: true)
}
}
stage('Prepare') {
steps {
sh 'rm -rf ./output/*'
sh 'make deps'
}
}
stage('Linting') {
when {
expression { BUILD_TARGET == 'true' }
}
steps {
sh 'make verify'
}
}
stage('Compile') {
when {
expression { BUILD_TARGET == 'true' }
}
steps {
sh(returnStdout: false, script: '''
make verify-build
'''.stripIndent())
}
}
stage('Switch to current cluster') {
when {
anyOf {
expression { BUILD_TARGET == 'true' }
expression { DEPLOY_TARGET == 'true' }
}
}
steps {
sh 'cd /etc/kubeasz; ./ezctl checkout $TARGET_ENV'
}
}
stage('Config target') {
when {
anyOf {
expression { BUILD_TARGET == 'true' }
expression { DEPLOY_TARGET == 'true' }
}
}
steps {
sh 'rm .apollo-base-config -rf'
sh 'git clone https://github.com/NpoolPlatform/apollo-base-config.git .apollo-base-config'
sh(returnStdout: false, script: '''
PASSWORD=`kubectl get secret --namespace "kube-system" mysql-password-secret -o jsonpath="{.data.rootpassword}" | base64 --decode`
kubectl exec --namespace kube-system mysql-0 -- mysql -h 127.0.0.1 -uroot -p$PASSWORD -P3306 -e "create database if not exists account_manager;"
username=`helm status rabbitmq --namespace kube-system | grep Username | awk -F ' : ' '{print $2}' | sed 's/"//g'`
for vhost in `cat cmd/*/*.viper.yaml | grep hostname | awk '{print $2}' | sed 's/"//g' | sed 's/\\./-/g'`; do
kubectl exec --namespace kube-system rabbitmq-0 -- rabbitmqctl add_vhost $vhost
kubectl exec --namespace kube-system rabbitmq-0 -- rabbitmqctl set_permissions -p $vhost $username ".*" ".*" ".*"
cd .apollo-base-config
./apollo-base-config.sh $APP_ID $TARGET_ENV $vhost
./apollo-item-config.sh $APP_ID $TARGET_ENV $vhost database_name account_manager
cd -
done
'''.stripIndent())
}
}
stage('Unit Tests') {
when {
expression { BUILD_TARGET == 'true' }
}
steps {
sh(returnStdout: false, script: '''
devboxpod=`kubectl get pods -A | grep development-box | head -n1 | awk '{print $2}'`
servicename="account-gateway"
kubectl exec --namespace kube-system $devboxpod -- make -C /tmp/$servicename after-test || true
kubectl exec --namespace kube-system $devboxpod -- rm -rf /tmp/$servicename || true
kubectl cp ./ kube-system/$devboxpod:/tmp/$servicename
kubectl exec --namespace kube-system $devboxpod -- make -C /tmp/$servicename deps before-test test after-test
kubectl exec --namespace kube-system $devboxpod -- rm -rf /tmp/$servicename
swaggeruipod=`kubectl get pods -A | grep swagger | awk '{print $2}'`
kubectl cp message/npool/*.swagger.json kube-system/$swaggeruipod:/usr/share/nginx/html || true
'''.stripIndent())
}
}
stage('Generate docker image for development') {
when {
expression { BUILD_TARGET == 'true' }
}
steps {
sh 'make verify-build'
sh 'DOCKER_REGISTRY=$DOCKER_REGISTRY make generate-docker-images'
}
}
stage('Tag patch') {
when {
expression { TAG_PATCH == 'true' }
}
steps {
sh(returnStdout: false, script: '''
set +e
revlist=`git rev-list --tags --max-count=1`
rc=$?
set -e
if [ 0 -eq $rc -a x"$revlist" != x ]; then
tag=`git describe --tags $revlist`
major=`echo $tag | awk -F '.' '{ print $1 }'`
minor=`echo $tag | awk -F '.' '{ print $2 }'`
patch=`echo $tag | awk -F '.' '{ print $3 }'`
case $TAG_FOR in
testing)
patch=$(( $patch + $patch % 2 + 1 ))
;;
production)
patch=$(( $patch + 1 ))
git reset --hard
git checkout $tag
;;
esac
tag=$major.$minor.$patch
else
tag=0.1.1
fi
git tag -a $tag -m "Bump version to $tag"
'''.stripIndent())
withCredentials([gitUsernamePassword(credentialsId: 'KK-github-key', gitToolName: 'git-tool')]) {
sh 'git push --tag'
}
}
}
stage('Tag minor') {
when {
expression { TAG_MINOR == 'true' }
}
steps {
sh(returnStdout: false, script: '''
set +e
revlist=`git rev-list --tags --max-count=1`
rc=$?
set -e
if [ 0 -eq $rc -a x"$revlist" != x ]; then
tag=`git describe --tags $revlist`
major=`echo $tag | awk -F '.' '{ print $1 }'`
minor=`echo $tag | awk -F '.' '{ print $2 }'`
patch=`echo $tag | awk -F '.' '{ print $3 }'`
minor=$(( $minor + 1 ))
patch=1
tag=$major.$minor.$patch
else
tag=0.1.1
fi
git tag -a $tag -m "Bump version to $tag"
'''.stripIndent())
withCredentials([gitUsernamePassword(credentialsId: 'KK-github-key', gitToolName: 'git-tool')]) {
sh 'git push --tag'
}
}
}
stage('Tag major') {
when {
expression { TAG_MAJOR == 'true' }
}
steps {
sh(returnStdout: false, script: '''
set +e
revlist=`git rev-list --tags --max-count=1`
rc=$?
set -e
if [ 0 -eq $rc -a x"$revlist" != x ]; then
tag=`git describe --tags $revlist`
major=`echo $tag | awk -F '.' '{ print $1 }'`
minor=`echo $tag | awk -F '.' '{ print $2 }'`
patch=`echo $tag | awk -F '.' '{ print $3 }'`
major=$(( $major + 1 ))
minor=0
patch=1
tag=$major.$minor.$patch
else
tag=0.1.1
fi
git tag -a $tag -m "Bump version to $tag"
'''.stripIndent())
withCredentials([gitUsernamePassword(credentialsId: 'KK-github-key', gitToolName: 'git-tool')]) {
sh 'git push --tag'
}
}
}
stage('Generate docker image for testing or production') {
when {
expression { BUILD_TARGET == 'true' }
}
steps {
sh(returnStdout: false, script: '''
set +e
revlist=`git rev-list --tags --max-count=1`
rc=$?
set -e
if [ 0 -eq $rc -a x"$revlist" != x ]; then
tag=`git describe --tags $revlist`
git reset --hard
git checkout $tag
fi
'''.stripIndent())
sh 'make verify-build'
sh 'DOCKER_REGISTRY=$DOCKER_REGISTRY make generate-docker-images'
}
}
stage('Release docker image for development') {
when {
expression { RELEASE_TARGET == 'true' }
}
steps {
sh(returnStdout: false, script: '''
branch=latest
if [ "x$BRANCH_NAME" != "xmaster" ]; then
branch=`echo $BRANCH_NAME | awk -F '/' '{ print $2 }'`
fi
set +e
docker images | grep account-gateway | grep $branch
rc=$?
set -e
if [ 0 -eq $rc ]; then
DOCKER_REGISTRY=$DOCKER_REGISTRY make release-docker-images
fi
images=`docker images | grep entropypool | grep account-gateway | grep none | awk '{ print $3 }'`
for image in $images; do
docker rmi $image -f
done
'''.stripIndent())
}
}
stage('Release docker image for testing') {
when {
expression { RELEASE_TARGET == 'true' }
}
steps {
sh(returnStdout: false, script: '''
set +e
revlist=`git rev-list --tags --max-count=1`
rc=$?
set -e
if [ 0 -eq $rc -a x"$revlist" != x ]; then
tag=`git tag --sort=-v:refname | grep [1\\|3\\|5\\|7\\|9]$ | head -n1`
set +e
docker images | grep account-gateway | grep $tag
rc=$?
set -e
if [ 0 -eq $rc ]; then
DOCKER_REGISTRY=$DOCKER_REGISTRY make release-docker-images
fi
fi
'''.stripIndent())
}
}
stage('Release docker image for production') {
when {
expression { RELEASE_TARGET == 'true' }
}
steps {
sh(returnStdout: false, script: '''
set +e
taglist=`git rev-list --tags`
rc=$?
set -e
if [ 0 -eq $rc -a x"$taglist" != x ]; then
tag=`git tag --sort=-v:refname | grep [0\\|2\\|4\\|6\\|8]$ | head -n1`
set +e
docker images | grep account-gateway | grep $tag
rc=$?
set -e
if [ 0 -eq $rc ]; then
DOCKER_REGISTRY=$DOCKER_REGISTRY make release-docker-images
fi
fi
'''.stripIndent())
}
}
stage('Deploy for development') {
when {
expression { DEPLOY_TARGET == 'true' }
expression { TARGET_ENV ==~ /.*development.*/ }
}
steps {
sh(returnStdout: false, script: '''
branch=latest
if [ "x$BRANCH_NAME" != "xmaster" ]; then
branch=`echo $BRANCH_NAME | awk -F '/' '{ print $2 }'`
fi
sed -i "s/account-gateway:latest/account-gateway:$branch/g" cmd/account-gateway/k8s/02-account-gateway.yaml
sed -i "s/uhub.service.ucloud.cn/$DOCKER_REGISTRY/g" cmd/account-gateway/k8s/02-account-gateway.yaml
if [ "x$REPLICAS_COUNT" == "x" ];then
REPLICAS_COUNT=2
fi
sed -i "s/replicas: 2/replicas: $REPLICAS_COUNT/g" cmd/account-gateway/k8s/02-account-gateway.yaml
make deploy-to-k8s-cluster
'''.stripIndent())
}
}
stage('Deploy for testing') {
when {
expression { DEPLOY_TARGET == 'true' }
expression { TARGET_ENV ==~ /.*testing.*/ }
}
steps {
sh(returnStdout: false, script: '''
set +e
revlist=`git rev-list --tags --max-count=1`
rc=$?
set -e
if [ ! 0 -eq $rc -o x"$revlist" == x]; then
exit 0
fi
tag=`git tag --sort=-v:refname | grep [1\\|3\\|5\\|7\\|9]$ | head -n1`
git reset --hard
git checkout $tag
sed -i "s/account-gateway:latest/account-gateway:$tag/g" cmd/account-gateway/k8s/02-account-gateway.yaml
sed -i "s/uhub.service.ucloud.cn/$DOCKER_REGISTRY/g" cmd/account-gateway/k8s/02-account-gateway.yaml
if [ "x$REPLICAS_COUNT" == "x" ];then
REPLICAS_COUNT=2
fi
sed -i "s/replicas: 2/replicas: $REPLICAS_COUNT/g" cmd/account-gateway/k8s/02-account-gateway.yaml
sed -i "s/imagePullPolicy: Always/imagePullPolicy: IfNotPresent/g" cmd/account-gateway/k8s/02-account-gateway.yaml
make deploy-to-k8s-cluster
'''.stripIndent())
}
}
stage('Deploy for production') {
when {
expression { DEPLOY_TARGET == 'true' }
expression { TARGET_ENV ==~ /.*production.*/ }
}
steps {
sh(returnStdout: false, script: '''
set +e
taglist=`git rev-list --tags`
rc=$?
set -e
if [ ! 0 -eq $rc -o x"$revlist" == x]; then
exit 0
fi
tag=`git tag --sort=-v:refname | grep [0\\|2\\|4\\|6\\|8]$ | head -n1`
git reset --hard
git checkout $tag
sed -i "s/account-gateway:latest/account-gateway:$tag/g" cmd/account-gateway/k8s/02-account-gateway.yaml
sed -i "s/uhub.service.ucloud.cn/$DOCKER_REGISTRY/g" cmd/account-gateway/k8s/02-account-gateway.yaml
if [ "x$REPLICAS_COUNT" == "x" ];then
REPLICAS_COUNT=2
fi
sed -i "s/replicas: 2/replicas: $REPLICAS_COUNT/g" cmd/account-gateway/k8s/02-account-gateway.yaml
sed -i "s/imagePullPolicy: Always/imagePullPolicy: IfNotPresent/g" cmd/account-gateway/k8s/02-account-gateway.yaml
make deploy-to-k8s-cluster
'''.stripIndent())
}
}
stage('Post') {
steps {
// Assemble vet and lint info.
// warnings parserConfigurations: [
// [pattern: 'govet.txt', parserName: 'Go Vet'],
// [pattern: 'golint.txt', parserName: 'Go Lint']
// ]
// sh 'go2xunit -fail -input gotest.txt -output gotest.xml'
// junit "gotest.xml"
sh 'echo Posting'
}
}
}
post('Report') {
fixed {
script {
sh(script: 'bash $JENKINS_HOME/wechat-templates/send_wxmsg.sh fixed')
}
script {
// env.ForEmailPlugin = env.WORKSPACE
emailext attachmentsPattern: 'TestResults\\*.trx',
body: '${FILE,path="$JENKINS_HOME/email-templates/success_email_tmp.html"}',
mimeType: 'text/html',
subject: currentBuild.currentResult + " : " + env.JOB_NAME,
to: '$DEFAULT_RECIPIENTS'
}
}
success {
script {
sh(script: 'bash $JENKINS_HOME/wechat-templates/send_wxmsg.sh successful')
}
script {
// env.ForEmailPlugin = env.WORKSPACE
emailext attachmentsPattern: 'TestResults\\*.trx',
body: '${FILE,path="$JENKINS_HOME/email-templates/success_email_tmp.html"}',
mimeType: 'text/html',
subject: currentBuild.currentResult + " : " + env.JOB_NAME,
to: '$DEFAULT_RECIPIENTS'
}
}
failure {
script {
sh(script: 'bash $JENKINS_HOME/wechat-templates/send_wxmsg.sh failure')
}
script {
// env.ForEmailPlugin = env.WORKSPACE
emailext attachmentsPattern: 'TestResults\\*.trx',
body: '${FILE,path="$JENKINS_HOME/email-templates/fail_email_tmp.html"}',
mimeType: 'text/html',
subject: currentBuild.currentResult + " : " + env.JOB_NAME,
to: '$DEFAULT_RECIPIENTS'
}
}
aborted {
script {
sh(script: 'bash $JENKINS_HOME/wechat-templates/send_wxmsg.sh aborted')
}
script {
// env.ForEmailPlugin = env.WORKSPACE
emailext attachmentsPattern: 'TestResults\\*.trx',
body: '${FILE,path="$JENKINS_HOME/email-templates/fail_email_tmp.html"}',
mimeType: 'text/html',
subject: currentBuild.currentResult + " : " + env.JOB_NAME,
to: '$DEFAULT_RECIPIENTS'
}
}
}
}