mirror of
https://github.com/oracle/zfssa-csi-driver.git
synced 2025-09-19 08:19:03 +00:00
22 lines
517 B
YAML
22 lines
517 B
YAML
apiVersion: v1
|
|
kind: Pod
|
|
metadata:
|
|
name: {{ .Values.podNfsName }}
|
|
labels:
|
|
name: ol7slim-test
|
|
spec:
|
|
restartPolicy: Always
|
|
containers:
|
|
- image: {{ .Values.imageBase }}{{ .Values.images.os.name }}:{{ .Values.images.os.tag }}
|
|
command: ["/bin/sh", "-c"]
|
|
args: [ "tail -f /dev/null" ]
|
|
name: ol7slim
|
|
volumeMounts:
|
|
- name: vol
|
|
mountPath: /mnt
|
|
volumes:
|
|
- name: vol
|
|
persistentVolumeClaim:
|
|
claimName: {{ .Values.pvcNfsName }}
|
|
readOnly: false
|