Skip to content

Flowise

Helm chart for deploying Flowise on Kubernetes using the official flowiseai/flowise image, with a simple standalone topology and a scalable queue topology for larger workloads.

Key Features

  • Official Flowise image based on flowiseai/flowise
  • Standalone mode SQLite and local storage for simple installs
  • Queue mode separate main and worker deployments for scalable processing
  • Bundled PostgreSQL and Redis optional subcharts for queue mode
  • External SQL support external PostgreSQL or MySQL
  • S3-backed shared storage queue mode uses S3-compatible storage for shared blob data
  • Ingress support configurable ingress for the Flowise web UI

Installation

HTTPS Repository

helm repo add helmforge https://repo.helmforge.dev
helm repo update
helm install flowise helmforge/flowise

OCI Registry

helm install flowise oci://ghcr.io/helmforgedev/helm/flowise

Standalone Example

architecture:
  mode: standalone

flowise:
  appUrl: https://flowise.example.com

ingress:
  enabled: true
  ingressClassName: traefik
  hosts:
    - host: flowise.example.com
      paths:
        - path: /
          pathType: Prefix

Queue Example

architecture:
  mode: queue

flowise:
  replicaCount: 2

queue:
  worker:
    replicaCount: 2

persistence:
  enabled: false

postgresql:
  enabled: true

redis:
  enabled: true

storage:
  type: s3
  s3:
    bucketName: flowise
    existingSecret: flowise-s3

Key Values

KeyDefaultDescription
architecture.modestandaloneFlowise topology: standalone or queue
flowise.replicaCount1Number of main Flowise server replicas
queue.worker.replicaCount1Number of worker replicas in queue mode
database.modeautoDatabase mode: sqlite, external, or postgresql
postgresql.enabledfalseDeploy bundled PostgreSQL
redis.enabledfalseDeploy bundled Redis
storage.typelocalBlob storage type: local or s3
persistence.enabledtruePersist local Flowise data
flowise.appUrl""Public Flowise URL

Topology Notes

  • standalone defaults to SQLite plus a local PVC for the easiest install
  • queue requires Redis, a SQL database, storage.type=s3, and persistence.enabled=false
  • queue mode is intended for scale-out deployments with separate main and worker pods
  • local storage is intentionally single-node oriented

Version Note

  • the chart pins 3.1.1
  • this version was validated against the official GitHub release [email protected] and the official Docker Hub tag 3.1.1

More Information