23 lines
424 B
YAML
Executable File
23 lines
424 B
YAML
Executable File
kind: Pod
|
|
apiVersion: v1
|
|
metadata:
|
|
name: test-pod
|
|
namespace: nfs-provisioning
|
|
spec:
|
|
containers:
|
|
- name: test-pod
|
|
image: busybox:latest
|
|
command:
|
|
- "/bin/sh"
|
|
args:
|
|
- "-c"
|
|
- "touch /mnt/SUCCESS && sleep 600"
|
|
volumeMounts:
|
|
- name: nfs-pvc
|
|
mountPath: "/mnt"
|
|
restartPolicy: "Never"
|
|
volumes:
|
|
- name: nfs-pvc
|
|
persistentVolumeClaim:
|
|
claimName: demo-claim
|