This PR contains the following updates: | Package | Update | Change | |---|---|---| | [docker.io/gotenberg/gotenberg](https://redirect.github.com/gotenberg/gotenberg) | minor | `3285515` → `d71ab8c` | --- > [!WARNING] > Some dependencies could not be looked up. Check the [Dependency Dashboard](../issues/18710) for more information. Add the preset `:preserveSemverRanges` to your config if you don't want to pin your dependencies. --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4yOS4yIiwidXBkYXRlZEluVmVyIjoiNDMuMjkuMiIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhcHAvcGFwZXJsZXNzLW5neCIsImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvbWlub3IiXX0=-->
169 lines
5.1 KiB
YAML
169 lines
5.1 KiB
YAML
# yaml-language-server: $schema=./values.schema.json
|
|
image:
|
|
repository: ghcr.io/paperless-ngx/paperless-ngx
|
|
pullPolicy: IfNotPresent
|
|
tag: 2.20.7@sha256:7b937cb2fa2885ab0ecfceb8c7e8827e2312472d9d897a270097ba7f5522dcdc
|
|
gotenbergImage:
|
|
repository: docker.io/gotenberg/gotenberg
|
|
pullPolicy: IfNotPresent
|
|
tag: 8.27@sha256:d71ab8c13b6bd47c7bc81195082005dfb17eaa75e8b1fadd347a64ee66ed98d5
|
|
tikaImage:
|
|
repository: docker.io/apache/tika
|
|
pullPolicy: IfNotPresent
|
|
tag: 3.2.3.0@sha256:c0154cb95587cde64be74f35ada1a2bd7892219f3f0ac3c9dc6cab34046b3573
|
|
service:
|
|
main:
|
|
ports:
|
|
main:
|
|
targetPort: 8000
|
|
port: 10140
|
|
gotenberg:
|
|
enabled: "{{ .Values.tika.enabled }}"
|
|
targetSelector: gotenberg
|
|
ports:
|
|
gotenberg:
|
|
enabled: true
|
|
targetPort: 3000
|
|
port: 3000
|
|
tika:
|
|
enabled: "{{ .Values.tika.enabled }}"
|
|
targetSelector: tika
|
|
ports:
|
|
tika:
|
|
enabled: true
|
|
targetPort: 9998
|
|
port: 9998
|
|
persistence:
|
|
data:
|
|
enabled: true
|
|
mountPath: "/data"
|
|
consume:
|
|
enabled: true
|
|
mountPath: "/consume"
|
|
media:
|
|
enabled: true
|
|
mountPath: "/media"
|
|
varrun:
|
|
enabled: false
|
|
redis:
|
|
enabled: true
|
|
redisUsername: "default"
|
|
cnpg:
|
|
main:
|
|
enabled: true
|
|
user: "paperless-ng"
|
|
database: "paperless-ng"
|
|
tika:
|
|
enabled: false
|
|
|
|
securityContext:
|
|
container:
|
|
runAsNonRoot: false
|
|
readOnlyRootFilesystem: false
|
|
runAsUser: 0
|
|
runAsGroup: 0
|
|
workload:
|
|
main:
|
|
podSpec:
|
|
containers:
|
|
main:
|
|
probes:
|
|
liveness:
|
|
type: http
|
|
httpHeaders:
|
|
Host: localhost
|
|
startup:
|
|
type: http
|
|
httpHeaders:
|
|
Host: localhost
|
|
readiness:
|
|
type: http
|
|
httpHeaders:
|
|
Host: localhost
|
|
env:
|
|
PAPERLESS_PORT: "{{ .Values.service.main.ports.main.targetPort }}"
|
|
PAPERLESS_DATA_DIR: "/data/"
|
|
PAPERLESS_CONSUMPTION_DIR: "/consume/"
|
|
PAPERLESS_MEDIA_ROOT: "/media/"
|
|
PAPERLESS_URL: ""
|
|
USERMAP_UID: "{{ .Values.securityContext.container.PUID }}"
|
|
USERMAP_GID: "{{ .Values.securityContext.pod.fsGroup }}"
|
|
PAPERLESS_TIME_ZONE: "{{ .Values.TZ }}"
|
|
PAPERLESS_DBNAME: "{{ .Values.cnpg.main.database }}"
|
|
PAPERLESS_DBUSER: "{{ .Values.cnpg.main.user }}"
|
|
PAPERLESS_DBPORT: "5432"
|
|
PAPERLESS_TIKA_ENABLED: '{{ ternary 1 0 .Values.tika.enabled }}'
|
|
PAPERLESS_TIKA_GOTENBERG_ENDPOINT: '{{ printf "http://%v-gotenberg:%v" (include "tc.v1.common.lib.chart.names.fullname" $) .Values.service.gotenberg.ports.gotenberg.targetPort }}'
|
|
PAPERLESS_TIKA_ENDPOINT: '{{ printf "http://%v-tika:%v" (include "tc.v1.common.lib.chart.names.fullname" $) .Values.service.tika.ports.tika.targetPort }}'
|
|
PAPERLESS_WEBSERVER_WORKERS: 2
|
|
PAPERLESS_DBPASS:
|
|
secretKeyRef:
|
|
name: cnpg-main-user
|
|
key: password
|
|
PAPERLESS_DBHOST:
|
|
secretKeyRef:
|
|
name: cnpg-main-urls
|
|
key: host
|
|
PAPERLESS_SECRET_KEY:
|
|
secretKeyRef:
|
|
name: secrets
|
|
key: PAPERLESS_SECRET_KEY
|
|
PAPERLESS_REDIS:
|
|
secretKeyRef:
|
|
expandObjectName: false
|
|
name: '{{ printf "%s-%s" .Release.Name "rediscreds" }}'
|
|
key: url
|
|
PAPERLESS_ADMIN_USER: "admin"
|
|
PAPERLESS_ADMIN_PASSWORD: "admin"
|
|
PAPERLESS_ADMIN_MAIL: "admin@admin.com"
|
|
PAPERLESS_OCR_LANGUAGE: "eng"
|
|
PAPERLESS_OCR_LANGUAGES: "eng fra deu spa ita"
|
|
gotenberg:
|
|
enabled: "{{ .Values.tika.enabled }}"
|
|
type: Deployment
|
|
podSpec:
|
|
containers:
|
|
gotenberg:
|
|
enabled: true
|
|
primary: true
|
|
imageSelector: gotenbergImage
|
|
command:
|
|
- "gotenberg"
|
|
- "--chromium-disable-javascript=true"
|
|
- "--chromium-allow-list=file:///tmp/.*"
|
|
probes:
|
|
liveness:
|
|
type: http
|
|
path: /health
|
|
port: "{{ .Values.service.gotenberg.ports.gotenberg.port }}"
|
|
startup:
|
|
type: http
|
|
path: /health
|
|
port: "{{ .Values.service.gotenberg.ports.gotenberg.port }}"
|
|
readiness:
|
|
type: http
|
|
path: /health
|
|
port: "{{ .Values.service.gotenberg.ports.gotenberg.port }}"
|
|
tika:
|
|
enabled: "{{ .Values.tika.enabled }}"
|
|
type: Deployment
|
|
podSpec:
|
|
containers:
|
|
tika:
|
|
enabled: true
|
|
primary: true
|
|
imageSelector: tikaImage
|
|
probes:
|
|
liveness:
|
|
type: http
|
|
path: /
|
|
port: "{{ .Values.service.tika.ports.tika.port }}"
|
|
startup:
|
|
type: http
|
|
path: /
|
|
port: "{{ .Values.service.tika.ports.tika.port }}"
|
|
readiness:
|
|
type: http
|
|
path: /
|
|
port: "{{ .Values.service.tika.ports.tika.port }}"
|