-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathlibfuzzer.yml
More file actions
34 lines (33 loc) · 771 Bytes
/
libfuzzer.yml
File metadata and controls
34 lines (33 loc) · 771 Bytes
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
apiVersion: apps/v1
kind: Deployment
metadata:
name: libfuzzer-deployment
labels:
k8s-app: debug
kubernetes.io/cluster-service: "true"
spec:
replicas: 3
selector:
matchLabels:
k8s-app: debug
template:
metadata:
labels:
k8s-app: debug
kubernetes.io/cluster-service: "true"
spec:
containers:
- name: debug
image: antojoseph/libfuzzer:latest
command: ['/opt/libpng_read_fuzzer']
args: ['/sync_dir', '/opt/seed']
securityContext:
privileged: true
volumeMounts:
- mountPath: "/sync_dir"
name: image-store
volumes:
- name: image-store
persistentVolumeClaim:
claimName: cephfs-pvc
readOnly: false