Providers

Providers

Managed cloud SQL and Redis providers behind oke's postgres and redis drivers — dashboard click-paths, pooling, and gotchas.

Every provider below speaks a protocol oke already drives — Postgres wire or Redis wire. Hand the connection string to that driver; no new driver id, no Flow code changes.

These managed providers are real, working infrastructure choices behind the same two templates (standard, advanced) and the same eight elements — not alternative products or separate frameworks.

The one rule

Vendor choice lives in a connection URL (DATABASE_URL / REDIS_URL) — never in drivers.store.sql / drivers.store.kv, which only ever say postgres or redis.

SQL providers

Managed Postgres-wire databases — set DATABASE_URL, driver stays postgres.

Redis providers

Managed Redis-wire caches — set REDIS_URL, driver stays redis. { durable: true } KV lives in your SQL database, not a second Redis.

Learn more

Next

On this page