Skip to content

Updated version (Fedora flavored) of k8s.gcr.io/volume-nfs image

License

Notifications You must be signed in to change notification settings

escomputers/volume-nfs

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

volume-nfs

An updated version of the widely used NFS Server image k8s.gcr.io/volume-nfs:0.8 which was based on the old and deprecated CentOS 7 image.

Usage

The image can only be used with NFS CSI Driver

Once deployed into a KxS cluster it will enable the ReadWriteMany feature for Persistent Volumes created with the StorageClass nfs-csi.

Notes

  • Tested in production environments
  • For existing K8S Deployments, the related PVC must be recreated
  • Make sure to expose these ports:
    ports:
    - name: nfs
      containerPort: 2049
      protocol: TCP
    - name: mountd
      containerPort: 20048
      protocol: TCP
    - name: rpcbind
      containerPort: 111
      protocol: TCP