I'm trying to run CI/CD runners and agents with Azure Container Apps jobs as per the microsoft documentation -
When I'm trying to run a placeholder job , the job is failing with error "Job has reached the specified backoff limit" , there are no further or detailed logs to see where it is failing.
Github repo for creating docker image and startup script is https://github.com/Azure-Samples/container-apps-ci-cd-runner-tutorial/blob/main/Dockerfile.azure-pipelines
Please anyone faced this issue guide me!!
When you create a job using this code
You define there
--replica-retry-limit 1
. The error you got just says that you reached that limit. So you could try increase it. However, the issue probably is somewhere else. Please check logs in Azure Portal, maybe there you will find a reason why your job failed.