File tree 2 files changed +34
-1
lines changed
2 files changed +34
-1
lines changed Original file line number Diff line number Diff line change 1
1
.idea /
2
- k8s-fuse-plugin *
2
+ k8s-fuse-plugin-linux *
Original file line number Diff line number Diff line change
1
+ apiVersion : apps/v1
2
+ kind : DaemonSet
3
+ metadata :
4
+ name : fuse-device-plugin-daemonset
5
+ namespace : kube-system
6
+ spec :
7
+ selector :
8
+ matchLabels :
9
+ name : fuse-device-plugin-ds
10
+ template :
11
+ metadata :
12
+ labels :
13
+ name : fuse-device-plugin-ds
14
+ spec :
15
+ hostNetwork : true
16
+ containers :
17
+ - image : cr.seqera.io/public/k8s-fuse-plugin:0.1
18
+ args :
19
+ - " --mounts-allowed=5000"
20
+ name : fuse-device-plugin-ctr
21
+ securityContext :
22
+ allowPrivilegeEscalation : false
23
+ capabilities :
24
+ drop : ["ALL"]
25
+ volumeMounts :
26
+ - name : device-plugin
27
+ mountPath : /var/lib/kubelet/device-plugins
28
+ volumes :
29
+ - name : device-plugin
30
+ hostPath :
31
+ path : /var/lib/kubelet/device-plugins
32
+ imagePullSecrets :
33
+ - name : registry-secret
You can’t perform that action at this time.
0 commit comments