mirror of
https://github.com/oracle/zfssa-csi-driver.git
synced 2025-08-01 21:17:38 +00:00
22 lines
489 B
YAML
22 lines
489 B
YAML
apiVersion: v1
|
|
kind: Pod
|
|
metadata:
|
|
name: zfssa-nfs-vs-restore-pod
|
|
labels:
|
|
name: ol7slim-test
|
|
spec:
|
|
restartPolicy: Always
|
|
containers:
|
|
- image: container-registry.oracle.com/os/oraclelinux:7-slim
|
|
command: ["/bin/sh", "-c"]
|
|
args: [ "tail -f /dev/null" ]
|
|
name: ol7slim
|
|
volumeMounts:
|
|
- name: vol
|
|
mountPath: /mnt
|
|
volumes:
|
|
- name: vol
|
|
persistentVolumeClaim:
|
|
claimName: zfssa-nfs-vs-restore-pvc
|
|
readOnly: false
|