At the time of pushing/deploying my application into the Cloud Foundry space, I'm getting a "Disk Quota Exceeded " error message.
I have attached the log message of the application from Cloud Foundry.
Solution
You can resolve this issue by increasing the application Disk.
You can use CF CLI or manifest file.
--- applications: - name: myappname memory: 128M disk_quota: 512M instances: 1 random-route: true buildpack: nodejs_buildpack path: app
Below is the document link for your reference.
https://docs.cloudfoundry.org/devguide/deploy-apps/cf-scale.html
Notes
For any questions or support in this matter, contact us through the support center.