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
2 answers

How do I retrieve assets from a Google Storage bucket within a Google Container Registry automated build?

I've created a mirrored GitHub repo in Google's Container Registry and then created a Build Trigger. The dockerfile in the repo includes gsutil -m rsync -r gs://asset-bucket/ local-dir/ so that I can move shared private assets into the…
dk.
  • 2,030
  • 1
  • 22
  • 22
0
votes
2 answers

GKE Container Registry Quota Exceeded

When deploying updates to Kubernetes hosts I am encountering the error "Quota Exceeded" but none of my Quotas in Google Console show as being exceeded (pictured below). Why is this happening? kubectl describe pod c80b7631698 Events: Type …
sabrehagen
  • 1,517
  • 1
  • 13
  • 38
0
votes
1 answer

Kubernetes federated deployment different image url per cluster

any idea how to define a Kubernetes federated deployment to use different image urls from different registries? I have a federated cluster of GKE cluster and I want the deployment to pull for their local GCR. apiVersion: extensions/v1beta1 # for…
0
votes
1 answer

Gcloud: Deploy local image without pushing to registry

I have a local image that works fine locally. I want to deploy it to my gcloud kubectl. Is there a way I can deploy it without pushing it to container registry. When I do it its throwing: docker pull access denied repository does not exist or may…
0
votes
1 answer

Why is docker swarm not picking up latest tags pushed to Google Container Registry?

I'm wondering if there's an issue with docker swarm and GCR or if GCR is experiencing some delays right now. I pushed my newly tagged image to GCR, but it's changes are not available to the nodes on my cluster. They have pulled five other versions…
0
votes
0 answers

docker push image from CoreOS to private google container registry

I have a private git repo for a static angular frontend that uses gulp to compile angular assets to get the minified, static version in a output directory. Now, to test & create my CI/CD pipeline for frontend in Kubernetes, I have setup a…
0
votes
1 answer

GCR push very slow

Since a few days, the gcloud docker -- push command has become terrible slow, sometimes taking up to 10 minutes to push a simple change (like a change in default CMD in the Dockerfile) I saw there was a post a while back (link), but sadly without…
0
votes
0 answers

GCP Container Registry Build trigger - how to separate app source from build source

We are testing automatic Build Triggers at GCP - Container Registry to build Docker images and to auto deploy on Kubernetes cluster. All works well and thinking of implementing this on production, however we are reluctant to include our Docker and…
bogumbiker
  • 437
  • 2
  • 5
  • 19
0
votes
1 answer

Trigger Container Registry Vulnerability Scan

Is it possible for a person to kick off a scan of a Docker image living in Google Cloud Container Repository? I have an image that's been sitting there for the past weekend and I have yet to see it scanned. I'd like to force it to be scanned, but I…
Randy L
  • 14,384
  • 14
  • 44
  • 73
0
votes
0 answers

How can I use Bitbucket Server with Google Container Builder

I understand today we can use Github, Atlassian Bitbucket (Cloud) and Google Code Repository. Is it possible to use BitBucket Server? We do have network connectivity to the BitBucket Server from the GCP Project where we'll be doing Container…
0
votes
1 answer

Notifications in Google Cloud Container Registry

I am trying to read the sent notifications from Google Cloud Container Registry after an image has been altered using the Pub/Sub service but I am unable to make it work. I have followed the steps described here:…
0
votes
1 answer

Connecting to a container that is based on gcr.io public datalab image

I am trying to have a simple datalab image running from my private container registry and facing datalab connection issue. Please take a look at steps and let me know if you see any obvious issue. The steps are: Running on MAC…
eilalan
  • 669
  • 4
  • 20
0
votes
2 answers

How to garbage-collect unused docker images?

All use Google Computing Engine to run Monte Carlo by deploying Docker images, running them, deleting them, deploying more images, ... If I look into disk usage of the bucket which has containers/images gsutils du gs://bucket I'll get close to 6Gb…
0
votes
1 answer

Jenkins Pipeline gcloud problems in docker

I'm trying to set up jenkins pipeline according to this article but instead use google container registry to push the docker images to. The Problem: The part which fails me is this jenkinsfile stage block stage ('Push Docker Image To Container…
0
votes
4 answers

Firewall rule to allow GKE -> GCR traffic in separate projects

I am running Kubernetes in GCP and I have the GKE cluster and the container registry in separate projects. I added the GKE service account to my GCR project and everything works great. Now, I would like to restrict any outgoing traffic from my GKE…