diff --git a/docs/deploy_troubleshooting.md b/docs/deploy_troubleshooting.md index 658c200c79..ba4616079a 100644 --- a/docs/deploy_troubleshooting.md +++ b/docs/deploy_troubleshooting.md @@ -11,3 +11,29 @@ If you are experiencing an error when deploying the RAG chat solution using the 1. You see `CERTIFICATE_VERIFY_FAILED` when the `prepdocs.py` script runs. That's typically due to incorrect SSL certificates setup on your machine. Try the suggestions in this [StackOverflow answer](https://stackoverflow.com/questions/35569042/ssl-certificate-verify-failed-with-python3/43855394#43855394). 1. After running `azd up` and visiting the website, you see a '404 Not Found' in the browser. Wait 10 minutes and try again, as it might be still starting up. Then try running `azd deploy` and wait again. If you still encounter errors with the deployed app and are deploying to App Service, consult the [guide on debugging App Service deployments](/docs/appservice.md). Please file an issue if the logs don't help you resolve the error. + +# How to resolve other potential error messages: + +This section covers common error messages you might encounter when deploying templates locally, along with solutions to resolve them. + +- [Quota and resources available: InsufficientQuota](./deploy_troubleshooting.md#error-message-quota-and-resources-available-insufficientquota) +- [The subscription ID cannot have more than 2 container app environments](#maxnumberofglobalenviromentsinsubexceeded-the-subscription-id-cannot-have-more-than-2-container-app-environments) + +## Error message: Quota and resources available: InsufficientQuota: + _This operation require 30 new capacities in quota Tokens Per Minute (thousands) - GPT-35-Turbo, which is bigger than the current available capacity 0. The current quota usage is 30 and the quota limit is 30 for quota Tokens Per Minute (thousands) - GPT-35-Turbo._ + +Possible solutions: + +1. Review and adjust the quota: Check if you can increase the quota for Tokens Per Minute (thousands) for your gpt-model in your Azure settings. This might involve requesting a quota increase through the Azure portal. +2. Contact Azure support: If you can't adjust the quota yourself, reach out to Azure support with the tracking ID for specific assistance with your issue. + +## MaxNumberofGlobalEnviromentsInSubExceeded: The subscription ID cannot have more than 2 container app environments. +Possible solutions: + +1. Delete Existing Environments: Check if there are any container app environments you no longer need and delete them to free up space. + +2. Request a Quota Increase: Request an increase in the limit of container app environments. You can do this through the Azure portal by clicking the help icon (question mark) in the top right corner and creating a support ticket. + +3. Review Subscription Configuration: Ensure your subscription is configured correctly and that there are no additional restrictions causing the issue. + +4. Use Different Regions: If possible, try creating the environments in different regions to avoid the global limit. \ No newline at end of file