-
Notifications
You must be signed in to change notification settings - Fork 7
/
library.yaml
522 lines (503 loc) · 13.7 KB
/
library.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
apiVersion: argoproj.io/v1alpha1
kind: ClusterWorkflowTemplate
metadata:
name: library
spec:
volumeClaimTemplates:
- metadata:
name: work
spec:
accessModes: ["ReadWriteOnce"]
resources:
requests:
storage: 64Mi
templates:
- name: clone
inputs:
parameters:
- name: repo
- name: branch
- name: pr
volumes:
- name: git-secret
secret:
defaultMode: 0400
secretName: gitlab-secret
container:
volumeMounts:
- mountPath: /work
name: work
- mountPath: /root/.ssh/
name: git-secret
image: 10.121.218.184:30002/ghcr.io/linuxsuren/gogit:v0.0.7
workingDir: /work
args:
- checkout
- --url
- "{{inputs.parameters.repo}}"
- --branch
- "{{=sprig.trimPrefix('refs/heads/', inputs.parameters['branch'])}}"
- --pr
- "{{inputs.parameters.pr}}"
- --version-output
- /work/version
- --version-trim-prefix
- release-
outputs:
parameters:
- name: version
valueFrom:
path: /work/version
activeDeadlineSeconds: 1800
- name: code-check
container:
image: 10.121.218.184:30002/cache/library/golang:1.20
volumeMounts:
- name: work
mountPath: /work
workingDir: /work
env:
- name: GOPROXY
value: https://goproxy.cn,direct
#value: http://goproxy.goproxy.svc:8081,direct
- name: GOSUMDB
value: gosum.io+ce6e7565+AY5qEHUk/qmHc5btzW45JVoENfazw8LielDsaI+lEbq6
command:
- make
args:
- generate
- manifests
- vet
- fmt
activeDeadlineSeconds: 1800
- name: git-diff
container:
volumeMounts:
- mountPath: /work
name: work
image: alpine/git:v2.26.2
workingDir: /work
args:
- diff
- --exit-code
- name: go-test
container:
image: 10.121.218.184:30002/cache/library/golang:1.20
volumeMounts:
- name: work
mountPath: /work
workingDir: /work
env:
- name: GOPROXY
value: https://goproxy.cn,direct
# value: http://goproxy.goproxy.svc:8081,direct
- name: GOSUMDB
value: gosum.io+ce6e7565+AY5qEHUk/qmHc5btzW45JVoENfazw8LielDsaI+lEbq6
command:
- go
- test
- ./...
- -coverprofile=coverage.out
activeDeadlineSeconds: 1800
- name: maven
inputs:
parameters:
- name: target
default: "package"
- name: basedir
default: "."
container:
image: 10.121.218.184:30002/cache/library/maven:3.8.7-openjdk-18
args:
- mvn
- "{{inputs.parameters.target}}"
- -f
- "{{inputs.parameters.basedir}}/pom.xml"
workingDir: /work
volumeMounts:
- name: work
mountPath: /work
- name: scan
inputs:
parameters:
- name: projectKey
- name: basedir
default: "."
container:
image: 10.121.218.184:30002/cache/sonarsource/sonar-scanner-cli:4.8.0
args:
- -Dsonar.projectBaseDir=/work/{{inputs.parameters.basedir}}
- -Dsonar.projectKey={{inputs.parameters.projectKey}}
- -Dsonar.go.coverage.reportPaths=coverage.out
- -Dsonar.java.binaries=/work/{{inputs.parameters.basedir}}/target/classes/
env:
- name: SONAR_HOST_URL
value: http://10.121.218.184:30008/
- name: SONAR_TOKEN
value: sqa_15cdc7a6ef5dabdae005baadd2d15f8689b3932e
volumeMounts:
- name: work
mountPath: /work
- name: npm
inputs:
parameters:
- name: command
default: "install"
container:
image: 10.121.218.184:30002/cache/library/node:19-alpine3.16
args:
- npm
- "{{inputs.parameters.command}}"
- --registry=https://registry.npmmirror.com
workingDir: /work
volumeMounts:
- name: work
mountPath: /work
- name: npm-run
inputs:
parameters:
- name: command
default: "build"
container:
image: 10.121.218.184:30002/cache/library/node:19-alpine3.16
args:
- npm
- run
- "{{inputs.parameters.command}}"
workingDir: /work
volumeMounts:
- name: work
mountPath: /work
- name: report-in-comment
inputs:
parameters:
- name: message
- name: identity
default: "Message report."
volumes:
- name: git-secret
secret:
defaultMode: 0400
secretName: gitlab-secret
container:
volumeMounts:
- mountPath: /work
name: work
- mountPath: /root/.ssh/
name: git-secret
image: 10.121.218.184:30002/ghcr.io/linuxsuren/gogit:v0.0.5
workingDir: /work
args:
- comment
- --provider=gitlab
- --server=http://10.121.218.82:6080/
- --token=h-zez9CWzyzykbLoS53s
- --username=zhaoxiaojie
- --owner={{workflow.parameters.owner}}
- --repo={{workflow.parameters.repo}}
- --pr={{workflow.parameters.pr}}
- -m="{{inputs.parameters.message}}"
- --identity={{inputs.parameters.identity}}
activeDeadlineSeconds: 1800
- name: image
inputs:
parameters:
- name: image
- name: dockerfile
- name: tag
default: master
outputs:
parameters:
- name: image
value: 10.121.218.184:30002/{{inputs.parameters.image}}
volumes:
- name: docker-config
secret:
secretName: harbor
- name: cache
hostPath:
path: /mnt/data
type: DirectoryOrCreate
- name: buildkit
configMap:
name: buildkit
retryStrategy:
limit: "6"
retryPolicy: OnFailure
container:
image: 10.121.218.184:30002/cache/moby/buildkit:v0.11.6-rootless
volumeMounts:
- name: work
mountPath: /work
- name: docker-config
mountPath: /.docker
- name: cache
mountPath: /cache
- mountPath: /etc/buildkit/
name: buildkit
workingDir: /work/
securityContext:
privileged: true
seccompProfile:
type: Unconfined
env:
- name: BUILDKITD_FLAGS
value: --oci-worker-no-process-sandbox --config=/etc/buildkit/buildkitd.toml
- name: DOCKER_CONFIG
value: /.docker
command:
- buildctl-daemonless.sh
args:
- build
- --frontend
- dockerfile.v0
- --local
- context=.
- --local
- dockerfile={{inputs.parameters.dockerfile}}
- --output
- type=image,name=10.121.218.184:30002/{{inputs.parameters.image}},push=true,registry.insecure=true
- --opt
- build-arg:GOPROXY=https://goproxy.cn,direct
- --opt
- build-arg:TAG={{inputs.parameters.tag}}
# - build-arg:GOPROXY=http://goproxy.goproxy.svc:8081,direct
# - --export-cache
# - type=registry,ref=10.121.218.184:30002/al-cloud/test:buildcache
# - --import-cache
# - type=registry,ref=10.121.218.184:30002/al-cloud/test:buildcache
- name: kaniko
inputs:
parameters:
- name: image
- name: dockerfile
- name: tag
default: master
- name: server
default: '172.11.0.9:30002'
- name: dpkVersion
default: DPDK_VERSION
- name: repo
default: ''
- name: buildArgRegistry
default: ''
outputs:
parameters:
- name: image
value: "{{inputs.parameters.server}}/{{inputs.parameters.image}}"
volumes:
- name: docker-config
secret:
secretName: harbor
- name: cache
hostPath:
path: /mnt/data
type: DirectoryOrCreate
- name: buildkit
configMap:
name: buildkit
retryStrategy:
limit: "6"
retryPolicy: OnFailure
activeDeadlineSeconds: 2400
container:
# oringal image is gcr.io/kaniko-project/executor:latest
image: docker.io/surenpi/kaniko-project-executor:latest
imagePullPolicy: IfNotPresent
volumeMounts:
- name: work
mountPath: /work
- name: docker-config
mountPath: /.docker
- name: cache
mountPath: /cache
workingDir: /work/
env:
- name: DOCKER_CONFIG
value: /.docker
command:
- /kaniko/executor
args:
- --dockerfile={{inputs.parameters.dockerfile}}
- --context=dir://.
- --destination={{inputs.parameters.server}}/{{inputs.parameters.image}}
- --cache-repo={{inputs.parameters.server}}/library/cache
- --insecure
- --insecure-pull
- --insecure-registry={{inputs.parameters.server}}
- --skip-tls-verify
- --skip-tls-verify-pull
- --skip-tls-verify-registry={{inputs.parameters.server}}
- --registry-map=index.docker.io=172.11.0.9:30546
- --registry-map=ghcr.io=172.11.0.9:30846
- --skip-push-permission-check
- --cache=true
- --build-arg
- DPDK_VERSION={{inputs.parameters.dpkVersion}}
- --build-arg
- REPO={{inputs.parameters.repo}}
- --build-arg
- GOPROXY=https://goproxy.cn,direct
- --build-arg
- REGISTRY={{inputs.parameters.buildArgRegistry}}
- name: status
inputs:
parameters:
- name: commentIdentity
default: "AILink workflow status report."
plugin:
gogit-executor-plugin:
owner: "{{workflow.parameters.owner}}"
repo: "{{workflow.parameters.repo}}"
pr: "{{workflow.parameters.pr}}"
status: "{{workflow.status}}"
commentIdentity: "{{inputs.parameters.commentIdentity}}"
- name: api-test-status
plugin:
api-test-executor-plugin:
owner: "{{workflow.parameters.owner}}"
repo: "{{workflow.parameters.repo}}"
pr: "{{workflow.parameters.pr}}"
status: "{{workflow.status}}"
- name: dingding
inputs:
parameters:
- name: url
default: "https://oapi.dingtalk.com/robot/send?access_token=95fe489e3eaf64969c7f38c6bcf51f07f1dc38f2d460b550d8afef1cf6aec73b"
- name: message
http:
timeoutSeconds: 20 # Default 30
url: "{{inputs.parameters.url}}"
method: "POST"
headers:
- name: "Content-Type"
value: "application/json"
successCondition: "response.statusCode == 200"
body: |
{"msgtype": "text","text": {"content":"workflow status: {{inputs.parameters.message}}"}}
- name: atomic
plugin:
argo-atomic-plugin: {}
- name: kustomize
inputs:
parameters:
- name: image
default: ":a"
- name: extra-image
default: ":b"
dag:
tasks:
- name: kustomize-set
template: kustomize-set
arguments:
parameters:
- name: image
value: "{{inputs.parameters.image}}"
- name: extra-image
value: "{{inputs.parameters.extra-image}}"
# - name: kustomize-build
# depends: kustomize-set
# template: kustomize-build
- name: kustomize-set
inputs:
parameters:
- name: image
default: ":a"
- name: extra-image
default: ":b"
container:
image: 10.121.218.184:30002/cache/traherom/kustomize-docker:2.0.0
args:
- kustomize
- edit
- set
- image
- "{{inputs.parameters.image}}"
- "{{inputs.parameters.extra-image}}"
workingDir: /work/config/default
volumeMounts:
- name: work
mountPath: /work
- name: kustomize-build
inputs:
parameters:
- name: path
default: "config/default"
outputs:
artifacts:
- name: install
path: /work/test.yaml
container:
image: traherom/kustomize-docker:2.0.0
args:
- kustomize
- build
- "{{inputs.parameters.path}}"
- -o=test.yaml
workingDir: /work
volumeMounts:
- name: work
mountPath: /work
- name: mc
inputs:
parameters:
- name: source
default: "config/default"
- name: target
default: "./"
volumes:
- name: config
secret:
defaultMode: 0400
secretName: mc
- name: session
emptyDir: {}
initContainers:
- image: alpine
name: mk-mc
args:
- mkdir
- -p
- /root/.mc
workingDir: /work
securityContext:
privileged: true
seccompProfile:
type: Unconfined
volumeMounts:
- name: session
mountPath: /root
- image: alpine
name: setup-env
args:
- cp
- /work/config.json
- /root/.mc/config.json
workingDir: /work
securityContext:
privileged: true
seccompProfile:
type: Unconfined
volumeMounts:
- name: session
mountPath: /root
- name: config
mountPath: /work
container:
image: minio/mc:RELEASE.2023-08-18T21-57-55Z
args:
- cp
- "{{inputs.parameters.source}}"
- "{{inputs.parameters.target}}"
- --continue=false
- --config-dir=/work
workingDir: /work
securityContext:
privileged: true
seccompProfile:
type: Unconfined
volumeMounts:
- name: work
mountPath: /work
- name: session
mountPath: /root