Git-sensor PVC- disk full
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
Related Articles
Not able to see commits, throwing exit status 128
1. Save the Git Repository Again Wait for few minutes and check the build pipeline if commits are visible or not 2. Check git sensor pod logs kubectl logs -n devtroncd -l app=git-sensor If you still get the same issue, try to bounce the pod and save ...
Devtron Enterprise DT-32 Release Note
The latest release of Devtron is here, with new features and enhancements. Here's a summary of the DT-32 release and related updates. Highlights: Application Templates Devtron is introducing Application Templates, a feature that allows users to ...