Firebase preview channels quota reached

Viewed 449

We are using firebase preview channels in CI pipelines but now I've got this error message and I can't find any information about limits of preview channels..

HTTP Error: 429, Couldn't create channel on 'projects/ID/sites/my-site': channel quota reached

2 Answers

if you are deploying many times, try to set the expiration on your previews to just a few days:

...
with:
          repoToken: '${{ secrets.GITHUB_TOKEN }}'
          firebaseServiceAccount: '${{ secrets.YOUR_SERVICE_ACCOUNT }}'
          expires: 3d
          projectId: '${{ projectId }}'

also check recurrency and sizes of your deployments and compare it with your configuration in your gcp service account.

In Firebase, the last 10 versions of live and preview channel files were stored by default. You can change those settings in the firebase console by clicking the three dots on the right side then change 10 to your option. Also, do the same for preview chanels, For preview channel, you have to change each channel separately. For that click the date showing in the preview channel. You an see the same option enter image description here

Related