Install on AWS
Stand up Definite in your own AWS account: EKS, RDS, S3, all driven by Terraform and the definite CLI.
This guide walks you through a production-grade on-prem install of Definite on AWS. You'll provision the infrastructure with Terraform, install the platform with the definite CLI, and tear it down cleanly when you're done.
By default, the install uses Definite-brokered DNS and TLS. Definite provides a URL like https://<slug>.onprem.definite.app during setup, so you do not need to configure Route 53 or any other customer DNS before the first successful install.
End to end: about 30 to 40 minutes, most of which is terraform apply waiting on EKS and RDS.
What gets created
| Resource | Notes |
|---|---|
| VPC | Private subnets for nodes and the database, public subnets for NAT and load balancers |
| EKS cluster | Kubernetes 1.30 (configurable), managed node group, OIDC provider enabled for IRSA |
| RDS Postgres 15 | Private (not publicly accessible), reachable only from the cluster security group |
| S3 bucket | Lakehouse data; public access blocked, encryption and versioning on |
| IAM IRSA roles | Least-privilege roles for the lakehouse and for Fi's Bedrock access |
| IAM user + access key | Static-credential fallback for the lakehouse (see IRSA vs access key) |
gp3 StorageClass | Cluster-default StorageClass the lakehouse PVC needs |
Every name, instance size, CIDR, and count is a Terraform variable with a sane default. Override only what you need to in terraform.tfvars.
Prerequisites
AWS credentials in your shell with permission to create VPC, EKS, RDS, S3, and IAM resources. The Terraform provider reads the standard AWS credential chain (env vars, shared config, SSO, instance profile). No secrets live in the Terraform code.
Install the following on the machine you'll run terraform and definite from:
| Tool | Version | Check |
|---|---|---|
terraform | 1.5+ | terraform version |
aws CLI | recent | aws --version |
kubectl | 1.28+ | kubectl version --client |
helm | 3.12+ | helm version |
Decide which LLM provider Fi will use. Bedrock is the most common choice for AWS deployments; this guide uses it as the default. Anthropic, Vertex, and Azure OpenAI are also supported. If you go with Bedrock, make sure you've requested model access for Claude in the target region, and pick a current (non-Legacy) model. If you're deploying outside a US region, also read Choosing a Bedrock model and inference profile first: the inference-profile prefix, cross-region IAM, and the Fi sandbox's model-ID handling all need attention there.
In the default brokered flow, you do not need a manual Definite setup token or license key. definite init uses your active AWS credentials to create a short-lived, signed STS GetCallerIdentity proof, exchanges that proof with Definite for a setup token, then receives the brokered DNS name and license. If your organization requires a manual/customer-owned mode, contact hello@definite.app.
For team use, configure an S3 backend in versions.tf before applying. A backend stub is committed in the module. Single-operator installs can skip this and use local state.
Phase 1: Provision AWS infrastructure with Terraform
Download the AWS Terraform module from the public release bucket and unpack it:
curl -fsSL https://storage.googleapis.com/definite-public/definite-onprem/latest/terraform-aws.tar.gz -o terraform-aws.tar.gz
curl -fsSL https://storage.googleapis.com/definite-public/definite-onprem/latest/terraform-aws.tar.gz.sha256 | shasum -a 256 -c -
tar -xzf terraform-aws.tar.gz
cd definite-aws-terraform
To pin a specific release, replace latest with a version tag (for example v0.0.11).
1. Configure inputs
Copy the example tfvars file and edit it:
cp terraform.tfvars.example terraform.tfvars
$EDITOR terraform.tfvars
A minimal terraform.tfvars is just two lines:
region = "<your-region>"
name_prefix = "<your-name-prefix>"
Everything else has a default. Common overrides:
# Lock the EKS public API endpoint to your office or VPN CIDRs.
cluster_endpoint_public_access_cidrs = ["<your-cidr>/24"]
# Production hardening.
rds_multi_az = true
rds_deletion_protection = true
# Bedrock model access (must be enabled in the AWS console first).
# Use current (non-Legacy) model IDs available in YOUR region.
bedrock_model_ids = ["anthropic.claude-sonnet-4-6"]
Non-US regions need extra Bedrock care. The module and chart default to us.-prefixed inference profiles, and a cross-region profile dispatches compute to a sibling region (for example an au. profile in ap-southeast-2 runs inference in ap-southeast-4). If you're deploying outside the US, read Choosing a Bedrock model and inference profile before you apply, so the IAM policy covers every region the profile routes to and you don't pick a Legacy model.
See the README.md included in the module for the full list of variables.
2. Init, plan, apply
terraform init
terraform plan
terraform apply
terraform apply takes 20 to 25 minutes (mostly EKS and RDS). When it finishes, every value you need is in terraform output.
3. Read the outputs
Inspect the non-sensitive outputs:
terraform output
For sensitive values, read them explicitly with -raw:
terraform output -raw rds_password
terraform output -raw lakehouse_s3_secret_access_key
terraform output -raw postgres_url
The values you'll feed into config.yaml are summarized here:
| Terraform output | Goes into |
|---|---|
cluster_name | aws eks update-kubeconfig --name ... |
region | object_store.region, llm.region |
postgres_url (sensitive) | postgres.url |
rds_password (sensitive) | POSTGRES_PASSWORD env var |
lakehouse_bucket_name | object_store.bucket |
lakehouse_prefix | lakehouse.prefix |
lakehouse_s3_access_key_id | S3_ACCESS_KEY_ID env var |
lakehouse_s3_secret_access_key (sensitive) | S3_SECRET_ACCESS_KEY env var |
bedrock_irsa_role_arn | Post-install kubectl annotate on the definite ServiceAccount (see Bedrock IRSA) |
The module also emits a ready-to-paste, non-secret config.yaml snippet:
terraform output -raw config_yaml_fragment
IRSA vs access key
The module emits both an IRSA role and an IAM user + access key for lakehouse S3 access. Both share one identical least-privilege policy.
| Option | When to use |
|---|---|
Access key (lakehouse_s3_access_key_id, lakehouse_s3_secret_access_key) | Use this today. The lakehouse reads S3 through DuckDB's httpfs extension, which speaks the S3 API with static credentials, not the AWS SDK, so it can't assume an IRSA role yet. |
IRSA role (lakehouse_irsa_role_arn) | The end state. Once the lakehouse gains SDK-based S3 support, annotate the ServiceAccount with this role's ARN and delete the IAM user. No infra change needed. |
Fi's Bedrock access uses IRSA today (no static credentials).
Phase 2: Install Definite with the definite CLI
1. Install the CLI
curl -fsSL https://storage.googleapis.com/definite-public/definite-onprem/install.sh | sh
The install script detects your OS and architecture, downloads the matching prebuilt binary from a public Google Cloud Storage bucket, verifies its SHA256 checksum, and places definite on your PATH (default: $HOME/.local/bin). Binaries are published for macOS and Linux (arm64 and x86_64), and are uploaded by the release workflow using short-lived Workload Identity Federation credentials (no long-lived keys).
To pin a version, set DEFINITE_VERSION before piping to sh:
curl -fsSL https://storage.googleapis.com/definite-public/definite-onprem/install.sh \
| DEFINITE_VERSION=v0.0.11 sh
Verify:
definite version
2. Point kubectl at the new cluster
aws eks update-kubeconfig \
--region "$(terraform output -raw region)" \
--name "$(terraform output -raw cluster_name)"
kubectl get nodes
You should see your managed node group's nodes in the Ready state.
3. Bootstrap cluster prerequisites
definite bootstrap installs the cluster-level pieces that definite init assumes are already present:
| Prerequisite | What it provides |
|---|---|
| Ingress controller | HTTP/S routing for the deployment's Ingress resource |
| Definite-brokered DNS/TLS readiness | The default setup path uses the Definite setup broker and the returned *.onprem.definite.app URL |
| agent-sandbox CRDs | Custom resources the Fi runtime uses to dispatch per-run sandboxes |
Run it once against the fresh cluster:
definite bootstrap
--dry-run prints what it would install without touching the cluster. The command is idempotent; safe to re-run.
4. Let definite init request Definite-brokered DNS
The ingress controller provisions an AWS Network Load Balancer. Wait for it to land, then grab its hostname:
LB_HOST=$(kubectl get svc ingress-nginx-controller -n ingress-nginx \
-o jsonpath='{.status.loadBalancer.ingress[0].hostname}'
)
echo "$LB_HOST"
You'll get something like <random-id>.elb.<your-region>.amazonaws.com.
For the default path, do not stop here to ask the customer to create a CNAME. definite init calls the Definite setup broker for you, using the ingress target above. The backend contract is POST /onprem/v1/setup-sessions, but users and agents should not run a direct curl by default.
definite init --config config.yaml --dns-mode definite-brokered
The CLI returns a URL like:
https://<slug>.onprem.definite.app
Customer-owned DNS is supported as an advanced/custom production option after the system is healthy. If the customer explicitly selected that mode, create a Route 53 or external CNAME from the customer hostname to $LB_HOST and use the released CLI's customer-owned mode. The expected flag shape is --dns-mode customer-owned --hostname <hostname>. Private/internal production deployments may also need a customer certificate or private CA. Do not use nip.io, cert-manager, or Let's Encrypt as the default first-run path.
5. Build config.yaml
Start from the EKS example config: minimal-eks.yaml. The shape:
deployment:
name: definite
namespace: definite
dns_mode: definite-brokered
broker:
# Optional. Omit for the default AWS path: definite init uses the active AWS
# credential chain to acquire a short-lived setup token automatically.
# setupToken:
# env: DEFINITE_ONPREM_SETUP_TOKEN
postgres:
url: postgres://<rds-user>:${POSTGRES_PASSWORD}@<rds-endpoint>:5432/<db-name>
object_store:
type: s3
bucket: <bucket-name> # terraform output lakehouse_bucket_name
region: <your-region> # terraform output region
credentials:
key_id:
env: S3_ACCESS_KEY_ID
secret:
env: S3_SECRET_ACCESS_KEY
lakehouse:
prefix: lake/ # terraform output lakehouse_prefix
storage:
size: 50Gi
storage_class_name: gp3
auth:
mode: oidc # or `local` for username/password auth
issuer: https://<your-okta-domain>
client_id: definite-onprem
client_secret:
env: OIDC_CLIENT_SECRET
llm:
provider: bedrock
region: <your-region>
model: anthropic.claude-sonnet-4-6 # current, non-Legacy model in your region
# Credentials via IRSA; no credentials block needed.
# Non-US regions: the bedrock provider path may not resolve non-`us.` profiles;
# see "Non-US regions: route Fi through the LiteLLM proxy" below.
resources:
api:
replicas: 2
cpu: "1"
memory: 2Gi
lakehouse:
replicas: 1
cpu: "4"
memory: 16Gi
frontend:
replicas: 2
cpu: 500m
memory: 512Mi
job_runner:
replicas: 1
cpu: 500m
memory: 1Gi
The fastest way to fill in postgres.url, object_store.bucket, and friends is to paste the output of terraform output -raw config_yaml_fragment directly into your config.yaml.
For the full list of knobs (image registry overrides, ingress class, sandbox configuration, etc.), see the config reference in Definite's built-in docs, available in-product once your deployment is running.
6. Export secrets
config.yaml references env vars for every secret. Export them from Terraform outputs:
export POSTGRES_PASSWORD=$(terraform output -raw rds_password)
export S3_ACCESS_KEY_ID=$(terraform output -raw lakehouse_s3_access_key_id)
export S3_SECRET_ACCESS_KEY=$(terraform output -raw lakehouse_s3_secret_access_key)
export OIDC_CLIENT_SECRET=... # only if auth.mode: oidc
Do not export LICENSE_KEY or DEFINITE_ONPREM_SETUP_TOKEN for the default brokered flow. definite init obtains the setup token and license from Definite after proving control of the active AWS credentials.
Don't commit config.yaml, terraform.tfvars, or terraform.tfstate to a public repo. The state file holds the RDS password and the S3 secret in cleartext.
7. Preflight with definite doctor
definite doctor --config config.yaml
doctor runs a battery of preflight checks: it connects to Postgres and runs SELECT version(), validates the Kubernetes context, checks object-store config shape, and (for Anthropic) pings the LLM API. Fix anything it flags before moving on.
8. Deploy with definite init
definite init --config config.yaml
init re-runs preflight, renders the bundled Helm chart with your values, and runs helm upgrade --install. It waits for pods to reach Ready by default. Useful flags:
| Flag | Purpose |
|---|---|
--dry-run | Render values, don't apply |
--wait=false | Return as soon as Helm finishes; don't wait for pods |
--skip-preflight | Skip doctor. Use only when the per-cloud troubleshooting path says a private-network check is expected to fail from your laptop |
Watch the rollout in another terminal:
definite status --config config.yaml
definite logs api --follow
9. Set the initial admin user
The chart does not auto-create an initial admin. After definite init returns successfully and the pods are Ready, set INITIAL_ADMIN_EMAIL and INITIAL_ADMIN_PASSWORD on the api Deployment; the api creates the admin record on its next start.
ADMIN_PASSWORD=$(openssl rand -base64 24 | tr -dc 'A-Za-z0-9' | head -c 24)
kubectl set env deploy/definite-api -n definite \
INITIAL_ADMIN_EMAIL=<your-email> \
INITIAL_ADMIN_PASSWORD="$ADMIN_PASSWORD"
kubectl rollout status deploy/definite-api -n definite
echo "Admin password: $ADMIN_PASSWORD"
Save the password somewhere safe (1Password, Vault, etc.).
The admin bootstrap env vars are only needed to create the initial admin. As of the v0.0.11 install path, this API rollout is expected to complete without a manual lakehouse restart.
When the brokered URL reports DNS/TLS ready, open https://<brokered-hostname> in a browser and log in with the admin email and password from above.
Want Google SSO instead of local auth? See the Google SSO guide. You'll add an auth.oidc block to your config.yaml and re-run definite upgrade — no need to redo the install.
Bedrock IRSA
If you're using Bedrock as the LLM provider (the default for AWS), Fi authenticates to Bedrock via IRSA: the pod's ServiceAccount must carry an eks.amazonaws.com/role-arn annotation pointing at the IRSA role Terraform created. There is no API key for Bedrock; the coding agent resolves credentials from the AWS credential chain (the projected web-identity token from IRSA, plus a region).
Confirm the annotation after definite init, and apply it if it is missing:
BEDROCK_ROLE_ARN=$(terraform output -raw bedrock_irsa_role_arn)
kubectl annotate serviceaccount definite -n definite \
eks.amazonaws.com/role-arn="$BEDROCK_ROLE_ARN" --overwrite
# Restart the api pod so it picks up the projected token for the new role.
kubectl rollout restart deploy/definite-api -n definite
kubectl rollout status deploy/definite-api -n definite
A subsequent definite upgrade preserves the annotation (Helm's three-way merge leaves unmanaged fields alone), but re-apply it if anyone does a helm uninstall + reinstall.
Fi doesn't run in definite-api. Each Fi conversation is dispatched into a short-lived sandbox pod (the agent-sandbox CRDs from definite bootstrap; you'll see definite-fi-warm-* pods pre-warmed and ready). Those sandbox pods are what call the model, so getting the model ID and region right matters as much as the IRSA role. The rest of this section covers the model-selection traps, which are the most common reason Fi fails after a clean install.
Choosing a Bedrock model and inference profile
Bedrock Claude access goes through a cross-region inference profile, not the bare foundation model ID. Inference profiles are prefixed by geography:
| Prefix | Geography | Example region |
|---|---|---|
us. | United States | us-east-1, us-west-2 |
eu. | Europe | eu-central-1, eu-west-1 |
apac. | Asia Pacific (broad) | several AP regions |
au. | Australia | ap-southeast-2 (Sydney) |
You must use the prefix that matches your region. The Terraform module and the bundled Helm chart default to us. everywhere, which only works in US regions. In other regions a us. profile either doesn't exist or the bare foundation ID is rejected with on-demand throughput isn't supported. Pick the profile prefix for your geography and a current (non-Legacy) model ID, for example:
# terraform.tfvars — example for ap-southeast-2 (Sydney)
bedrock_model_ids = [
"anthropic.claude-sonnet-4-6",
"anthropic.claude-opus-4-7",
"anthropic.claude-sonnet-4-5-20250929-v1:0",
"anthropic.claude-haiku-4-5-20251001-v1:0",
]
Cross-region profiles dispatch compute to a sibling region. An au.* profile invoked in ap-southeast-2 (Sydney) routes the actual inference to ap-southeast-4 (Melbourne). The IAM policy attached to the Bedrock IRSA role must therefore allow bedrock:InvokeModel* on the foundation model ARNs in every region the profile can route to, not just your primary region. Scoping the policy to only ap-southeast-2 produces AccessDenied at invoke time even though the profile and model access look correct. Check the AWS docs for which regions your chosen profile fans out to, and add all of them to the policy (and to the inference-profile registration).
Legacy models are rejected outside US regions. The upstream Terraform module has historically hardcoded us.anthropic.claude-sonnet-4-20250514-v1:0, which is marked Legacy in some regions and fails with ResourceNotFoundException: Access denied. This Model is marked by provider as Legacy. Use a current model ID for your region and confirm model access is granted in the Bedrock console for that region before installing.
Non-US regions: route Fi through the LiteLLM proxy
The Fi sandbox client (@earendil-works/pi-ai) normalizes Bedrock model IDs before calling Bedrock, and today it only understands two shapes: a us.-prefixed profile ID (passed through), or an anthropic.-prefixed foundation ID (it prepends us.). Any other prefix, including au., eu., and apac., gets mangled (au.anthropic.claude-sonnet-4-6 becomes us.anthropic.au.anthropic.claude-sonnet-4-6) and Fi fails with:
Run failed - failed to publish Pi events: Validation error:
The provided model identifier is invalid.
You may also see this surface earlier as No API key found for amazon-bedrock. Use /login ... from /opt/fi-agent/..., which is the agent's generic fallback when it can't resolve a usable Bedrock target.
Until the sandbox client handles non-US prefixes natively, the working path for non-US regions is to point Fi at the bundled LiteLLM proxy (the definite-litellm deployment), which does the model mapping and Bedrock auth for you. This is an advanced, manual path:
- Switch the chart to the
litellmprovider. ThedefiniteCLI'sconfig.yamlonly acceptsprovider: anthropic | bedrock | vertex | azure_openai, so you can't select LiteLLM through the CLI. Apply it with a direct Helm override instead:
# litellm-override.yaml
llm:
provider: litellm
model: claude-sonnet-4-6
region: ap-southeast-2
litellmUpstream: bedrock
litellmImage: "ghcr.io/berriai/litellm:main-v1.82.0-stable"
apiKey: "<LITELLM_MASTER_KEY>" # see step 3
helm upgrade definite ~/.cache/definite/chart-<version> -n definite \
--reuse-values -f litellm-override.yaml
- Patch the LiteLLM ConfigMap to your region's profile IDs. The chart ships
definite-litellm-confighardcoded withus.*model IDs, so editdefinite-litellm-configto map eachmodel_nameto the correctbedrock/<prefix>.anthropic....target andaws_region_name, then restart the proxy:
kubectl edit configmap definite-litellm-config -n definite
# e.g. claude-sonnet-4-6 -> bedrock/au.anthropic.claude-sonnet-4-6, aws_region_name: ap-southeast-2
kubectl rollout restart deployment/definite-litellm -n definite
- Set a LiteLLM master key. With the
bedrockprovider thellm-api-keyentry indefinite-secretsis empty (Bedrock uses IRSA, not a key). LiteLLM needs one, so generate a key, reference it asLITELLM_MASTER_KEY(general_settings.master_key), and patch it intodefinite-secrets.
Re-apply steps 2 and 3 after any definite upgrade or helm upgrade that re-renders the LiteLLM section, because the chart resets definite-litellm-config back to the us.* defaults. This manual path is a stopgap for non-US Bedrock; if you're standing up a non-US region, mention it to hello@definite.app so you get a chart build that parameterizes the inference-profile prefix.
The path that should work end to end once configured is: Fi sandbox → definite-litellm (port 4000) → Bedrock. Smoke-test it from inside the cluster:
kubectl run llm-smoke --rm -it --image=curlimages/curl -n definite --restart=Never -- \
curl -s http://definite-litellm.definite.svc.cluster.local:4000/v1/chat/completions \
-H "Authorization: Bearer <LITELLM_MASTER_KEY>" -H "Content-Type: application/json" \
-d '{"model":"claude-sonnet-4-6","messages":[{"role":"user","content":"say Ready"}]}'
Day-2 operations
The same CLI handles upgrades, logs, license, and lakehouse maintenance. A few of the most common commands:
definite status --config config.yaml # `kubectl get pods,svc,ingress` for the namespace
definite logs api --follow # stream component logs
definite upgrade --config config.yaml # re-render and re-apply with the current CLI version
definite license status # show the deployment's live plan + activation status
definite run maintenance stats # lakehouse file/snapshot stats
Definite's built-in docs include a full CLI reference for every command and flag.
Phase 3: Teardown
Delete the ingress-nginx load balancer before running terraform destroy. definite bootstrap provisions an AWS Network Load Balancer through a Kubernetes Service: LoadBalancer. The NLB is owned by Kubernetes, not Terraform, and its ENIs in the public subnets block terraform destroy with DependencyViolation errors after ~20 minutes of retry.
First, delete the orphaned NLB so Terraform can clean up the VPC:
VPC=$(terraform output -raw vpc_id)
LB_ARN=$(aws elbv2 describe-load-balancers \
--query "LoadBalancers[?VpcId=='$VPC'].LoadBalancerArn" --output text)
[ -n "$LB_ARN" ] && aws elbv2 delete-load-balancer --load-balancer-arn "$LB_ARN"
Wait 30 to 60 seconds for the ENIs to clear, then destroy the rest with Terraform:
cd definite-aws-terraform
terraform destroy
A couple of safety rails are on by default:
| Variable | Default | Effect |
|---|---|---|
rds_deletion_protection | false (set to true for production) | When true, RDS refuses to be deleted; flip it to false first |
lakehouse_force_destroy | false | Non-empty buckets won't be deleted; flip it to true if you really mean to remove the bucket and its contents |
For production teardowns, snapshot RDS and back up the S3 bucket first; once Terraform deletes them, they're gone.
Troubleshooting
| Symptom | Likely cause | Fix |
|---|---|---|
terraform apply hangs on EKS | Cluster takes 15-20 min to provision; this is normal | Wait |
Lakehouse pod stuck Pending on PVC | No default StorageClass | Confirm gp3 StorageClass is present: kubectl get storageclass. The module creates it by default; set create_gp3_storage_class = true if you disabled it |
definite doctor Postgres check fails with "connect timeout" or "could not reach postgres" | RDS is not publicly accessible (no public endpoint); the check is running from a laptop outside the VPC | Expected for private RDS from a laptop. The in-cluster API pods reach RDS over the VPC's private network. To fully validate before install, run definite doctor from a bastion host or an in-cluster pod. Use --skip-preflight only for this known private-network check, not for object-store, Kubernetes, license, or LLM failures |
| LB hostname never appears | Ingress controller isn't running, or the AWS Load Balancer Controller fights with ingress-nginx | kubectl get pods -n ingress-nginx; if you installed both controllers, pick one |
| Brokered URL never becomes ready | The setup broker has not pointed *.onprem.definite.app at the NLB yet, or the NLB hostname is wrong | Re-run definite init --config config.yaml --dns-mode definite-brokered, confirm $LB_HOST matches the ingress Service, and retry before debugging the app |
| Customer-owned hostname does not work | Customer-owned DNS was selected, but the CNAME does not point at the NLB or the custom cert/private CA path is incomplete | Fix the customer DNS/cert path or switch back to the default Definite-brokered DNS mode for first install |
| Fi can't reach Bedrock | The definite ServiceAccount isn't annotated with the Bedrock IRSA role, or the model isn't enabled in the region | Annotate the SA with the Bedrock IRSA role ARN (see Bedrock IRSA), and request model access in the AWS Bedrock console |
ResourceNotFoundException: ... This Model is marked by provider as Legacy | The model ID (often the module's hardcoded us.anthropic.claude-sonnet-4-20250514-v1:0) is Legacy in your region | Set bedrock_model_ids / llm.model to a current model available in your region. See Choosing a Bedrock model |
Fi fails with The provided model identifier is invalid (or No API key found for amazon-bedrock. Use /login ... from /opt/fi-agent/...) | The Fi sandbox client only normalizes us./anthropic. model prefixes; a non-US profile (au., eu., apac.) gets mangled | Route Fi through the LiteLLM proxy for non-US regions. See Non-US regions |
Bedrock invoke returns AccessDenied even though model access is granted | A cross-region inference profile dispatches compute to a sibling region not covered by the IAM policy (e.g. au.* in ap-southeast-2 runs in ap-southeast-4) | Add the foundation model ARNs for all regions the profile routes to, to the Bedrock IRSA policy |
definite init/upgrade fails with unknown flag: --force-conflicts | Some CLI builds pass helm upgrade --install ... --force-conflicts, which isn't a valid Helm flag | Known CLI bug. Report it to hello@definite.app; as a stopgap, wrap helm with a script that strips --force-conflicts before calling the real binary |
definite init errors with deployments.apps "definite-lakehouse" not found | Stale CLI readiness check: in recent chart versions the lakehouse is embedded (DuckDB) in the API pod, not a separate deployment | Cosmetic. Confirm pods are Running with definite status; the install actually succeeded. Report the stale check to hello@definite.app |
| You can log in, but every product page or API call returns HTTP 403 | The deployment is unlicensed: config.yaml has no license block, or the key is wrong | Add a license block with your Definite-issued key and run definite upgrade --config config.yaml. definite init prints an UNLICENSED warning when the block is missing |
Next steps
- Connect a data source to start ingesting data.
- Set up the MCP server so Claude, Cursor, or Windsurf can query your deployment.
- For deeper config (custom container registry, sandbox network policies, OIDC tuning), see the config reference in Definite's built-in docs.
Support
For issues or questions, contact hello@definite.app.