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

where does the google gcr images gets stored in google storage?

Unknowingly I have deleted the below buckets from my project artifacts..appspot.com us.artifacts..appspot.com This has deleted all the images from gcr. Let me know if the above buckets are where the gcr images are stored or…
k_vishwanath
  • 1,326
  • 2
  • 20
  • 28
0
votes
1 answer

Unable to push images in GCR - "Caller does not have permission 'storage.buckets.create'."

I'm using Standalone Docker credential helper authentication option to push docker images in GCR. Ran following command locally which created config.json file at following path - C:\Users\sunny.goel.docker ***docker-credential-gcr…
0
votes
1 answer

Docker golang client within docker container

I am trying to use the docker go client to connect to the google container registry to list and delete images. My golang application also exists in a docker container. This is the dockerfile for my golang application: FROM docker:latest USER…
KcinnaY
  • 73
  • 1
  • 9
0
votes
0 answers

Jenkins in Docker Container and Google Cloud Source Repository - no Credentials visible

I read everything in this post and multiple others but nothing is working... I cannot use Google Credentials to access my git Repo in Google Cloud Platform I have Jenkins running in a Docker Container in Google Cloud Platform. I have Source Code in…
0
votes
1 answer

Google Container Registry unexpected HTTP status: 504 Gateway Time-out

I made a 160GB Docker image of the Bitcoin blockchain and tried pushing it from my Google Compute Engine VM in us-west1-b to Google Container Registry (gcr.io). After many hours, the status bar shows the layer has been transmitted but the…
0
votes
2 answers

GCP read-only role(viewer role) allows images pulling from Google Container Registry

Has anyone found a workaround to deny user to pull images from Google container registry with just Viewer role??? Iam policy constrain doesn't support Storage bucket deny yet. Wondering how to resolve this issue, while allow a user viewer role to…
0
votes
1 answer

Bamboo Docker build Errors with Google Container Registry

I'm attempting to run a Bamboo (private server) task that builds a docker image. The dockerfile builds from an image on google container registry. gcr.io/project-name/image-name:tag. However, whenever my task is triggered, I get a build…
ZaxR
  • 4,896
  • 4
  • 23
  • 42
0
votes
1 answer

Accessing project specific resources in other projects in Google Kubernetes Engine

(I'm not sure if this is a common requirement, or I'm asking for a hack, but I will try anyway) We deploy different project for every developer on Google Kubernetes Engine, all under the same billing account. For example, my development project is…
0
votes
2 answers

How to push a docker image to Google Container Registry using fabric8 maven plugin from Jenkins pipeline: unauthorized

I have been struggling to push a docker image to a Google Container Registry using fabric8 maven plugin on a Jenkins pipeline. I have checked every question on stackoverflow but none of them solved my problem. This is my setup: Kubernetes Cluster…
0
votes
1 answer

Google Container Engine: Container Analysis and third party images?

We use kubernetes and host our own images on GCR with enabled Container Analysis so we get notified and can take action when vulnerabilities are found in the images we created. But there are also third party images that we directly use from docker…
gerasalus
  • 7,538
  • 6
  • 44
  • 66
0
votes
2 answers

Container builder dockerfile with gcloud commands

I have a container builder step steps: - id: dockerbuild name: gcr.io/cloud-builders/docker entrypoint: 'bash' args: - -c - | docker build . -t test images: ['gcr.io/project/test'] The Dockerfile used to create this test image has…
0
votes
1 answer

Connect Jenkins to GCP container registry

I'm trying to connect jenkins to container registry on GCP. I follow some examples but I'm blocked on a simple and stupid thing. I have this stage in my jenkins file : stage('Push image') { docker.withRegistry('https://eu.gcr.io',…
0
votes
2 answers

How to get container registry pubsub notifications inside code (java or any other lang)

My aim is to get notifications from google container registry in code whenever any image is updated/inserted/deleted from the registry. I am following tutorial - https://cloud.google.com/container-registry/docs/configuring-notifications I am able…
0
votes
2 answers

How to pull private images from GCR in drone?

I have been looking in how to pull private images and I found this. I'm trying to use the drone cli to it but when i use this command drone registry add \ --repository octocat/hello-world \ --hostname gcr.io \ --username _json_key \ …
0
votes
0 answers

Google Cloud Builder - vuejs, gulp build fails

Problem I'm working on adding a couple additional build steps to our current, functional build pipeline. The problem is gulp is failing to find modules when it comes to compiling the JavaScript. Below you will find the relevant section of our…