Error during deploying revision in Google Cloud Run

Hi guys,
I’ve a strange issue using Google Cloud Run. When I deploy a revision increasing for example minIstances counter, I receive this error:

The service has encountered an error during container import. Please try again later. Resource readiness deadline exceeded.

What does means? Can you help me?

1 Like

Hi @mrPsycox ,

Welcome to Google Cloud Community!

Based on this documentation on Container import errors:

  • Your file system might contain non-utf8 characters.
  • Some Windows based Docker images make use of foreign layers and Cloud Run doesn’t support them.

To resolve this:

  • Ensure container’s file system does not contain non-utf8 characters.

  • You may try setting the --allow-nondistributable-artifacts flag in the Docker daemon.

I would also suggest filing a bug if the abovementioned steps did not work or contacting Google Cloud Support for further assistance.