Skip to main content

Hosting your own Docker images

If you prefer to mirror Collate images to your own container registry (e.g., Google Artifact Registry), set the following values: For the Hybrid Runner image:
image:
  repository: my-repo.com/my-image
  tag: my-tag
imagePullSecrets: my-credentials
For the Ingestion pods:
config:
  ingestionPods:
    repository: my-repo.com/my-image
    tag: my-tag
    imagePullSecrets: my-credentials
If you host images yourself, make sure to mirror both the Hybrid Runner image and the Ingestion pod image.

Managing your own image tags

By default, the Hybrid Runner automatically resolves image tags to match the Collate server version (e.g., om-1.11.1-cl-1.11.1). If you manage your own tags, disable this automatic resolution:
extraEnvs:
  - name: DYNAMIC_INGESTION_VERSION_ENABLED
    value: 'false'