Persistent volume type - NFS in kubernetes

Опубликовано: 15 Октябрь 2024
на канале: Deekshith SN
5,154
105

An nfs volume allows an existing NFS (Network File System) share to be mounted into a Pod. Unlike emptyDir, which is erased when a Pod is removed, the contents of an nfs volume are preserved and the volume is merely unmounted. This means that an NFS volume can be pre-populated with data, and that data can be shared between pods. NFS can be mounted by multiple writers simultaneously.

github link - https://github.com/DeekshithSN/kubern...

#kubernetes #devops #nfs #volumes #Persistent