This repository packages the Helm chart used to deploy the Collate AI Proxy (CAIP) as a standalone service.
charts/collate-ai-proxy/– main chart with templates, schema, and default values.
Key fields worth adjusting before deployment:
image.repository/image.tag– CAIP container image.collate.hostAndPort– URL to the Collate server the proxy reaches.serviceAccount.*– controls the ServiceAccount the deployment uses.service.*– service type and exposed ports.extraEnvs,envFrom,volumes,volumeMounts– customize runtime configuration.
Full schema validation is available via charts/collate-ai-proxy/values.schema.json.
serviceAccount.create: truecreates a ServiceAccount as part of the release. WhenserviceAccount.nameis left empty, the chart auto-generates a name based on the release.- Set
serviceAccount.nameto bind the deployment to a specific ServiceAccount. Ifcreateremainstrue, the chart will create that ServiceAccount; setcreate: falseto reuse an existing one. serviceAccount.annotationspropagates custom annotations to the created ServiceAccount, andserviceAccount.automountcontrols the default token mount behaviour on both the ServiceAccount and the pods.