On-Premise Deployment
Self-hosted deployment guide.
For organizations that require full data sovereignty, SUPi can be deployed entirely within your data center.
Installation
# Pull the SUPi Helm chart
helm repo add supi https://charts.supi.ai
helm repo update
# Install on Kubernetes
helm install supi supi/supi-platform \
--namespace supi \
--create-namespace \
--set license.key=YOUR_LICENSE_KEY \
--set database.host=your-postgres-host \
--set database.password=your-db-password \
--values custom-values.yaml
Configuration
Key configuration options in custom-values.yaml:
platform:
replicas: 3
resources:
requests:
cpu: "4"
memory: "16Gi"
limits:
cpu: "8"
memory: "32Gi"
ingestion:
workers: 4
buffer_size: 10000
inference:
gpu_enabled: false
batch_size: 256
storage:
type: s3-compatible # MinIO, Ceph, etc.
endpoint: minio.local:9000
Updates
SUPi releases monthly updates. For on-premise deployments, updates are applied via Helm upgrades with zero-downtime rolling deployments.