Skip to content

Automatisch

Deploy Automatisch on Kubernetes using the official automatischio/automatisch container image. Automatisch is an open-source business automation tool (self-hosted Zapier alternative) with pre-built integrations, visual workflow builder, and enterprise-grade security.

Key Features

  • PostgreSQL + Redis — bundled subcharts for database and queue backend
  • Pre-Built Integrations — connect with popular services out of the box
  • Auto-Generated Keys — encryption and session keys generated automatically
  • Visual Workflow Builder — drag-and-drop interface for creating automations
  • Webhook Triggers — start workflows from external events
  • Ingress Support — configurable ingress with TLS

Installation

HTTPS repository:

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

OCI registry:

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

Basic Example

# values.yaml
automatisch:
  webAppUrl: 'https://automate.example.com'

postgresql:
  enabled: true

redis:
  enabled: true

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

Key Values

KeyDefaultDescription
automatisch.webAppUrlhttp://localhost:3000Public URL of the web application
automatisch.appEnvproductionApplication environment
postgresql.enabledtrueEnable bundled PostgreSQL subchart
redis.enabledtrueEnable bundled Redis subchart
ingress.enabledfalseEnable ingress

More Information