Automatic volume migration following the pod
I have k8s test cluster with 1 master and 2 worker nodes.
I created a PersistentVolumeClaim resource using the Hetzner Cloud csi driver. This driver only allows you to create ReadWriteOnce volumes.
Can I change the path of an existing, bound NFS persistent volume live without stopping pods that use it?
I have a dozen or so persistent volumes of type NFS that are managed by my TrueNAS Scale server. Moving the files and folders that the share points to necessitates changing the persistent volume path to point to the new location. Several Pods use the persistent volume via a common persistent volume claim.
Can I change the path of an existing, bound NFS persistent volume live without stopping pods that use it?
I have a dozen or so persistent volumes of type NFS that are managed by my TrueNAS Scale server. Moving the files and folders that the share points to necessitates changing the persistent volume path to point to the new location. Several Pods use the persistent volume via a common persistent volume claim.
How to upload files to Kuberenetes node with `hostpath` storage class?
I have a Kubernetes cluster with one node (docker-desktop). The cluster has a default storage class hostpath
and created a PV as well as a corresponding PVC making use of hostpath
storage class. The PVC has successfully bound to a running pod.