forked from lfs262/dso-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build-agent.yaml
70 lines (69 loc) · 1.46 KB
/
build-agent.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
apiVersion: v1
kind: Pod
metadata:
labels:
app: spring-build-ci
spec:
containers:
- name: maven
image: maven:alpine
command:
- cat
tty: true
volumeMounts:
- name: m2
mountPath: /root/.m2/
- name: docker-tools
image: rmkanda/docker-tools:latest
command:
- cat
tty: true
volumeMounts:
- mountPath: /var/run
name: docker-sock
- mountPath: /tmp/trivycache/
name: trivycache
- name: trufflehog
image: rmkanda/trufflehog
command:
- cat
tty: true
- name: licensefinder
image: licensefinder/license_finder
command:
- cat
tty: true
- name: slscan
image: shiftleft/sast-scan
imagePullPolicy: Always
command:
- cat
tty: true
- name: kaniko
image: gcr.io/kaniko-project/executor:v1.6.0-debug
imagePullPolicy: Always
command:
- sleep
args:
- 99d
volumeMounts:
- name: jenkins-docker-cfg
mountPath: /kaniko/.docker
volumes:
- name: m2
hostPath:
path: /tmp/.m2/
- name: docker-sock
hostPath:
path: /var/run
- name: trivycache
hostPath:
path: /tmp/trivycache/
- name: jenkins-docker-cfg
projected:
sources:
- secret:
name: regcred
items:
- key: .dockerconfigjson
path: config.json