- The NFS client installed on any Kubernetes nodes that will run deployments that include NFS mounts
- Existing NFS Server
- SLES or Leap install on worker Nodes
sudo zypper in nfs-client
sudo mkdir /tmp/nfstemp
sudo mount nfs.xyz.com:/share /tmp/nfstemp
Example
df -h /tmp/nfstemp
Example
Filesystem Size Used Avail Use% Mounted on
node-6.wiredquill.com:/share 60G 2.5G 56G 5% /tmp/nfstest
sudo umount /tmp/nfstemp
Example