Kubernetes Persistent Volumes and Claims
1- create a persistentvolume yaml file
2- upload the file to Kubernetes ( +CREATE )
3- create a persistentvolumeclaim yaml file
4- Claims the volume
5-
Configuring a Pod to Use a PersistentVolume for Storage
more volume_in_tmp.yml
kind: PersistentVolume
apiVersion: v1
metadata:
name: task-pv-volume
labels:
type: local
spec:
capacity:
storage: 10Mi
accessModes:
- ReadWriteOnce
hostPath:
path: "/tmp/data"