Files
TrueCharts Bot 206f916c96 feat(paperless-ngx): update image docker.io/gotenberg/gotenberg 8.33 → 8.34 (#49078)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[docker.io/gotenberg/gotenberg](https://redirect.github.com/gotenberg/gotenberg)
| minor | `bddd8ea` → `6709731` |

---

> [!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**: (UTC)

- 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:eyJjcmVhdGVkSW5WZXIiOiI0My4xMzAuMSIsInVwZGF0ZWRJblZlciI6IjQzLjEzMC4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImFwcC9wYXBlcmxlc3Mtbmd4IiwiYXV0b21lcmdlIiwicmVub3ZhdGUvY29udGFpbmVyIiwidHlwZS9taW5vciJdfQ==-->
2026-06-12 19:32:20 +02:00

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.15@sha256:6c86cad803970ea782683a8e80e7403444c5bf3cf70de63b4d3c8e87500db92f
gotenbergImage:
repository: docker.io/gotenberg/gotenberg
pullPolicy: IfNotPresent
tag: 8.34@sha256:67097317623a503ba2a6a7e9ae8db6929a1f7e1bbd88077bacf2d325fbdab923
tikaImage:
repository: docker.io/apache/tika
pullPolicy: IfNotPresent
tag: 3.3.1.0@sha256:90b7fa1dc018434075fce9e1d9b88b1e3d0ea6979d0cf86e116c79a8073ae973
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 }}"