-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathafl.yml
82 lines (79 loc) · 1.86 KB
/
afl.yml
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
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: fm-deployment
labels:
k8s-app: fzz
kubernetes.io/cluster-service: "true"
spec:
replicas: 1
selector:
matchLabels:
k8s-app: fzz
template:
metadata:
labels:
k8s-app: fzz
kubernetes.io/cluster-service: "true"
spec:
containers:
- name: fzzmaster
image: antojoseph/libfuzzer:latest
command: ['afl-fuzz']
args: ['-i', '/opt/seed', '-o', 'sync_dir', '-M', '$(HOSTNAME)' ,'/opt/aflpng/libpng/.libs/pngtest','@@']
env:
- name: HOSTNAME
valueFrom:
fieldRef:
fieldPath: metadata.name
securityContext:
privileged: true
volumeMounts:
- mountPath: "/sync_dir"
name: image-store
volumes:
- name: image-store
persistentVolumeClaim:
claimName: cephfs-pvc
readOnly: false
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: fms-deployment
labels:
k8s-app: fslave
kubernetes.io/cluster-service: "true"
spec:
replicas: 1
selector:
matchLabels:
k8s-app: fslave
template:
metadata:
labels:
k8s-app: fslave
kubernetes.io/cluster-service: "true"
spec:
containers:
- name: fzzslave
image: antojoseph/libfuzzer:latest
command: ['afl-fuzz']
args: ['-i', '/opt/seed', '-o', 'sync_dir', '-S', '$(HOSTNAME)' ,'/opt/aflpng/libpng/.libs/pngtest','@@']
env:
- name: HOSTNAME
valueFrom:
fieldRef:
fieldPath: metadata.name
securityContext:
privileged: true
volumeMounts:
- mountPath: "/sync_dir"
name: image-store
volumes:
- name: image-store
persistentVolumeClaim:
claimName: cephfs-pvc
readOnly: false
---