When creating a new revision to my cloud run instance to add a Cloud SQL connection I receive the error: Revision '<name>-00005-w5r' is not ready and cannot serve traffic. Image 'us-central1-docker.pkg.dev/<project>/gcf-artifacts/<image-name>' not found. (redacted). Even when I explicitly check that the image url is the exact same as a previously deployed image.
The original image of previous instances is built buy Firebase Functions V2. This method was found on The Google Cloud Docs for accessing Cloud SQL from cloud functions.
I don't understand how the image could be deleted since the cloud functions need it to re-run in case of completion or restart so far as I'm aware.
Same goes for when I use gcloud run services update<name> --add-cloudsql-instances=<project>:us-west1:<instance> I get the same error.
Follow up of Cloud SQL with Firebase Functions V2