Google Cloud Container Registry
How to store container images in GCP
The GCP container registry is a container registry flavor which comes built-in with ZenML and uses the Google Artifact Registry or the Google Container Registry to store container images.
When to use it
You should use the GCP container registry if:
-
one or more components of your stack need to pull or push container images.
-
you have access to GCP. If you’re not using GCP, take a look at the other container registry flavors.
How to deploy it
Google Container Registry
Google Artifact Registry
When using the Google Container Registry, all you need to do is enabling it here.
When using the Google Artifact Registry, you need to:
How to find the registry URI
Google Container Registry
Google Artifact Registry
When using the Google Container Registry, the GCP container registry URI should have one of the following formats:
To figure our the URI for your registry:
-
Go to the GCP console.
-
Click on the dropdown menu in the top left to get a list of available projects with their names and IDs.
-
Use the ID of the project you want to use fill the template
gcr.io/<PROJECT_ID>
and get your URI (You can also use the other prefixes<us/eu/asia>.gcr.io
as explained above if you want your images stored in a different region).
When using the Google Artifact Registry, the GCP container registry URI should have the following format:
To figure our the URI for your registry:
-
Go here and select the repository that you want to uses to store Docker images. If you don’t have a repository yet, take a look at the deployment section.
-
On the top, click the copy button to copy the full repository URL.
How to use it
To use the Azure container registry, we need:
-
Docker installed and running.
-
The GCP CLI installed and authenticated.
-
The registry URI. Check out the previous section on the URI format and how to get the URI for your registry.
We can then register the container registry and use it in our active stack:
Additionally, we’ll need to configure Docker, so it can pull and push images:
Google Container Registry
Google Artifact Registry
For more information and a full list of configurable attributes of the GCP container registry, check out the API Docs.