From 0ab3d225067dd1aa05bae91d77801e35aa787171 Mon Sep 17 00:00:00 2001 From: WrenIX Date: Thu, 27 Feb 2025 10:55:42 +0100 Subject: [PATCH] fix(paperless-ngx): add global (and improve docs) --- paperless-ngx/Chart.yaml | 2 +- paperless-ngx/README.md | 12 ++++++------ paperless-ngx/values.yaml | 6 +++++- 3 files changed, 12 insertions(+), 8 deletions(-) diff --git a/paperless-ngx/Chart.yaml b/paperless-ngx/Chart.yaml index aa70bcd..5527134 100644 --- a/paperless-ngx/Chart.yaml +++ b/paperless-ngx/Chart.yaml @@ -4,7 +4,7 @@ description: A document management system that transforms your physical document type: application icon: https://github.com/paperless-ngx/paperless-ngx/raw/main/resources/logo/web/svg/square.svg home: https://wrenix.eu/docs/helm-charts/paperless-ngx/ -version: "0.1.0" +version: "0.1.1" # renovate: image=ghcr.io/paperless-ngx/paperless-ngx appVersion: "2.14.7" keywords: diff --git a/paperless-ngx/README.md b/paperless-ngx/README.md index 20829ab..f91bd82 100644 --- a/paperless-ngx/README.md +++ b/paperless-ngx/README.md @@ -7,7 +7,7 @@ description: "A document management system that transforms your physical documen # paperless-ngx -![Version: 0.1.0](https://img.shields.io/badge/Version-0.1.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 2.14.7](https://img.shields.io/badge/AppVersion-2.14.7-informational?style=flat-square) +![Version: 0.1.1](https://img.shields.io/badge/Version-0.1.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 2.14.7](https://img.shields.io/badge/AppVersion-2.14.7-informational?style=flat-square) A document management system that transforms your physical documents into a searchable online archive so you can keep, well, less paper. @@ -97,10 +97,10 @@ helm uninstall paperless-ngx-release | grafana.dashboards.annotations | object | `{}` | | | grafana.dashboards.enabled | bool | `false` | | | grafana.dashboards.labels.grafana_dashboard | string | `"1"` | | -| image.pullPolicy | string | `"IfNotPresent"` | This sets the pull policy for images. | -| image.registry | string | `"ghcr.io"` | | -| image.repository | string | `"paperless-ngx/paperless-ngx"` | | -| image.tag | string | `""` | | +| image.pullPolicy | string | `"IfNotPresent"` | This sets the pull policy for images. (could be overwritten by global.image.pullPolicy) | +| image.registry | string | `"ghcr.io"` | image registry (could be overwritten by global.image.registry) | +| image.repository | string | `"paperless-ngx/paperless-ngx"` | image repository | +| image.tag | string | `""` | image tag - Overrides the image tag whose default is the chart appVersion. | | imagePullSecrets | list | `[]` | This is for the secrets for pulling an image from a private repository more information can be found here: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/ | | ingress.annotations | object | `{}` | | | ingress.className | string | `""` | | @@ -146,7 +146,7 @@ helm uninstall paperless-ngx-release | redis.global.storageClass | string | `""` | | | redis.master.persistence.enabled | bool | `true` | | | redis.replica.persistence.enabled | bool | `true` | | -| replicaCount | int | `1` | | +| replicaCount | int | `1` | replicas | | resources | object | `{}` | | | securityContext | object | `{}` | | | service.port | int | `80` | This sets the ports more information can be found here: https://kubernetes.io/docs/concepts/services-networking/service/#field-spec-ports | diff --git a/paperless-ngx/values.yaml b/paperless-ngx/values.yaml index c762be0..9378d82 100644 --- a/paperless-ngx/values.yaml +++ b/paperless-ngx/values.yaml @@ -11,13 +11,17 @@ imagePullSecrets: [] nameOverride: "" fullnameOverride: "" +# -- replicas replicaCount: 1 image: + # -- image registry (could be overwritten by global.image.registry) registry: "ghcr.io" + # -- image repository repository: paperless-ngx/paperless-ngx - # -- This sets the pull policy for images. + # -- This sets the pull policy for images. (could be overwritten by global.image.pullPolicy) pullPolicy: IfNotPresent + # -- image tag - Overrides the image tag whose default is the chart appVersion. tag: ""