-1

I'm using a service account to authenticate with the gcloud utillity. I'm trying to push a docker image with the command of: gcloud docker -- push eu.gcr.io/abcxyz/example:latest

but get an error of:

denied: Unable to create the repository, please check that you have access to do so.

What permission do I need to enable?

Chris Stryczynski
  • 30,145
  • 48
  • 175
  • 286

1 Answers1

1

In the IAM & Admin section of GCP you'll need to add the storage.admin and/or storage.object.admin roles to your service account. This is detailed in the documentation here.

IAM & Admin

enter image description here

sharif9876
  • 680
  • 6
  • 19