31 lines
688 B
YAML
31 lines
688 B
YAML
|
kind: PersistentVolumeClaim
|
||
|
apiVersion: v1
|
||
|
metadata:
|
||
|
name: local-hostpath-pvc
|
||
|
spec:
|
||
|
storageClassName: openebs-hostpath
|
||
|
accessModes:
|
||
|
- ReadWriteOnce
|
||
|
resources:
|
||
|
requests:
|
||
|
storage: 5G
|
||
|
---
|
||
|
apiVersion: v1
|
||
|
kind: Pod
|
||
|
metadata:
|
||
|
name: hello-local-hostpath-pod
|
||
|
spec:
|
||
|
volumes:
|
||
|
- name: local-storage
|
||
|
persistentVolumeClaim:
|
||
|
claimName: local-hostpath-pvc
|
||
|
containers:
|
||
|
- name: hello-container
|
||
|
image: busybox
|
||
|
command:
|
||
|
- sh
|
||
|
- -c
|
||
|
- 'while true; do echo "`date` [`hostname`] Hello from OpenEBS Local PV." >> /mnt/store/greet.txt; sleep $(($RANDOM % 5 + 300)); done'
|
||
|
volumeMounts:
|
||
|
- mountPath: /mnt/store
|
||
|
name: local-storage
|