Hi @Paul Davies ,
Welcome to the Microsoft Q&A Platform! Thank you for reaching out with your question.
It seems you are experiencing an issue with your deployed app in the Container App environment. Specifically, you're seeing an error in the logs stating "ingress routes not ready," which is causing the replica revision to fail after about 20 minutes.
Here are a few steps you can try to resolve the issue:
1.Check the status of the ingress controller: You can check the status of the ingress controller by running the following command in the Azure CLI:
az containerapp domain show-ingress-controller-status --name <container-app-name> --resource-group <resource-group-name>
This command will show you the status of the ingress controller and any errors that may be occurring.
2.Check the status of your app: You can check the status of your app by running the following command in the Azure CLI:
az containerapp show --name <container-app-name> --resource-group <resource-group-name>
This command will show you the status of your app and any errors that may be occurring.
3.Check the logs for your app: You can check the logs for your app by running the following command in the Azure CLI:
az containerapp logs --name <container-app-name> --resource-group <resource-group-name>
This command will display the logs for your app and any potential errors.
4.Check the configuration of your app: Ensure that your app is configured correctly and that all required environment variables are set.
If none of these steps resolve the issue, here is a link to the Azure Container Apps documentation that may be helpful: Azure Container Apps Documentation
I hope this helps! Let me know if you have any further questions.
Thank you.