mirror of
https://github.com/nold360/hive-apps
synced 2024-11-15 18:19:34 +00:00
add: paperless
This commit is contained in:
parent
d165ab2551
commit
5f99d98fa6
2 changed files with 80 additions and 0 deletions
10
projects/paperless/project.yml
Normal file
10
projects/paperless/project.yml
Normal file
|
@ -0,0 +1,10 @@
|
|||
config:
|
||||
description: Paperless Document Management
|
||||
|
||||
apps:
|
||||
- name: paperless
|
||||
repoURL: https://k8s-at-home.com/charts/
|
||||
chart: paperless
|
||||
targetRevision: 8.3.0
|
||||
include:
|
||||
- ingress-internal
|
70
projects/paperless/values/paperless.yml
Normal file
70
projects/paperless/values/paperless.yml
Normal file
|
@ -0,0 +1,70 @@
|
|||
ingress:
|
||||
main:
|
||||
enabled: true
|
||||
annotations:
|
||||
cert-manager.io/cluster-issuer: vault-issuer
|
||||
traefik.ingress.kubernetes.io/router.tls: "true"
|
||||
hosts:
|
||||
- host: paperless.dc
|
||||
paths:
|
||||
- path: /
|
||||
pathType: Prefix
|
||||
tls:
|
||||
- secretName: paperless-tls
|
||||
hosts:
|
||||
- paperless.dc
|
||||
image:
|
||||
repository: jonaswinkler/paperless-ng
|
||||
tag: 1.5.0
|
||||
pullPolicy: IfNotPresent
|
||||
|
||||
# -- See the following files for additional environment variables:
|
||||
# https://github.com/jonaswinkler/paperless-ng/tree/master/docker/compose/
|
||||
# https://github.com/jonaswinkler/paperless-ng/blob/master/paperless.conf.example
|
||||
env:
|
||||
# -- Project name
|
||||
COMPOSE_PROJECT_NAME: paperless
|
||||
# -- Redis to use
|
||||
PAPERLESS_REDIS: redis://paperless-redis-master
|
||||
# -- OCR languages to install
|
||||
PAPERLESS_OCR_LANGUAGE: deu+eng
|
||||
USERMAP_UID: 1000
|
||||
USERMAP_GID: 1000
|
||||
PAPERLESS_TIME_ZONE: Europe/Amsterdam
|
||||
# -- Database host to use
|
||||
PAPERLESS_DBHOST:
|
||||
|
||||
persistence:
|
||||
# -- Configure persistence for data.
|
||||
data:
|
||||
enabled: true
|
||||
mountPath: /usr/src/paperless/data
|
||||
accessMode: ReadWriteOnce
|
||||
size: 10G
|
||||
|
||||
# -- Configure persistence for media.
|
||||
media:
|
||||
enabled: true
|
||||
mountPath: /usr/src/paperless/media
|
||||
accessMode: ReadWriteOnce
|
||||
size: 10G
|
||||
|
||||
# -- Configure volume to monitor for new documents.
|
||||
consume:
|
||||
enabled: true
|
||||
type: hostPath
|
||||
mountPath: /usr/src/paperless/consume
|
||||
hostPath: /data/paperless/import
|
||||
|
||||
# -- Configure export volume.
|
||||
export:
|
||||
enabled: true
|
||||
type: hostPath
|
||||
mountPath: /usr/src/paperless/export
|
||||
hostPath: /data/paperless/export
|
||||
|
||||
postgresql:
|
||||
enabled: false
|
||||
redis:
|
||||
enabled: true
|
||||
architecture: standalone
|
Loading…
Reference in a new issue