We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
kind: Service apiVersion: v1 metadata: name: nfs-server spec: ports: - name: nfs port: 2049 - name: mountd port: 20048 - name: rpcbind port: 111 selector: role: nfs-server --- apiVersion: v1 kind: ReplicationController metadata: name: nfs-server spec: replicas: 1 selector: role: nfs-server template: metadata: labels: role: nfs-server spec: nodeSelector: external-storage: "true" containers: - name: nfs-server image: gcr.io/google_containers/volume-nfs:0.8 ports: - name: nfs containerPort: 2049 - name: mountd containerPort: 20048 - name: rpcbind containerPort: 111 securityContext: privileged: true volumeMounts: - mountPath: /exports name: nfs-export-fast volumes: - name: nfs-export-fast hostPath: path: /data/nfs
From https://opensource.ncsa.illinois.edu/confluence/display/~lambert8/NFS+in+Kubernetes
Not quite working but, might make sense to test with your image.
The text was updated successfully, but these errors were encountered:
Here is a setup that works for me; note that I'm using Docker Desktop, so some modifications may be needed:
https://gist.github.com/kbakk/097453c445a72e99573a5089c1c3d0dc
Sorry, something went wrong.
No branches or pull requests
From https://opensource.ncsa.illinois.edu/confluence/display/~lambert8/NFS+in+Kubernetes
Not quite working but, might make sense to test with your image.
The text was updated successfully, but these errors were encountered: