Need to increase the PVC size if you are getting following error:

Need to check the Storageclass by which PVC was provisioned.
Run the following command:
Check for the field allowVolumeExpansion, if it is set to true, run the following command and increase the size of the PVC.Copy
- kubectl edit pvc git-volume-git-sensor-0 -n devtroncd
However, if the field is allowVolumeExpansion: false, set it to true and run the above command.
Edit the following field:
- spec:
- capacity:
- storage: 10Gi # increase as per convenience
Increase the PVC size as per your requirement. This will resolve the issue. If not, then try to bounce the pod using the following command.kubectl delete po -n devtroncd git-sensor-0
- kubectl delete po -n devtroncd git-sensor-0