- Storage, Config & Secrets
- YAML Configuration
YAML Configuration
Ironflow can be configured with a declarative YAML file instead of CLI flags and environment variables. One file describes your entire server infrastructure — from a local dev setup to a multi-tenant platform.
Why YAML?
Section titled “Why YAML?”Without YAML, configuring Ironflow means combining CLI flags, environment variables, and docker-compose files. The configuration is scattered and hard to reproduce. With ironflow.yaml, your entire infrastructure is a single, version-controlled file.
| Without YAML | With YAML |
|---|---|
--port 9123 --nats-url nats://h1:4222 --node-id node-1 + IRONFLOW_DATABASE_URL=... IRONFLOW_MASTER_KEY=... | ironflow serve -f ironflow.yaml |
| Configuration scattered across flags, env vars, compose files | Single file, checked into git |
| Easy to forget a flag when deploying | Reproducible on every boot |
Generate a Starter Template
Section titled “Generate a Starter Template”Use ironflow config init to generate a starter YAML for your deployment tier:
# Local development (minimal, SQLite, dev mode)ironflow config init > ironflow.yaml
# Production single-node (PostgreSQL, observability)ironflow config init --prod > ironflow.yaml
# Multi-node clusterironflow config init --kind cluster > ironflow.yaml
# Multi-tenant platformironflow config init --kind platform > ironflow.yamlThree Kinds
Section titled “Three Kinds”Every ironflow.yaml has a kind that determines which features and validations apply:
| Kind | Use Case | Requirements |
|---|---|---|
Server | Local dev, single-node production | None (SQLite + embedded NATS by default) |
Cluster | Multi-node horizontal scaling | PostgreSQL + external NATS + stable nodeId |
Platform | Multi-tenant SaaS | Everything in Cluster + organizations |
The kind you choose determines what fields are required. Start with Server and graduate to Cluster or Platform as your deployment grows.
Server: Local Development
Section titled “Server: Local Development”The simplest configuration — 5 lines to start:
apiVersion: ironflow/v1kind: Serverspec: port: 9123 auth: devMode: trueironflow serve -f ironflow.yamlThis boots Ironflow with embedded NATS (memory mode), SQLite, and authentication disabled. Similar to ironflow serve --dev, though the --dev flag also tightens crash-resume timings for faster local iteration.
Server: Single-Node Production
Section titled “Server: Single-Node Production”Add PostgreSQL, secrets encryption, and observability:
apiVersion: ironflow/v1kind: Serverspec: port: 9123
storage: driver: postgres url: ${IRONFLOW_DATABASE_URL} pool: maxConns: 25 minConns: 5 maxIdleTime: 30s
nats: storeDir: /data/nats
auth: masterKey: ${IRONFLOW_MASTER_KEY} jwtSecret: ${IRONFLOW_JWT_SECRET} # optional — auto-generated if empty
observability: tracing: endpoint: otel-collector:4317 sampleRate: 1.0 metrics: enabled: trueNotice the ${IRONFLOW_DATABASE_URL} syntax — secrets are never stored in the file. See Environment Variable References below.
Cluster: Multi-Node
Section titled “Cluster: Multi-Node”Scale horizontally with shared PostgreSQL and external NATS. Deploy the same file on every node — only nodeId differs (set via env var per node):
apiVersion: ironflow/v1kind: Clusterspec: port: 9123
storage: driver: postgres url: ${IRONFLOW_DATABASE_URL} pool: maxConns: 25 minConns: 5
nats: url: ${NATS_URL} # credentials: /path/to/nats.creds
cluster: nodeId: ${IRONFLOW_NODE_ID} staleClaimThreshold: 2m
auth: masterKey: ${IRONFLOW_MASTER_KEY} jwtSecret: ${IRONFLOW_JWT_SECRET} # optional — auto-generated if empty
observability: tracing: endpoint: otel-collector:4317 sampleRate: 1.0 metrics: enabled: trueCluster kind enforces three rules at startup:
- PostgreSQL required — SQLite does not support
SKIP LOCKEDfor distributed scheduling - External NATS required — embedded NATS is single-process only
- Stable
nodeIdrequired — used for claim ownership and log correlation
See Docker Compose Deployment for the full clustering guide.
Platform: Multi-Tenant
Section titled “Platform: Multi-Tenant”Declare organizations, projects, and environments. Ironflow creates them on first boot and is idempotent on subsequent boots:
apiVersion: ironflow/v1kind: Platformspec: port: 9123
storage: driver: postgres url: ${IRONFLOW_DATABASE_URL}
nats: url: ${NATS_URL}
cluster: nodeId: ${IRONFLOW_NODE_ID}
auth: masterKey: ${IRONFLOW_MASTER_KEY} jwtSecret: ${IRONFLOW_JWT_SECRET} # optional — auto-generated if empty
platform: organizations: - name: acme-corp projects: - name: payments environments: - name: development - name: staging - name: production - name: orders environments: - name: development - name: production - name: globex projects: - name: logistics environments: - name: productionPlatform inherits all Cluster requirements and adds:
- At least one organization — the platform must have tenants
- Unique names — duplicate org, project, or environment names within a parent are rejected
The default organization (
org_default) and its project/environment are always created first, regardless of what’s in the YAML. Your Platform organizations are created on top.
Environment Variable References
Section titled “Environment Variable References”The YAML file is safe to commit to git because secrets use ${VAR} references that resolve at boot time:
| Syntax | Behavior |
|---|---|
${VAR} | Required — startup fails with a clear error if not set |
${VAR:-default} | Optional — uses the default value if the env var is not set |
postgres://literal | Literal string — used as-is (no ${} means no resolution) |
Example:
storage: url: ${IRONFLOW_DATABASE_URL} # required — error if unset
nats: maxMemory: ${NATS_MAX_MEM:-256MiB} # optional — defaults to 256MiB
auth: masterKey: ${IRONFLOW_MASTER_KEY} # required — error if unset${VAR} is how the environment reaches a YAML-configured server for every field the
config parser owns. With
-f, the file is the source of truth: only CLI flags override it, and the env vars
the flag-only path reads (NATS_URL, NATS_CREDS_FILE, NATS_STORE_DIR,
NATS_FILE_STORAGE, NATS_STREAM_REPLICAS, IRONFLOW_MASTER_KEY,
IRONFLOW_JWT_SECRET, IRONFLOW_NODE_ID, IRONFLOW_STALE_CLAIM_THRESHOLD,
IRONFLOW_STALE_CLAIM_RECOVERY_INTERVAL) are not consulted. ironflow serve warns
and ironflow validate lists any that are set but ignored — NATS_URL dropped this
way boots every node on its own embedded NATS. IRONFLOW_DATABASE_URL is read under
driver: postgres as the URL source (the Helm shape); under driver: sqlite it is
ignored and listed like the others — the declared driver is the one that opens.
Three groups escape the rule, and they do not agree on precedence:
- The
IRONFLOW_OTEL_*/IRONFLOW_METRICS_ENABLEDvariables are read directly by the server and work either way. A field written inspec.observabilitywins over its environment variable; a field the file leaves out keeps its environment value. IRONFLOW_BLOB_URLandIRONFLOW_ARTIFACT_THRESHOLDare applied on both paths and overridespec.blobs.url/spec.blobs.artifactThreshold— the opposite precedence to observability. They are not in the ignored-and-warned set either, so a stray value silently redirects blob overflow with no startup notice.LOG_LEVELandLOG_FORMATare read by the CLI before any config is parsed.
The resolved value is used as the field’s value verbatim — it is never re-read as
YAML, so a password containing &, *, #, : or a newline lands intact
instead of being parsed as an anchor, alias, comment or extra key. References are
resolved in values only; ${VAR} in a key position is not substituted.
If an env var is not set and has no default, the error message tells you exactly which field and variable:
config file error: environment variable ${IRONFLOW_DATABASE_URL} is not setValidate Without Booting
Section titled “Validate Without Booting”Check your YAML for errors without starting the server:
ironflow validate -f ironflow.yamlThis parses the file, resolves ${VAR} references, runs kind-specific validation, and prints a summary:
Validating ironflow.yaml...
Kind: Cluster Storage: postgres (postgres://localhost/iron...) NATS: external (nats://h1:4222,h2:4222) Auth: enabled (master key set) Tracing: otel-collector:4317 (sample: 100%) Metrics: enabled (/metrics) Node ID: node-1
✓ Valid. Ready to boot with: ironflow serve -f ironflow.yamlExit code 0 means valid, exit code 1 means invalid.
The same checks run at ironflow serve -f time, so anything validate accepts boots, and anything it rejects fails fast instead of quietly falling back to a default:
- Unknown keys are errors. A typo like
staleClaimThresoldor a mis-nestedmasterKeyused to be dropped silently and never take effect. Both now fail with the offending field named. - Durations are parsed.
pushTimeout: 30secis rejected (30sis the Go duration form), as is any non-positive value. - Sizes are parsed.
nats.maxMemorymust be a byte size such as256MiBor4GB. - Numbers are range-checked.
minConnscannot exceedmaxConns,storage.pool.maxIdleTimemust be positive, andtracing.sampleRatemust be within 0.0–1.0 (a typo’d50for “50%” is rejected rather than silently clamped to full sampling).
The Tracing and Metrics lines report the effective configuration — the IRONFLOW_OTEL_* / IRONFLOW_METRICS_ENABLED environment of the shell you run validate in, with the file’s spec.observability values layered on top. That is exactly what serve boots with.
CLI Flag Overrides
Section titled “CLI Flag Overrides”CLI flags always take precedence over YAML values. This lets you use a shared YAML file but override specific settings per-node or per-environment:
# YAML says port 9123, but override to 8080 for this nodeironflow serve -f ironflow.yaml --port 8080
# YAML says dev mode is off, but enable it locallyironflow serve -f ironflow.yaml --devOnly flags you explicitly pass override the YAML. Unset flags preserve the YAML values.
Backward Compatibility
Section titled “Backward Compatibility”If you don’t use -f, nothing changes. All existing flags and environment variables work exactly as before:
# These still work — no YAML neededironflow serveironflow serve --port 9000ironflow serve --nats-url nats://h1:4222 --node-id node-1IRONFLOW_DATABASE_URL="postgres://..." ironflow serveThe -f flag is opt-in. You can adopt YAML incrementally.
Full Field Reference
Section titled “Full Field Reference”${VAR} is expanded in every value position, so any field below can be written as
field: ${VAR} — including numeric and boolean ones, which keep their type after
expansion (port: ${PORT} decodes as an int).
| Field | Type | Default | Notes |
|---|---|---|---|
apiVersion | string | — | Must be ironflow/v1 |
kind | string | — | Server, Cluster, or Platform |
spec.port | int | 9123 | HTTP server port |
spec.storage.driver | string | sqlite | sqlite or postgres |
spec.storage.url | string | — | PostgreSQL connection string |
spec.storage.path | string | .ironflow/ironflow.db | SQLite file path |
spec.storage.pool.maxConns | int | 25 | Max PostgreSQL connections. Set to 0 to leave pool sizing to pool_max_conns in the connection URL |
spec.storage.pool.minConns | int | 5 | Min PostgreSQL connections |
spec.storage.pool.maxIdleTime | duration | 30s | Idle connection timeout |
spec.blobs.url | string | — | Blob overflow backend. Empty uses local filesystem; s3://bucket?endpoint=...®ion=... selects S3-compatible storage. Environment override: IRONFLOW_BLOB_URL. See Artifact overflow to blob storage. |
spec.blobs.artifactThreshold | string | — | Size above which run/step outputs offload (1MB, 512KiB, etc.). Empty or 0 disables new offloads. Environment override: IRONFLOW_ARTIFACT_THRESHOLD. |
spec.nats.embedded | bool | true | Use embedded NATS (auto-set to false when url is set) |
spec.nats.url | string | — | External NATS URL |
spec.nats.credentials | string | — | Path to .creds file |
spec.nats.storeDir | string | — | JetStream storage directory |
spec.nats.maxMemory | string | 256MiB | JetStream memory limit (embedded NATS only). SI and IEC units both parse — MB is 10⁶, MiB is 2²⁰ |
spec.nats.fileStorage | bool | false | Create file-backed JetStream streams |
spec.nats.streamReplicas | int | 1 | JetStream stream replica count |
spec.auth.devMode | bool | false | Bypass all authentication |
spec.auth.masterKey | string | — | AES-256 key for secrets |
spec.auth.jwtSecret | string | — | JWT signing secret — auto-generated if empty |
spec.observability.tracing.endpoint | string | — | OTLP gRPC endpoint. Overrides IRONFLOW_OTEL_ENDPOINT |
spec.observability.tracing.sampleRate | float | 1.0 | Trace sampling rate. Must be 0.0–1.0; 0 is valid and means “exporter wired, sample nothing” |
spec.observability.tracing.serviceName | string | ironflow | OTel service name |
spec.observability.tracing.insecure | bool | true | Plaintext gRPC for OTLP |
spec.observability.metrics.enabled | bool | false | Enable Prometheus /metrics. Overrides IRONFLOW_METRICS_ENABLED |
spec.engine.pushTimeout | string | 10s | Push mode HTTP timeout |
spec.engine.schedulerInterval | string | 1s | Scheduler poll interval |
spec.engine.staleRunningTimeout | string | 5m | Push-mode stale running run timeout. Does not move the SQL recovery sweep, which stays at 5m so it can never drop below the SDK heartbeat |
spec.engine.retry.maxAttempts | int | 3 | Default retry attempts. Must be >= 1; 0 is rejected, not “no retries” |
spec.engine.retry.initialDelay | string | 1s | First retry delay |
spec.engine.retry.maxDelay | string | 5m | Maximum retry delay |
spec.engine.retry.backoff | float | 2.0 | Backoff multiplier. Must be >= 1; a value below 1 would make each retry faster than the last |
spec.cluster.nodeId | string | — | Stable node identifier |
spec.cluster.staleClaimThreshold | string | 2m | Dead node claim recovery |
spec.cluster.staleClaimRecoveryInterval | string | 60s | How often scheduler scans for orphaned claims |
spec.platform.organizations[].name | string | — | Organization name |
spec.platform.organizations[].projects[].name | string | — | Project name |
spec.platform.organizations[].projects[].environments[].name | string | — | Environment name |
What’s Next?
Section titled “What’s Next?”- Docker Compose Deployment — detailed clustering guide with Docker Compose examples
- Observability — tracing and metrics configuration
- API Keys — authentication setup
- Secrets Management — encrypting secrets at rest