> ## Documentation Index
> Fetch the complete documentation index at: https://docs.getcollate.io/llms.txt
> Use this file to discover all available pages before exploring further.

# BYOC Additional Settings

> Override image settings and image pull secrets when hosting your own Collate AI Proxy Docker images.

# Additional Settings

The variables described below have default values and are optional unless you need to override the default behavior.

## Host Your Own Docker Images

Use the same strategy to pull the Collate AI Proxy Docker images that you already use for the Collate images.

Since both applications are deployed in the same namespace, configure them to use the same image pull secrets.

If you want to use your own Docker images, update the following Helm values under `.Values.image`:

```yaml theme={null}
image:
  repository: my-docker-repostory.example/caip
  tag: om-2.0.2-cl-2.0.2

imagePullSecrets:
  - name: my-credentials-secret
```

Do not forget to add the credentials to your Docker registry in `.Values.imagePullSecrets`.

Leaving `image.tag` empty falls back to the chart `appVersion`, so the image you get tracks the chart version you installed.

## Pin the Chart Version

`helm install` takes the newest chart in the repository unless you pin it. Pin the version in environments where you need the same chart on every install:

```shell theme={null}
helm search repo collate-ai-proxy/collate-ai-proxy --versions
helm install caip collate-ai-proxy/collate-ai-proxy --version <chart-version> --values values.yaml -n <collate-namespace>
```

## Navigation

<CardGroup cols={2}>
  <Card title="Configuration Reference" href="/ai-2-0/how-to-guides/deployment/byoc/kubernetes/collate-ai-proxy/configuration-reference">
    \< Previous
  </Card>
</CardGroup>
