Skip to content

Wallabag

Deploy Wallabag on Kubernetes — a self-hosted read-it-later application for saving and organizing web articles with full-text search, tagging, and offline reading.

Key Features

  • Article archiving — save articles from the web with full-text extraction
  • PostgreSQL backend — bundled subchart or external database
  • Optional Redis — session caching and performance optimization
  • S3 backup — scheduled PostgreSQL backup to S3-compatible storage
  • Ingress support — TLS via cert-manager with configurable ingress class

Installation

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

Basic Example

postgresql:
  enabled: true

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

Key Values

KeyDefaultDescription
postgresql.enabledtrueDeploy PostgreSQL subchart
redis.enabledfalseDeploy Redis subchart
ingress.enabledfalseEnable ingress
backup.enabledfalseEnable S3 backup CronJob

More Information

See the source code and full values reference on GitHub.