I have a pvc on my cluster.
I can expand it on my provider (digital ocean)
but then on the cluster do I need to somehow let it know that it expanded?
here is my file that I deployed to enable the creation of the pvc
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
name: test-pvc
namespace: test
spec:
accessModes:
- ReadWriteOnce
resources:
requests:
storage: 4Gi
storageClassName: do-block-storage