-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcicd-gogs-template.yaml
829 lines (817 loc) · 19.2 KB
/
cicd-gogs-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
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
apiVersion: v1
kind: Template
metadata:
name: cicd-gogs
labels:
template: cicd-gogs
group: cicd
metadata:
annotations:
description: Creates the CI/CD infrastructure with Jenins, Gogs, Nexus and SonarQube
iconClass: icon-jenkins
tags: instant-app,jenkins,gogs,nexus,cicd
name: cicd-gogs
parameters:
- description: Password for the Jenkins user.
displayName: Jenkins Password
generate: expression
name: JENKINS_PASSWORD
value: password
- description: Username for PostgreSQL backend
displayName: PostgreSQL User
from: user[A-Z0-9]{3}
generate: expression
name: POSTGRESQL_USER
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: Password for SonarQube Server PostgreSQL backend
displayName: SonarQube's PostgreSQL Password
from: '[a-zA-Z0-9]{16}'
generate: expression
name: SONAR_POSTGRESQL_PASSWORD
required: true
objects:
# Jenkins Master
- apiVersion: v1
kind: ImageStream
metadata:
labels:
app: jenkins
name: jenkins
- apiVersion: v1
kind: Service
metadata:
labels:
app: jenkins
name: jenkins
spec:
ports:
- name: web
port: 8080
protocol: TCP
targetPort: 8080
- name: jnlp
port: 50000
protocol: TCP
targetPort: 50000
selector:
app: jenkins
deploymentconfig: jenkins
sessionAffinity: None
type: ClusterIP
- apiVersion: v1
kind: Route
metadata:
labels:
app: jenkins
name: jenkins
spec:
port:
targetPort: 8080
to:
kind: Service
name: jenkins
- apiVersion: v1
kind: BuildConfig
metadata:
labels:
app: jenkins
name: jenkins
spec:
output:
to:
kind: ImageStreamTag
name: jenkins:latest
resources:
limits:
memory: 1Gi
source:
contextDir: jenkins-master
git:
uri: https://github.com/OpenShiftDemos/openshift-cd-demo.git
ref: openshift-3.2
secrets: []
type: Git
strategy:
sourceStrategy:
from:
kind: ImageStreamTag
name: jenkins:1
namespace: openshift
type: Source
triggers:
- type: ConfigChange
- imageChange: {}
type: ImageChange
status:
lastVersion: 0
- apiVersion: v1
kind: DeploymentConfig
metadata:
labels:
app: jenkins
name: jenkins
spec:
replicas: 1
selector:
app: jenkins
deploymentconfig: jenkins
strategy:
type: Recreate
template:
metadata:
labels:
app: jenkins
deploymentconfig: jenkins
spec:
containers:
- env:
- name: JENKINS_PASSWORD
value: ${JENKINS_PASSWORD}
image: " "
imagePullPolicy: Always
name: jenkins
ports:
- containerPort: 8080
protocol: TCP
- containerPort: 50000
protocol: TCP
resources: {}
terminationMessagePath: /dev/termination-log
volumeMounts:
- mountPath: /var/lib/jenkins
name: jenkins-data
dnsPolicy: ClusterFirst
restartPolicy: Always
securityContext: {}
terminationGracePeriodSeconds: 30
volumes:
- name: jenkins-data
emptyDir:
medium: ""
test: false
triggers:
- type: ConfigChange
- imageChangeParams:
automatic: true
containerNames:
- jenkins
from:
kind: ImageStreamTag
name: jenkins:latest
type: ImageChange
# Jenkins Slave
- apiVersion: v1
kind: ImageStream
metadata:
annotations:
slave-directory: /var/lib/jenkins
slave-label: jdk8
labels:
role: jenkins-slave
name: jdk-jenkins-slave
spec: {}
- apiVersion: v1
kind: BuildConfig
metadata:
annotations:
description: Builds Jenkins slave image with JDK
labels:
name: jdk-slave
name: jdk-jenkins-slave
spec:
output:
to:
kind: ImageStreamTag
name: jdk-jenkins-slave:latest
source:
contextDir: jenkins-slave
git:
uri: https://github.com/OpenShiftDemos/openshift-cd-demo.git
ref: openshift-3.2
type: Git
strategy:
dockerStrategy:
from:
kind: DockerImage
name: centos:7
type: Docker
triggers:
- type: ConfigChange
# 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
resources: {}
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
version: "latest"
from:
kind: DockerImage
name: openshiftdemos/gogs:latest
importPolicy: {}
name: "latest"
- 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: {}
terminationMessagePath: /dev/termination-log
readinessProbe:
failureThreshold: 3
initialDelaySeconds: 15
periodSeconds: 10
successThreshold: 1
httpGet:
port: 3000
path: /
timeoutSeconds: 1
dnsPolicy: ClusterFirst
restartPolicy: Always
securityContext: {}
terminationGracePeriodSeconds: 30
triggers:
- type: ConfigChange
- imageChangeParams:
automatic: true
containerNames:
- gogs
from:
kind: ImageStreamTag
name: gogs:latest
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
resources: {}
type: Recreate
template:
metadata:
labels:
app: gogs
deploymentconfig: postgresql-gogs
spec:
containers:
- env:
- name: POSTGRESQL_USER
value: ${POSTGRESQL_USER}
- name: POSTGRESQL_PASSWORD
value: ${GOGS_POSTGRESQL_PASSWORD}
- name: POSTGRESQL_DATABASE
value: gogs
image: registry.access.redhat.com/rhscl/postgresql-94-rhel7:latest
imagePullPolicy: IfNotPresent
livenessProbe:
failureThreshold: 3
initialDelaySeconds: 30
periodSeconds: 10
successThreshold: 1
tcpSocket:
port: 5432
timeoutSeconds: 1
name: postgresql-gogs
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:
limits:
memory: 512Mi
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:
- emptyDir: {}
name: postgresql-data
triggers:
- imageChangeParams:
containerNames:
- postgresql
from:
kind: ImageStreamTag
name: postgresql:latest
namespace: openshift
type: ImageChange
- type: ConfigChange
status: {}
# SonarQube
- apiVersion: v1
kind: Service
metadata:
creationTimestamp: null
name: postgresql-sonarqube
labels:
app: sonarqube
spec:
ports:
- name: postgresql
port: 5432
protocol: TCP
targetPort: 5432
selector:
app: sonarqube
deploymentconfig: postgresql-sonarqube
sessionAffinity: None
type: ClusterIP
- apiVersion: v1
kind: Service
metadata:
name: sonarqube
labels:
app: sonarqube
spec:
ports:
- name: sonarqube
port: 9000
protocol: TCP
targetPort: 9000
selector:
app: sonarqube
deploymentconfig: sonarqube
sessionAffinity: None
type: ClusterIP
- apiVersion: v1
kind: Route
metadata:
annotations:
description: Route for SonarQube's http service.
name: sonarqube
labels:
app: sonarqube
spec:
to:
kind: Service
name: sonarqube
- apiVersion: v1
kind: ImageStream
metadata:
labels:
app: sonarqube
name: sonarqube
spec:
tags:
- annotations:
description: The SonarQube Docker image
tags: sonarqube
version: "5.5"
from:
kind: DockerImage
name: openshiftdemos/sonarqube:5.5
importPolicy: {}
name: "5.5"
- apiVersion: v1
kind: DeploymentConfig
metadata:
labels:
app: sonarqube
deploymentconfig: postgresql-sonarqube
name: postgresql-sonarqube
spec:
replicas: 1
selector:
app: sonarqube
deploymentconfig: postgresql-sonarqube
strategy:
recreateParams:
timeoutSeconds: 600
resources: {}
type: Recreate
template:
metadata:
labels:
app: sonarqube
deploymentconfig: postgresql-sonarqube
spec:
containers:
- env:
- name: POSTGRESQL_USER
value: ${POSTGRESQL_USER}
- name: POSTGRESQL_PASSWORD
value: ${SONAR_POSTGRESQL_PASSWORD}
- name: POSTGRESQL_DATABASE
value: sonar
image: registry.access.redhat.com/rhscl/postgresql-94-rhel7:latest
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:
limits:
memory: 512Mi
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:
- emptyDir: {}
name: postgresql-data
test: false
triggers:
- imageChangeParams:
containerNames:
- postgresql
from:
kind: ImageStreamTag
name: postgresql:latest
namespace: openshift
type: ImageChange
- type: ConfigChange
status: {}
- apiVersion: v1
kind: DeploymentConfig
metadata:
labels:
app: sonarqube
deploymentconfig: sonarqube
name: sonarqube
spec:
replicas: 1
selector:
app: sonarqube
deploymentconfig: sonarqube
strategy:
resources: {}
rollingParams:
intervalSeconds: 1
maxSurge: 25%
maxUnavailable: 25%
timeoutSeconds: 600
updatePeriodSeconds: 1
type: Rolling
template:
metadata:
annotations:
openshift.io/container.sonarqube.image.entrypoint: '["./bin/run.sh"]'
creationTimestamp: null
labels:
app: sonarqube
deploymentconfig: sonarqube
spec:
containers:
- env:
- name: SONARQUBE_JDBC_PASSWORD
value: ${SONAR_POSTGRESQL_PASSWORD}
- name: SONARQUBE_JDBC_URL
value: jdbc:postgresql://postgresql-sonarqube/sonar
- name: SONARQUBE_JDBC_USERNAME
value: ${POSTGRESQL_USER}
image: " "
imagePullPolicy: IfNotPresent
name: sonarqube
ports:
- containerPort: 9000
protocol: TCP
resources: {}
terminationMessagePath: /dev/termination-log
dnsPolicy: ClusterFirst
restartPolicy: Always
securityContext: {}
terminationGracePeriodSeconds: 30
test: false
triggers:
- type: ConfigChange
- imageChangeParams:
automatic: true
containerNames:
- sonarqube
from:
kind: ImageStreamTag
name: sonarqube:5.5
type: ImageChange
status: {}
- 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: script-volume
mountPath: /tmp/
volumes:
- name: script-volume
configMap:
name: gogs-install
items:
- key: installgogs.sh
path: installgogs.sh
restartPolicy: Never
- 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 route and service
GOGSSVC=$(oc get svc gogs -o template --template='{{.spec.clusterIP}}')
GOGSROUTE=$(oc get route gogs -o template --template='{{.spec.host}}')
# Use the oc client to get the postgres variables into the current shell"
eval $(oc env dc/postgresql-gogs --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 5
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 5
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 -w "%{http_code}" http://$GOGSSVC:3000/install \
--form db_type=PostgreSQL \
--form db_host=postgresql-gogs:5432 \
--form db_user=$POSTGRESQL_USER \
--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=/home/gogs/gogs-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)
if [ $RETURN != "200" ]
then
exit 255
fi