forked from rairprotocol/rair-dapp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Jenkinsfile
313 lines (301 loc) · 10.4 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
pipeline {
agent {
kubernetes {
label 'jenkins-agent'
yaml """
kind: Pod
spec:
containers:
- name: kubectl
image: joshendriks/alpine-k8s
command:
- /bin/cat
tty: true
- name: kaniko
image: gcr.io/kaniko-project/executor:v1.3.0-debug
command:
- /busybox/cat
tty: true
volumeMounts:
- name: kaniko-secret
mountPath: /kaniko/.docker
resources:
limits:
memory: 16Gi
requests:
memory: 8Gi
cpu: 4
restartPolicy: Never
volumes:
- name: kaniko-secret
secret:
secretName: regcred
items:
- key: .dockerconfigjson
path: config.json
"""
}
}
environment {
//DOCKERHUB_CREDENTIALS = credentials('rairtech-dockerhub')
VERSION = "${env.BUILD_ID}"
BRANCH = "${env.BRANCH_NAME}"
DEV_PROJECT_ID = 'rair-market-dev'
DEV_CLUSTER = 'primary'
DEV_LOCATION = 'us-west1-a'
CREDENTIALS_ID = 'rair-market-dev'
MAIN_PROJECT_ID = "rair-market-dev"
MAIN_CLUSTER = "staging"
MAIN_LOCATION = "southamerica-west1-a"
}
stages{
stage('Build and push rairnode') {
when {
not { branch 'dev'}
}
steps {
container(name: 'kaniko', shell: '/busybox/sh') {
withEnv(['PATH+EXTRA=/busybox']) {
sh '''#!/busybox/sh -xe
/kaniko/executor \
--dockerfile Dockerfile \
--context ./rairnode/ \
--verbosity debug \
--cleanup \
--destination rairtechinc/rairservernode:latest \
--destination rairtechinc/rairservernode:${GIT_COMMIT}
'''
}
}
}
}
stage('Build and push minting-marketplace') {
when {
not { branch 'dev'}
}
steps {
container(name: 'kaniko', shell: '/busybox/sh') {
withEnv(['PATH+EXTRA=/busybox']) {
sh '''#!/busybox/sh -xe
/kaniko/executor \
--dockerfile Dockerfile.prod \
--context ./minting-marketplace/ \
--verbosity debug \
--cleanup \
--destination rairtechinc/minting-network:latest \
--destination rairtechinc/minting-network:${GIT_COMMIT}
'''
}
}
}
}
stage('Build and push event-listener') {
when {
not { branch 'dev'}
}
steps {
container(name: 'kaniko', shell: '/busybox/sh') {
withEnv(['PATH+EXTRA=/busybox']) {
sh '''#!/busybox/sh -xe
/kaniko/executor \
--dockerfile Dockerfile \
--context ./blockchain-networks-service/ \
--verbosity debug \
--cleanup \
--destination rairtechinc/blockchain-event-listener:latest \
--destination rairtechinc/blockchain-event-listener:${GIT_COMMIT}
'''
}
}
}
}
stage('Build and push media-service') {
when {
not { branch 'dev'}
}
steps {
container(name: 'kaniko', shell: '/busybox/sh') {
withEnv(['PATH+EXTRA=/busybox']) {
sh '''#!/busybox/sh -xe
/kaniko/executor \
--dockerfile Dockerfile \
--context ./media-service/ \
--verbosity debug \
--destination rairtechinc/media-service:${GIT_COMMIT}
'''
}
}
}
}
stage('Build and push dev minting-marketplace') {
when { branch 'dev'}
steps {
container(name: 'kaniko', shell: '/busybox/sh') {
withEnv(['PATH+EXTRA=/busybox']) {
sh '''#!/busybox/sh -xe
/kaniko/executor \
--dockerfile Dockerfile.prod \
--context ./minting-marketplace/ \
--verbosity debug \
--cleanup \
--destination rairtechinc/minting-network:${GIT_COMMIT} \
--destination rairtechinc/minting-network:${GIT_BRANCH}.${BUILD_ID}
'''
}
}
}
}
//stage('Build and push dev minting-marketplace new-infra') {
// when { branch 'dev'}
// steps {
// container(name: 'kaniko', shell: '/busybox/sh') {
// withEnv(['PATH+EXTRA=/busybox']) {
// sh '''#!/busybox/sh -xe
// /kaniko/executor \
// --dockerfile Dockerfile.prod-new \
// --context ./minting-marketplace/ \
// --verbosity debug \
// --cleanup \
// --destination rairtechinc/minting-network:${GIT_COMMIT} \
// --destination rairtechinc/minting-network:${GIT_BRANCH}_2.${BUILD_ID}
// '''
// }
// }
// }
// }
stage('Build and push dev rairnode') {
when { branch 'dev'}
steps {
container(name: 'kaniko', shell: '/busybox/sh') {
withEnv(['PATH+EXTRA=/busybox']) {
sh '''#!/busybox/sh -xe
/kaniko/executor \
--dockerfile Dockerfile \
--context ./rairnode/ \
--verbosity debug \
--cleanup \
--destination rairtechinc/rairservernode:${GIT_COMMIT} \
--destination rairtechinc/rairservernode:${GIT_BRANCH}_2.${BUILD_ID}
'''
}
}
}
}
stage('Build and push dev event-listener') {
when { branch 'dev'}
steps {
container(name: 'kaniko', shell: '/busybox/sh') {
withEnv(['PATH+EXTRA=/busybox']) {
sh '''#!/busybox/sh -xe
/kaniko/executor \
--dockerfile Dockerfile.prod \
--context ./blockchain-networks-service/ \
--verbosity debug \
--cleanup \
--destination rairtechinc/blockchain-event-listener:${GIT_COMMIT} \
--destination rairtechinc/blockchain-event-listener:${GIT_BRANCH}_2.${BUILD_ID}
'''
}
}
}
}
stage('Build and push dev media-service') {
when { branch 'dev'}
steps {
container(name: 'kaniko', shell: '/busybox/sh') {
withEnv(['PATH+EXTRA=/busybox']) {
sh '''#!/busybox/sh -xe
/kaniko/executor \
--dockerfile Dockerfile \
--context ./media-service/ \
--verbosity debug \
--destination rairtechinc/media-service:${GIT_COMMIT} \
--destination rairtechinc/media-service:${GIT_BRANCH}_2.${BUILD_ID}
'''
}
}
}
}
stage('Build and push dev media-service new infra') {
when { branch 'dev'}
steps {
container(name: 'kaniko', shell: '/busybox/sh') {
withEnv(['PATH+EXTRA=/busybox']) {
sh '''#!/busybox/sh -xe
/kaniko/executor \
--dockerfile Dockerfile.prod \
--context ./media-service/ \
--verbosity debug \
--destination rairtechinc/media-service-new-infra:${GIT_COMMIT} \
--destination rairtechinc/media-service-new-infra:${GIT_BRANCH}_2.${BUILD_ID}
'''
}
}
}
}
stage('Jenkins Slack Notification') {
steps {
slackSend channel: '#jenkins-builds',
message: 'Branch ' + GIT_BRANCH + ' with build-id ' + GIT_COMMIT + ' has successfully built and pushed to docker ' + BUILD_URL
}
}
// stage('Deploy configmap to dev k8s environment'){
// when { branch 'dev' }
// steps {
// container('kubectl') {
// step([$class: 'KubernetesEngineBuilder',
// namespace: "default",
// projectId: env.DEV_PROJECT_ID,
// clusterName: env.DEV_CLUSTER,
// zone: env.DEV_LOCATION,
// manifestPattern: 'kubernetes-manifests/configmaps/environment/tf',
// credentialsId: env.CREDENTIALS_ID])
// }
// }
// }
// stage('Deploy k8s'){
// when { branch 'dev' }
// steps {
// container('kubectl') {
// sh("sed -i.bak 's#dev_latest#${GIT_COMMIT}#' ${env.WORKSPACE}/kubernetes-manifests/tf-manifest/*.yaml")
// step([$class: 'KubernetesEngineBuilder',
// namespace: "default",
// projectId: env.DEV_PROJECT_ID,
// clusterName: env.DEV_CLUSTER,
// zone: env.DEV_LOCATION,
// manifestPattern: 'kubernetes-manifests/tf-manifest',
// credentialsId: env.CREDENTIALS_ID,
// verifyDeployments: true])
// }
// }
// }
// stage('Deploy configmap to staging k8s environment'){
// when { branch 'main' }
// steps {
// container('kubectl') {
// step([$class: 'KubernetesEngineBuilder',
// namespace: "default",
// projectId: env.MAIN_PROJECT_ID,
// clusterName: env.MAIN_CLUSTER,
// zone: env.MAIN_LOCATION,
// manifestPattern: 'kubernetes-manifests/configmaps/environment/staging',
// credentialsId: env.CREDENTIALS_ID])
// }
// }
// }
// stage('Deploy to k8s staging'){
// when { branch 'main' }
// steps {
// sh("sed -i.bak 's#latest#${GIT_COMMIT}#' ${env.WORKSPACE}/kubernetes-manifests/staging-manifest/*.yaml")
// step([$class: 'KubernetesEngineBuilder',
// namespace: "default",
// projectId: env.MAIN_PROJECT_ID,
// clusterName: env.MAIN_CLUSTER, zone:
// env.MAIN_LOCATION,
// manifestPattern: 'kubernetes-manifests/staging-manifest',
// credentialsId: env.CREDENTIALS_ID,
// verifyDeployments: true])
// }
// }
}
}