18 lines
344 B
YAML
18 lines
344 B
YAML
|
apiVersion: v1
|
||
|
kind: Pod
|
||
|
metadata:
|
||
|
name: pv-pod
|
||
|
spec:
|
||
|
containers:
|
||
|
- name: busybox
|
||
|
image: busybox
|
||
|
command: ['sh', '-c', 'echo Success! > /output/success.txt']
|
||
|
volumeMounts:
|
||
|
- name: pv-storage
|
||
|
mountPath: /output
|
||
|
volumes:
|
||
|
- name: pv-storage
|
||
|
persistentVolumeClaim:
|
||
|
claimName: my-pvc
|
||
|
|