This document explains how to configure Apigee hybrid to use images from a private container image repository.
Overview
All Apigee hybrid runtime images are hosted in the Artifact Registry (AR). If for any reason you wish to employ a private image container repository,
you can download the images from AR, push them to your private repository. Instead of overriding each component, you
can add hub details on the overrides:
For example, if the following hub is provided, it will automatically resolve
the image path:
hub:private-docker-host.example.com
as:
## an example of internal component vs 3rd party
containers:
- name: apigee-udca
image: private-docker-host.example.com/apigee-udca:1.14.1
imagePullPolicy: IfNotPresent
containers:
- name: apigee-ingressgateway
image: private-docker-host.example.com/apigee-asm-ingress:1.22.6-asm.2-distroless
imagePullPolicy: IfNotPresent
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-03-07 UTC."],[[["Apigee hybrid uses images hosted in the Artifact Registry, but you can configure it to use images from a private container repository."],["To use a private repository, download the desired images from the Artifact Registry and push them to your private repository."],["You can configure the `hub` property in your overrides file to specify the path to your private repository, which allows you to resolve image paths automatically."],["The document provides an example of how setting the `hub` property to `private-docker-host.example.com` automatically resolves to the correct image path for the apigee components."],["The document also provides a script to list all Apigee images hosted on the google cloud repository, which are pulled using the `apigee-pull-push.sh --list` script."]]],[]]