Firebase Cloud Functions Deploy Error - Quota Exceeded

Viewed 914

I'm trying to deploy firebase cloud functions, but I'm getting the following:

functions: got "Quota Exceeded" error while trying to update projects/...

and another error:

functions: Unhandled error cleaning up build images. This could result in a small monthly bill if not corrected. You can attempt to delete these images by redeploying or you can delete them manually at [URL].

Which quota is being exceeded? And how do I increase that quota?

Thank you.

2 Answers

Same error for me , but handled by deploying target functions by firebase deploy --only functions:orgWalletTransCreate

As per this article try to delete all your functions and re upload them again. I do not like this solution as it not something you want to do in a production environment, but it's the only way I found to upload changes. Besides, I only encounter this issue in my dev project where I upload frequently several times a day on a busy day.

Related