-
Notifications
You must be signed in to change notification settings - Fork 29
/
build-agent.yaml
54 lines (54 loc) · 1.11 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
apiVersion: v1
kind: Pod
metadata:
labels:
app: spring-build-ci
spec:
containers:
- name: gradle
image: gradle:7-jdk17-alpine
command:
- cat
tty: true
volumeMounts:
- name: gradle
mountPath: /home/gradle/.gradle
- name: maven
image: openjdk:17.0.1
command:
- cat
tty: true
volumeMounts:
- name: maven
mountPath: /root/.m2/
- name: trufflehog
image: rmkanda/trufflehog
command:
- cat
tty: true
- name: docker-tools
image: rmkanda/docker-tools:latest
env:
- name: GRYPE_DB_CACHE_DIR
value: /tmp/grypecache/
command:
- cat
tty: true
volumeMounts:
- mountPath: /var/run
name: docker-sock
- mountPath: /tmp/grypecache/
name: grypecache
volumes:
- name: maven
hostPath:
path: /tmp/.m2/
- name: gradle
hostPath:
path: /tmp/.gradle/
- name: docker-sock
hostPath:
path: /var/run
- name: grypecache
hostPath:
path: /tmp/.grypecache/