Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/escomputers/volume-nfs
Updated version (Fedora flavored) of k8s.gcr.io/volume-nfs image
https://github.com/escomputers/volume-nfs
docker-image k8s kubernetes nfs-csi nfs-server volume-nfs
Last synced: 20 days ago
JSON representation
Updated version (Fedora flavored) of k8s.gcr.io/volume-nfs image
- Host: GitHub
- URL: https://github.com/escomputers/volume-nfs
- Owner: escomputers
- License: apache-2.0
- Created: 2024-08-28T10:30:00.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2024-08-28T22:44:17.000Z (3 months ago)
- Last Synced: 2024-10-10T16:23:50.284Z (about 1 month ago)
- Topics: docker-image, k8s, kubernetes, nfs-csi, nfs-server, volume-nfs
- Language: Shell
- Homepage:
- Size: 10.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 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](https://github.com/kubernetes-csi/csi-driver-nfs)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:
```yaml
ports:
- name: nfs
containerPort: 2049
protocol: TCP
- name: mountd
containerPort: 20048
protocol: TCP
- name: rpcbind
containerPort: 111
protocol: TCP
```