-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathdebug.yml
More file actions
34 lines (33 loc) · 779 Bytes
/
Copy pathdebug.yml
File metadata and controls
34 lines (33 loc) · 779 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: debug-deployment
labels:
k8s-app: debug
kubernetes.io/cluster-service: "true"
spec:
replicas: 1
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: [ "/bin/bash", "-c", "--" ]
args: [ "while true; do sleep 30; done;" ]
securityContext:
privileged: true
volumeMounts:
- mountPath: "/sync_dir"
name: image-store
volumes:
- name: image-store
persistentVolumeClaim:
claimName: cephfs-pvc
readOnly: false