2

I got an error when I was trying to download the docker image from

gcr.io/automl-vision-ondevice/gcloud-container-1.14.0:latest

But I got an error of Access Denied. How can I solve this issue? Thanks a lot.

$ export CPU_DOCKER_GCR_PATH=gcr.io/automl-vision-ondevice/gcloud-container-1.14.0:latest
$ docker pull ${CPU_DOCKER_GCR_PATH}
Error response from daemon: Get https://gcr.io/v2/automl-vision-ondevice/gcloud-container-1.14.0/manifests/latest: denied: Permission denied: Consumer 'project:automl-vision-ondevice' has been suspended.
Wingo Wong
  • 23
  • 2
  • Your image is running or not, did you check that? – Anupam Haldkar May 19 '20 at 14:09
  • No. I have checked that the image did not pull successful today. I was pulled successfully last week. But just got the error today when I tried out on another machine. – Wingo Wong May 19 '20 at 14:24
  • I am not sure if it is the issue from GCP Docker Registry or not. Coz I was completely following the instruction of https://cloud.google.com/vision/automl/docs/containers-gcs-tutorial. – Wingo Wong May 19 '20 at 14:26
  • Based on the message error: `Consumer 'project:automl-vision-ondevice' has been suspended.` Can you check if your project still available or restricted in some ways? – Bruno May 19 '20 at 19:07
  • I am not sure if it is still available. The project is owned by GCP Vision and I was following the instructions to pull the image, then wanna to try out the trained model with it. – Wingo Wong May 20 '20 at 03:48
  • And I have no idea how to contact the google customer service. coz I am a personal user, they have not provided any technical support. According to the suggest of Help in GCP. They only suggest me to ask my question in Stack overflow. – Wingo Wong May 20 '20 at 03:50
  • You can find some help by following this [link](https://support.google.com/cloud/troubleshooter/9664343), based on the message error you provided, there's something wrong with your project. You can also try to contact the [billing support](https://console.cloud.google.com/support/chat) – Bruno May 20 '20 at 14:13

1 Answers1

3

I had the same problem. Luckily i changed the language of the documentation to english and found another URL under which the Docker image is located. The Google team has probably moved the image.

Change

$ export CPU_DOCKER_GCR_PATH=gcr.io/automl-vision-ondevice/gcloud-container-1.14.0:latest

to

$ export CPU_DOCKER_GCR_PATH=gcr.io/cloud-devrel-public-resources/gcloud-container-1.14.0:latest
Stevensen
  • 161
  • 3