Have NFS configured as Persistent volume in Kubernetes. Is there an option to specify entire size of the volume.
apiVersion: v1
kind: PersistentVolume
metadata:
name: nfs
spec:
capacity:
storage: 1Mi
accessModes:
- ReadWriteMany
nfs:
server: 10.244.1.4
path: "/exports"
- Is it possible to set
spec.capacity.storage
to the entire size of NFS volume. - If possible, do resizing the NFS volume reflect in k8s ?
thanks