-
Notifications
You must be signed in to change notification settings - Fork 36
/
build-agent.yaml
45 lines (45 loc) · 916 Bytes
/
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
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
volumes:
- name: m2
hostPath:
path: /tmp/.m2/
- name: docker-sock
hostPath:
path: /var/run
- name: trivycache
hostPath:
path: /tmp/trivycache/