Skip to main content

Helm Charts

Chart Values​

# values.yaml
replicaCount:
api: 3
worker: 5

image:
repository: proai/platform
tag: "2.0.0"

resources:
api:
cpu: "2"
memory: "4Gi"
worker:
cpu: "4"
memory: "8Gi"

database:
host: postgresql.proai.svc.cluster.local
port: 5432
name: proai
`

## Upgrading

`ash
helm upgrade proai proai/proai-platform -f values.yaml
`

## See Also

- [Kubernetes](/docs/deployment/kubernetes)