File tree Expand file tree Collapse file tree 1 file changed +46
-0
lines changed
example/two-pods-two-distinct-nx-gzip Expand file tree Collapse file tree 1 file changed +46
-0
lines changed Original file line number Diff line number Diff line change
1
+ apiVersion : apps/v1
2
+ kind : DaemonSet
3
+ metadata :
4
+ name : nx-device-plugin
5
+ namespace : kube-system
6
+ labels :
7
+ app : nx-device-plugin
8
+ spec :
9
+ selector :
10
+ matchLabels :
11
+ app : nx-device-plugin
12
+ template :
13
+ metadata :
14
+ labels :
15
+ app : nx-device-plugin
16
+ spec :
17
+ securityContext :
18
+ fsGroup : 0
19
+ containers :
20
+ - name : nx-device-plugin
21
+ image : quay.io/powercloud/power-dra-driver:main
22
+ imagePullPolicy : IfNotPresent
23
+ command : ["/opt/power-dra/bin/power-dra-kubeletplugin"]
24
+ args :
25
+ - " --node-name=worker-0"
26
+ - " --cdi-root=/cdi"
27
+ securityContext :
28
+ allowPrivilegeEscalation : false
29
+ runAsNonRoot : false
30
+ runAsUser : 0
31
+ capabilities :
32
+ drop : ["ALL"]
33
+ seccompProfile :
34
+ type : RuntimeDefault
35
+ volumeMounts :
36
+ - name : device-plugins
37
+ mountPath : /var/lib/kubelet/plugins
38
+ - name : cdi-dir
39
+ mountPath : /cdi
40
+ volumes :
41
+ - name : device-plugins
42
+ hostPath :
43
+ path : /var/lib/kubelet/plugins
44
+ type : DirectoryOrCreate
45
+ - name : cdi-dir
46
+ emptyDir : {}
You can’t perform that action at this time.
0 commit comments