Questions tagged [google-container-registry]

Google Container Registry provides secure, private Docker image storage on Google Cloud Platform.

Google Container Registry (also known as https://gcr.io/ ) provides secure, private Docker image storage on Google Cloud Platform.

The Google Container Registry runs on Google Cloud Platform, so can be relied upon for consistent uptime and security. The registry can be accessed through an HTTPS endpoint, so you can pull images from any machine, whether it's a Google Compute Engine instance or your own hardware.

448 questions
0
votes
1 answer

Do we need three cloudbuild.yml files for a simple setup in Google Cloud Container Builder?

On Google Cloud Container Builder we want to: Push any branch to REPO:BRANCH Push any tag to REPO:TAG Push master to REPO:latest Do we need a separate cloudbuild.yml file for each? Is there a lighter way of doing this? We need to use a file rather…
0
votes
1 answer

docker push has integrity failures from a given commit and onwards

I'm trying to push a docker container to a private registry on the Google Cloud Platform: gcloud docker -- push gcr.io// and a checksum fails: e9a19ae6509f: Pushing [========================================> ]…
0
votes
1 answer

How to add google registry (gcr.io) as 3rd party registry (docker cloud)?

I followed this Google container - using an access token but it does not work. The error is: Cannot authenticate with gcr.io: 401 Client Error: Unauthorized for url: eu.gcr.io/v1/repositories/organization/repository/tags However, it works on my…
0
votes
4 answers

What's causing authentication error when pushing Docker image to Google Container Registry?

I am trying to push a Docker image to Google Container Registry from a CircleCI build, as per their instructions. However, pushing to GCR fails due to an apparent authentication error: Using 'push…
aknuds1
  • 65,625
  • 67
  • 195
  • 317
0
votes
1 answer

Cannot see reserved storage bucket after pushing Docker image to Google Container Registry

I have created a Docker image and pushed it to Google Container Registry as follows (both from inside Google Cloud Shell): docker push eu.gcr.io// The result of this command indicates my image's presence in the…
Drux
  • 11,992
  • 13
  • 66
  • 116
0
votes
2 answers

Sharing docker registry images among gcloud projects

We're hoping to use a google project to share docker images containing microservices across projects. I was thinking I could do it using the kubernetes run command and pull an image from a project other than the current one: kubectl run …
0
votes
1 answer

Connecting to cloud sql from a google container engine instance docker image running craft cms

I am trying to externalise the database from a craft cms docker image running in a google container engine instance and connect it to a gcloud sql second generation instance running in the same project. I've set the cloud sql permission to enabled…
0
votes
1 answer

App Engine Flexible stopped deploying properly

Have a GAE flexible environment. Have been deploying using $ gcloud preview app deploy --project myproject. It goes through the proper deployment sequence, and the app shows up in the Container Registry at:…
0
votes
1 answer

openshift-origin add secret for gcr.io

I've trying all day to add a secret for access to a private registry on gcr.io. ( Google Cloud Registry) The documentation from gcr has some info about a json key file. $ docker login -e 1234@5678.com -u _json_key -p "$(cat keyfile.json)"…
0
votes
1 answer

How can I determine if a specific tag is available for an image

I'm currently using this to check if an image is available on gcr.io. tags_json=$(curl "https://gcr.io/v2/${repo}/${image}/tags/list" 2>/dev/null) tags_found="$(echo "${tags_json}" | jq ".tags | indices([\"${version}\"]) | any")" This is unfortunate…
colemickens
  • 119
  • 2
  • 11
0
votes
2 answers

docker image layers reuploaded each time

I've been using the google container registry for a few weeks now and there is one thing that is extremely annoying and that I can' get rid of: I have one docker image which doesn't change at all, except the last layer, a mere 1MB that is updated…
VsM
  • 710
  • 1
  • 10
  • 23
0
votes
2 answers

List GCR private registry images

I need to list the images that are stored in each registry. I have the user auth details, but I don't have the registry names. I need to list all the registries and the images located in each registry. Can I able to do it via Google Storage APIs? I…
Sujai Sivasamy
  • 1,101
  • 3
  • 14
  • 32
0
votes
2 answers

Submit jobs using API Client Library for Python?

Does API Client Library for Python support creation and deletion of pods and jobs on google container engine?
0
votes
1 answer

How can I create containers at time of instance creation from my project container images

I am trying to start a container-vm Google Compute Engine VM instance with a container created when the machine starts. An example of this you find in this documentation section: Creating containers at time of instance creation. Everything works…
0
votes
1 answer

unable to see images or pull from registry

I am unable to see images from the registry 1. gcloud auth login 2. from local machine: gcloud docker push gcr.io/project-id/image-name 3. from VM running docker: gcloud docker images I see nothing and therefore unable to run any containers - do…
Chris G.
  • 23,930
  • 48
  • 177
  • 302
1 2 3
29
30