Tag: NFS

  • Kubernetes – Persistent NFS Storage On Control Plane For Minimal Cluster

    Kubernetes – Persistent NFS Storage On Control Plane For Minimal Cluster

    Got a minimal (k3s) cluster running? Need persistent storage, NOT dependent on the pods worker node? For testing and small scale deployments, an NFS-server can be installed on any of the control nodes and mounted on the worker nodes. Here’s how: First, install and configure nfs-server on control node Second, install nfs-client on all the…

  • How to: Mount remote storage using sshfs

    For me, SSH has replaced three very flaky protocols. Telnet (true story) for an networked shell, FTP handling simple file transfers and finally NFS mounting network attached storage. SSH provides the -encrypted- networked shell, handles simple file transfers using SCP or SFTP, and has the power to mount filesystems using SSHFS. All in one protocol!…