apiVersion: v1 kind: Pod metadata: name: helper-pod namespace: local-storage-provider spec: priorityClassName: edge-p3-workload-services containers: - name: helper-pod image: us-east1-docker.pkg.dev/ret-edge-pltf-infra/workloads/local-path-provisioner-helper:v0.0.6 volumeMounts: - name: lvm-lock readOnly: false mountPath: /run/lock/lvm - name: host-devices readOnly: false mountPath: /dev - name: data mountPropagation: Bidirectional imagePullPolicy: IfNotPresent securityContext: capabilities: drop: - all privileged: true volumes: - name: host-devices hostPath: type: DirectoryOrCreate path: /dev - name: lvm-lock hostPath: type: DirectoryOrCreate path: /run/lock/lvm imagePullSecrets: - name: edge-docker-pull-secret