...
1apiVersion: v1
2kind: Pod
3metadata:
4 name: helper-pod
5 namespace: local-storage-provider
6spec:
7 priorityClassName: edge-p3-workload-services
8 containers:
9 - name: helper-pod
10 image: us-east1-docker.pkg.dev/ret-edge-pltf-infra/workloads/local-path-provisioner-helper:v0.0.6
11 volumeMounts:
12 - name: lvm-lock
13 readOnly: false
14 mountPath: /run/lock/lvm
15 - name: host-devices
16 readOnly: false
17 mountPath: /dev
18 - name: data
19 mountPropagation: Bidirectional
20 imagePullPolicy: IfNotPresent
21 securityContext:
22 capabilities:
23 drop:
24 - all
25 privileged: true
26 volumes:
27 - name: host-devices
28 hostPath:
29 type: DirectoryOrCreate
30 path: /dev
31 - name: lvm-lock
32 hostPath:
33 type: DirectoryOrCreate
34 path: /run/lock/lvm
35 imagePullSecrets:
36 - name: edge-docker-pull-secret
View as plain text