forked from siamaksade/openshift-jenkins-demo
-
Notifications
You must be signed in to change notification settings - Fork 1
/
cicd-template.yaml
761 lines (729 loc) · 20.4 KB
/
cicd-template.yaml
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
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
apiVersion: v1
kind: Template
labels:
template: cicd
group: cicd
metadata:
annotations:
description: Creates the CI/CD infrastructure with Jenkins, Gogs, Nexus and SonarQube
iconClass: icon-jenkins
tags: instant-app,jenkins,gogs,nexus,cicd
name: cicd
message: The CI/CD infrastructure composed of Jenkins, Gogs, Nexus Repository and SonarQube services has been created in your project. Jenkins username/password are admin/${JENKINS_PASSWORD} and Gogs username/password are gogs/${GOGS_PASSWORD}.
parameters:
- description: Password for the Gogs user.
displayName: Gogs Password
value: password
name: GOGS_PASSWORD
required: true
- displayName: DEV project name
value: dev
name: DEV_PROJECT
required: true
- displayName: STAGE project name
value: stage
name: STAGE_PROJECT
required: true
- displayName: Gogs version
value: "0.11.29"
name: GOGS_VERSION
required: true
- description: Password for Gogs Git Server PostgreSQL backend
displayName: Gogs' PostgreSQL Password
from: '[a-zA-Z0-9]{16}'
generate: expression
name: GOGS_POSTGRESQL_PASSWORD
required: true
- description: Webhook secret
from: '[a-zA-Z0-9]{8}'
generate: expression
name: WEBHOOK_SECRET
required: true
objects:
- apiVersion: v1
groupNames: null
kind: RoleBinding
metadata:
name: default_edit
roleRef:
name: edit
subjects:
- kind: ServiceAccount
name: default
# Pipeline
- apiVersion: v1
kind: BuildConfig
metadata:
annotations:
pipeline.alpha.openshift.io/uses: '[{"name": "jenkins", "namespace": "", "kind": "DeploymentConfig"}]'
labels:
app: cicd-pipeline
name: cicd-pipeline
name: tasks-pipeline
spec:
triggers:
- type: GitHub
github:
secret: ${WEBHOOK_SECRET}
- type: Generic
generic:
secret: ${WEBHOOK_SECRET}
runPolicy: Serial
source:
type: None
strategy:
jenkinsPipelineStrategy:
jenkinsfile: |-
node('mvn') {
// define commands
def mvnCmd = "mvn -s configuration/cicd-settings.xml"
stage ('Build') {
git branch: 'eap-7', url: 'http://gogs:3000/gogs/openshift-tasks.git'
sh "${mvnCmd} clean install -DskipTests=true"
}
stage ('Test') {
sh "${mvnCmd} test"
step([$class: 'JUnitResultArchiver', testResults: '**/target/surefire-reports/TEST-*.xml'])
}
stage ('Analysis (Security, Bugs, etc)') {
sh "${mvnCmd} site -DskipTests=true"
step([$class: 'CheckStylePublisher', unstableTotalAll:'300'])
step([$class: 'PmdPublisher', unstableTotalAll:'20'])
step([$class: 'FindBugsPublisher', pattern: '**/findbugsXml.xml', unstableTotalAll:'20'])
step([$class: 'JacocoPublisher'])
publishHTML (target: [keepAll: true, reportDir: 'target/site', reportFiles: 'project-info.html', reportName: "Site Report"])
}
stage ('Push to Nexus') {
sh "${mvnCmd} deploy -DskipTests=true"
}
stage ('Deploy DEV') {
sh "rm -rf oc-build && mkdir -p oc-build/deployments"
sh "cp target/openshift-tasks.war oc-build/deployments/ROOT.war"
// clean up. keep the image stream
sh "oc delete bc,dc,svc,route -l app=tasks -n ${DEV_PROJECT}"
// create build. override the exit code since it complains about exising imagestream
sh "oc new-build --name=tasks --image-stream=jboss-eap70-openshift:1.5 --binary=true --labels=app=tasks -n ${DEV_PROJECT} || true"
// build image
sh "oc start-build tasks --from-dir=oc-build --wait=true -n ${DEV_PROJECT}"
// deploy image
sh "oc new-app tasks:latest -n ${DEV_PROJECT}"
sh "oc expose svc/tasks -n ${DEV_PROJECT}"
}
stage ('Deploy STAGE') {
timeout(time:15, unit:'MINUTES') {
input message: "Promote to STAGE?", ok: "Promote"
}
def v = version()
// tag for stage
sh "oc tag ${DEV_PROJECT}/tasks:latest ${STAGE_PROJECT}/tasks:${v}"
// clean up. keep the imagestream
sh "oc delete bc,dc,svc,route -l app=tasks -n ${STAGE_PROJECT}"
// deploy stage image
sh "oc new-app tasks:${v} -n ${STAGE_PROJECT}"
sh "oc expose svc/tasks -n ${STAGE_PROJECT}"
}
}
def version() {
def matcher = readFile('pom.xml') =~ '<version>(.+)</version>'
matcher ? matcher[0][1] : null
}
type: JenkinsPipeline
- apiVersion: v1
kind: ConfigMap
metadata:
labels:
app: cicd-pipeline
role: jenkins-slave
name: jenkins-slaves
data:
maven-template: |-
<org.csanchez.jenkins.plugins.kubernetes.PodTemplate>
<inheritFrom></inheritFrom>
<name>mvn</name>
<privileged>false</privileged>
<alwaysPullImage>false</alwaysPullImage>
<instanceCap>2147483647</instanceCap>
<idleMinutes>0</idleMinutes>
<label>mvn</label>
<serviceAccount>jenkins</serviceAccount>
<nodeSelector></nodeSelector>
<customWorkspaceVolumeEnabled>false</customWorkspaceVolumeEnabled>
<workspaceVolume class="org.csanchez.jenkins.plugins.kubernetes.volumes.workspace.EmptyDirWorkspaceVolume">
<memory>false</memory>
</workspaceVolume>
<volumes />
<containers>
<org.csanchez.jenkins.plugins.kubernetes.ContainerTemplate>
<name>jnlp</name>
<image>registry.access.redhat.com/openshift3/jenkins-slave-maven-rhel7</image>
<privileged>false</privileged>
<alwaysPullImage>false</alwaysPullImage>
<workingDir>/tmp</workingDir>
<command></command>
<args>${computer.jnlpmac} ${computer.name}</args>
<ttyEnabled>false</ttyEnabled>
<resourceRequestCpu>200m</resourceRequestCpu>
<resourceRequestMemory>1Gi</resourceRequestMemory>
<resourceLimitCpu>1</resourceLimitCpu>
<resourceLimitMemory>4Gi</resourceLimitMemory>
<envVars/>
</org.csanchez.jenkins.plugins.kubernetes.ContainerTemplate>
</containers>
<envVars/>
<annotations/>
<imagePullSecrets/>
</org.csanchez.jenkins.plugins.kubernetes.PodTemplate>
# Sonatype Nexus
- apiVersion: v1
kind: Service
metadata:
annotations:
description: Sonatype Nexus repository manager's http port
labels:
app: nexus
name: nexus
spec:
ports:
- name: web
port: 8081
protocol: TCP
targetPort: 8081
selector:
app: nexus
deploymentconfig: nexus
sessionAffinity: None
type: ClusterIP
- apiVersion: v1
kind: Route
metadata:
labels:
app: nexus
name: nexus
spec:
port:
targetPort: web
to:
kind: Service
name: nexus
- apiVersion: v1
kind: ImageStream
metadata:
labels:
app: nexus
name: nexus
spec:
tags:
- annotations:
description: The Nexus Docker image
tags: nexus
from:
kind: DockerImage
name: openshiftdemos/nexus:2.13.0-01
importPolicy: {}
name: "2.13.0-01"
- apiVersion: v1
kind: DeploymentConfig
metadata:
labels:
app: nexus
name: nexus
spec:
replicas: 1
selector:
app: nexus
deploymentconfig: nexus
strategy:
type: Recreate
template:
metadata:
labels:
app: nexus
deploymentconfig: nexus
spec:
containers:
- image: ' '
imagePullPolicy: Always
name: nexus
ports:
- containerPort: 8081
protocol: TCP
livenessProbe:
failureThreshold: 5
initialDelaySeconds: 60
periodSeconds: 10
successThreshold: 1
httpGet:
port: 8081
path: /content/groups/public
timeoutSeconds: 5
readinessProbe:
failureThreshold: 5
initialDelaySeconds: 60
periodSeconds: 10
successThreshold: 1
httpGet:
port: 8081
path: /content/groups/public
timeoutSeconds: 5
resources:
requests:
memory: 512Mi
cpu: 200m
limits:
memory: 2Gi
cpu: 500m
terminationMessagePath: /dev/termination-log
volumeMounts:
- mountPath: /opt/nexus-work
name: nexus-data
dnsPolicy: ClusterFirst
restartPolicy: Always
terminationGracePeriodSeconds: 30
volumes:
- emptyDir: {}
name: nexus-data
triggers:
- type: ConfigChange
- imageChangeParams:
automatic: true
containerNames:
- nexus
from:
kind: ImageStreamTag
name: nexus:2.13.0-01
type: ImageChange
status: {}
# Gogs
- apiVersion: v1
kind: Service
metadata:
annotations:
description: The Gogs server's http port
labels:
app: gogs
name: gogs
spec:
ports:
- name: web
port: 3000
protocol: TCP
targetPort: 3000
selector:
app: gogs
deploymentconfig: gogs
sessionAffinity: None
type: ClusterIP
- apiVersion: v1
kind: Service
metadata:
creationTimestamp: null
name: postgresql-gogs
labels:
app: gogs
spec:
ports:
- name: postgresql
port: 5432
protocol: TCP
targetPort: 5432
selector:
app: gogs
deploymentconfig: postgresql-gogs
sessionAffinity: None
type: ClusterIP
- apiVersion: v1
kind: Route
metadata:
annotations:
description: Route for gogs's http service.
name: gogs
labels:
app: gogs
spec:
to:
kind: Service
name: gogs
- apiVersion: v1
kind: ImageStream
metadata:
name: gogs
labels:
app: gogs
spec:
tags:
- annotations:
description: The Gogs git server docker image
tags: gogs,go,golang
from:
kind: DockerImage
name: openshiftdemos/gogs:${GOGS_VERSION}
importPolicy: {}
name: ${GOGS_VERSION}
- apiVersion: v1
kind: DeploymentConfig
metadata:
labels:
app: gogs
name: gogs
spec:
replicas: 1
selector:
app: gogs
deploymentconfig: gogs
strategy:
type: Recreate
template:
metadata:
labels:
app: gogs
deploymentconfig: gogs
spec:
containers:
- image: " "
imagePullPolicy: Always
livenessProbe:
failureThreshold: 3
initialDelaySeconds: 15
periodSeconds: 10
successThreshold: 1
httpGet:
port: 3000
path: /
timeoutSeconds: 1
name: gogs
ports:
- containerPort: 3000
protocol: TCP
resources:
requests:
memory: 256Mi
cpu: 100m
limits:
memory: 512Mi
cpu: 200m
terminationMessagePath: /dev/termination-log
readinessProbe:
failureThreshold: 3
initialDelaySeconds: 15
periodSeconds: 10
successThreshold: 1
httpGet:
port: 3000
path: /
timeoutSeconds: 1
volumeMounts:
- name: gogs-data
mountPath: /opt/gogs/data
- name: gogs-config
mountPath: /etc/gogs/conf
- name: gogs-custom-config
mountPath: /opt/gogs/custom/conf
volumes:
- name: gogs-data
persistentVolumeClaim:
claimName: gogs-data
- name: gogs-config
persistentVolumeClaim:
claimName: gogs-config
- name: gogs-custom-config
configMap:
name: gogs-config
items:
- key: app.ini
path: app.ini
dnsPolicy: ClusterFirst
restartPolicy: Always
securityContext: {}
terminationGracePeriodSeconds: 30
triggers:
- type: ConfigChange
- imageChangeParams:
automatic: true
containerNames:
- gogs
from:
kind: ImageStreamTag
name: gogs:${GOGS_VERSION}
type: ImageChange
status: {}
- apiVersion: v1
kind: DeploymentConfig
metadata:
creationTimestamp: null
labels:
app: gogs
deploymentconfig: postgresql-gogs
name: postgresql-gogs
spec:
replicas: 1
selector:
app: gogs
deploymentconfig: postgresql-gogs
strategy:
recreateParams:
timeoutSeconds: 600
type: Recreate
template:
metadata:
labels:
app: gogs
deploymentconfig: postgresql-gogs
spec:
containers:
- env:
- name: POSTGRESQL_USER
value: gogs
- name: POSTGRESQL_PASSWORD
value: ${GOGS_POSTGRESQL_PASSWORD}
- name: POSTGRESQL_DATABASE
value: gogs
image: ' '
imagePullPolicy: IfNotPresent
livenessProbe:
failureThreshold: 3
initialDelaySeconds: 30
periodSeconds: 10
successThreshold: 1
tcpSocket:
port: 5432
timeoutSeconds: 1
name: postgresql
ports:
- containerPort: 5432
protocol: TCP
readinessProbe:
exec:
command:
- /bin/sh
- -i
- -c
- psql -h 127.0.0.1 -U $POSTGRESQL_USER -q -d $POSTGRESQL_DATABASE -c 'SELECT 1'
failureThreshold: 3
initialDelaySeconds: 5
periodSeconds: 10
successThreshold: 1
timeoutSeconds: 1
resources:
requests:
cpu: 100m
memory: 128Mi
limits:
cpu: 200m
memory: 256Mi
securityContext:
capabilities: {}
privileged: false
terminationMessagePath: /dev/termination-log
volumeMounts:
- mountPath: /var/lib/pgsql/data
name: postgresql-data
dnsPolicy: ClusterFirst
restartPolicy: Always
securityContext: {}
terminationGracePeriodSeconds: 30
volumes:
- name: postgresql-data
persistentVolumeClaim:
claimName: postgresql-gogs-data
triggers:
- imageChangeParams:
automatic: true
containerNames:
- postgresql
from:
kind: ImageStreamTag
name: postgresql:9.5
namespace: openshift
type: ImageChange
- type: ConfigChange
status: {}
- kind: PersistentVolumeClaim
apiVersion: v1
metadata:
name: gogs-data
labels:
app: gogs
spec:
accessModes:
- ReadWriteOnce
resources:
requests:
storage: 1Gi
- kind: PersistentVolumeClaim
apiVersion: v1
metadata:
name: gogs-config
labels:
app: gogs
spec:
accessModes:
- ReadWriteOnce
resources:
requests:
storage: 1Gi
- kind: PersistentVolumeClaim
apiVersion: v1
metadata:
name: postgresql-gogs-data
labels:
app: gogs
spec:
accessModes:
- ReadWriteOnce
resources:
requests:
storage: 1Gi
- apiVersion: v1
kind: Pod
metadata:
name: install-gogs
labels:
app: gogs
job: install-gogs
spec:
containers:
- name: oc
image: docker.io/openshiftdemos/oc
command: ["/bin/bash", "/tmp/installgogs.sh"]
volumeMounts:
- name: gogs-install
mountPath: /tmp/
resources:
limits:
memory: 128Mi
env:
- name: CICD_PROJECT
valueFrom:
fieldRef:
fieldPath: metadata.namespace
volumes:
- name: gogs-install
configMap:
name: gogs-install
items:
- key: installgogs.sh
path: installgogs.sh
restartPolicy: Never
- apiVersion: v1
kind: ConfigMap
metadata:
name: gogs-config
data:
app.ini: |
RUN_MODE = prod
RUN_USER = gogs
[security]
INSTALL_LOCK = false
[repository]
ROOT = /opt/gogs/data/repositories
[webhook]
SKIP_TLS_VERIFY = true
- apiVersion: v1
kind: ConfigMap
metadata:
name: gogs-install
data:
installgogs.sh: |
#!/bin/bash
set -x
# Use the oc client to get the url for the gogs and jenkins route and service
GOGSSVC=$(oc get svc gogs -o template --template='{{.spec.clusterIP}}')
GOGSROUTE=$(oc get route gogs -o template --template='{{.spec.host}}')
JENKINSSVC=$(oc get svc jenkins -o template --template='{{.spec.clusterIP}}')
# Use the oc client to get the postgres and jenkins variables into the current shell
eval $(oc env dc/postgresql-gogs --list | grep -v \#)
eval $(oc env dc/jenkins --list | grep -v \#)
# postgres has a readiness probe, so checking if there is at least one
# endpoint means postgres is alive and ready, so we can then attempt to install gogs
# we're willing to wait 60 seconds for it, otherwise something is wrong.
x=1
oc get ep postgresql-gogs -o yaml | grep "\- addresses:"
while [ ! $? -eq 0 ]
do
sleep 10
x=$(( $x + 1 ))
if [ $x -gt 100 ]
then
exit 255
fi
oc get ep postgresql-gogs -o yaml | grep "\- addresses:"
done
# now we wait for gogs to be ready in the same way
x=1
oc get ep gogs -o yaml | grep "\- addresses:"
while [ ! $? -eq 0 ]
do
sleep 10
x=$(( $x + 1 ))
if [ $x -gt 100 ]
then
exit 255
fi
oc get ep gogs -o yaml | grep "\- addresses:"
done
# we might catch the router before it's been updated, so wait just a touch
# more
sleep 10
RETURN=$(curl -o /dev/null -sL --post302 -w "%{http_code}" http://$GOGSSVC:3000/install \
--form db_type=PostgreSQL \
--form db_host=postgresql-gogs:5432 \
--form db_user=gogs \
--form db_passwd=$POSTGRESQL_PASSWORD \
--form db_name=gogs \
--form ssl_mode=disable \
--form db_path=data/gogs.db \
--form "app_name=Gogs: Go Git Service" \
--form repo_root_path=/opt/gogs/data/repositories \
--form run_user=gogs \
--form domain=localhost \
--form ssh_port=22 \
--form http_port=3000 \
--form app_url=http://${GOGSROUTE}/ \
--form log_root_path=/opt/gogs/log \
--form admin_name=gogs \
--form admin_passwd=${GOGS_PASSWORD} \
--form admin_confirm_passwd=${GOGS_PASSWORD} \
--form [email protected])
if [ $RETURN != "200" ] && [ $RETURN != "302" ]
then
echo "ERROR: Failed to initialize Gogs"
exit 255
fi
sleep 10
# import github repository
cat <<EOF > /tmp/data.json
{
"clone_addr": "https://github.com/OpenShiftDemos/openshift-tasks.git",
"uid": 1,
"repo_name": "openshift-tasks"
}
EOF
RETURN=$(curl -o /dev/null -sL -w "%{http_code}" -H "Content-Type: application/json" \
-u gogs:${GOGS_PASSWORD} -X POST http://$GOGSSVC:3000/api/v1/repos/migrate -d @/tmp/data.json)
if [ $RETURN != "201" ] && [ $RETURN != "200" ]
then
echo "ERROR: Failed to imported openshift-tasks GitHub repo"
exit 255
fi
sleep 5
# add webhook to Gogs to trigger pipeline on push
cat <<EOF > /tmp/data.json
{
"type": "gogs",
"config": {
"url": "https://openshift.default.svc.cluster.local/oapi/v1/namespaces/$CICD_PROJECT/buildconfigs/tasks-pipeline/webhooks/${WEBHOOK_SECRET}/generic",
"content_type": "json"
},
"events": [
"push"
],
"active": true
}
EOF
RETURN=$(curl -o /dev/null -sL -w "%{http_code}" -H "Content-Type: application/json" \
-u gogs:${GOGS_PASSWORD} -X POST http://$GOGSSVC:3000/api/v1/repos/gogs/openshift-tasks/hooks -d @/tmp/data.json)
if [ $RETURN != "201" ] && [ $RETURN != "200" ]
then
echo "ERROR: Failed to set webhook"
exit 255
fi