> ## Documentation Index
> Fetch the complete documentation index at: https://docs.falkordb.com/llms.txt
> Use this file to discover all available pages before exploring further.

> ## Agent Instructions
> FalkorDB is a graph database that speaks the Redis protocol. Queries are issued as OpenCypher through the GRAPH.QUERY and GRAPH.RO_QUERY commands, not over Bolt or a SQL connection.
> FalkorDB implements a subset of OpenCypher with proprietary extensions. Do not assume Neo4j-only syntax or procedures are available — check /cypher/cypher-support and /cypher/known-limitations before using a clause.
> FalkorDB is the successor to RedisGraph, but they are separate products. Do not present RedisGraph commands, versions, or limitations as current FalkorDB behavior.
> Use the official clients listed in /getting-started/clients rather than generic Redis or Neo4j drivers, and prefer the language the user is already working in.
> Configuration parameters are set with GRAPH.CONFIG SET or at startup; cite the exact parameter name from /getting-started/configuration rather than inventing one.
> This site covers four products: FalkorDB (core), FalkorDB Cloud, FalkorDB Enterprise, and the GraphRAG SDK. Name which one an answer applies to, since setup and operations differ.

# Compatibility matrix

> Subchart and platform versions that ship with each FalkorDB Enterprise release.

Every FalkorDB Enterprise release pins the versions below. Installing a release
installs exactly these subcharts, so pick the Enterprise version rather than
pinning subcharts individually.

## Release channels

<CardGroup cols={3}>
  <Card title="stable" icon="circle-check">
    The current recommended release, and what a default install gets. Use this
    unless you have a reason not to.
  </Card>

  <Card title="beta" icon="flask">
    Early access to new capabilities. Not covered by production support.
    Published as prerelease versions such as `0.5.0-beta.1`, so a default
    install never picks one up.
  </Card>

  <Card title="lts" icon="shield">
    Long-term support. Receives fixes for an extended window and is the target
    for conservative upgrade policies.
  </Card>
</CardGroup>

Install the latest stable release by omitting `--version`. To try a beta, pass
`--channel beta`, or name the exact version:

```bash theme={null}
curl -fsSL https://falkordb.github.io/FalkorDB-Enterprise/install.sh | \
  bash -s -- --channel beta
```

## Platform components

| Enterprise | Channel | KubeBlocks      | FalkorDB addon | Browser | SQL migration | Snapshot Controller | KubeBlocks CRDs  |
| ---------- | ------- | --------------- | -------------- | ------- | ------------- | ------------------- | ---------------- |
| `0.4.1`    | stable  | `1.2.0-alpha.1` | `1.7.2`        | `2.4.0` | `1.1.6`       | `5.0.3`             | `v1.2.0-alpha.1` |
| `0.4.0`    | stable  | `1.2.0-alpha.1` | `1.7.2`        | `2.0.9` | `1.1.6`       | `5.0.3`             | `v1.2.0-alpha.1` |
| `0.3.1`    | stable  | `1.2.0-alpha.1` | `1.7.2`        | `2.0.9` | `1.1.6`       | `5.0.3`             | `v1.2.0-alpha.1` |
| `0.3.0`    | stable  | `1.2.0-alpha.1` | `1.7.1`        | `2.0.9` | `1.1.2`       | `5.0.3`             | `v1.2.0-alpha.1` |

<Note>
  **KubeBlocks CRDs** is pinned separately from the KubeBlocks chart. The installer
  applies CRDs from that reference because later KubeBlocks branches drop fields the
  FalkorDB addon depends on. Override it with `KUBEBLOCKS_CRD_REF` only when advised.
</Note>

## Storage drivers

These subcharts are optional and disabled by default. They are pinned per release
so an enabled driver stays reproducible.

| Enterprise | csi-hostpath-driver | csi-s3   | csi-driver-nfs |
| ---------- | ------------------- | -------- | -------------- |
| `0.4.1`    | `1.14.0`            | `0.43.7` | `4.13.1`       |
| `0.4.0`    | `1.14.0`            | `0.43.4` | `4.13.1`       |
| `0.3.1`    | `1.14.0`            | `0.43.4` | `4.13.1`       |
| `0.3.0`    | `1.14.0`            | `0.43.4` | `4.13.1`       |

## Admin components

The Admin Server, Admin UI, and Admin CLI images are tagged with the Enterprise
chart version. Chart `0.4.1` runs Admin Server `0.4.1`, and so on.

## Related

<CardGroup cols={2}>
  <Card title="Changelog" icon="list" href="/enterprise/upgrades/changelog">
    What changed in each release.
  </Card>

  <Card title="Upgrade FalkorDB Enterprise" icon="arrow-up" href="/enterprise/upgrades/enterprise">
    How to move between versions.
  </Card>
</CardGroup>
