Skip to main content

Choose your deployment target

Applies to: Self-Managed

This section is for running DVARA in your own infrastructure. If you signed up at dvarahq.com, you're on DVARA Cloud — there's nothing to deploy; see DVARA Cloud instead. Not sure? See Deployment models.

Decision matrix

Docker ComposeKubernetes
Best forLocal dev, single-host demos, small teamsProduction at any scale
Setup timeMinutes1 hour
Provides its own PostgreSQLYes (bundled container)No (bring your own)
Horizontal scalingNoYes
Zero-downtime upgradesNoYes
Typical cost baselineFree (your hardware)Cluster cost + Postgres cost
DocsDocker Compose →Kubernetes (Helm) →

For managed-service deployments — AWS EKS, GCP GKE, Azure AKS, or DigitalOcean DOKS, each paired with the provider's managed PostgreSQL (RDS, Cloud SQL, Azure Database for PostgreSQL, DO Managed Databases) — the Kubernetes guide is the base. The same Helm chart runs unchanged on every managed Kubernetes control plane, with cloud-provider-specific IAM and networking applied through your provider's standard managed-Kubernetes guidance.

What every deployment needs

Regardless of target, every DVARA deployment needs:

  1. A PostgreSQL instance — the single source of truth for all configuration, audit events, and metering records. Version 14+. Schema is created automatically on first boot; point the gateway at an empty database and no manual setup is required.
  2. Provider credentials — at least one LLM provider API key (OpenAI, Anthropic, Gemini, Bedrock, etc.) supplied via environment variable, vault, or the Flightdeck BYOK UI.
  3. A license key — required at startup. The gateway refuses to start without DVARA_LICENSE_KEY; there is no operator-flippable bypass.

See Configuration Reference for the complete property list and environment-variable mapping that applies to all targets.

  • Docker Compose setup — single-host, bundled Postgres, fastest path to a working instance
  • Kubernetes (Helm) — production reference with autoscaling, PDBs, and external Postgres (works the same on EKS / GKE / AKS / DOKS)
  • Configuration Reference — every property, environment variable, and default in one place