From aa63d656a9bcca80adc9de5db45fb91747545851 Mon Sep 17 00:00:00 2001 From: Marko Oldenburg Date: Sun, 23 Nov 2025 11:18:38 +0100 Subject: [PATCH] Refactor container settings in values.yaml for clarity The structure of the container options in the `values.yaml` file has been modified to improve clarity and organization. The `defaultContainerOptions` section has been replaced with a `containers` section containing a `main` container. This change enhances readability and aligns with common best practices for defining container settings in Helm charts. No breaking changes were introduced, and the default image repository and tag remain unchanged. This refactor aims to streamline the configuration process for users. --- charts/paperless-ngx/values.yaml | 26 ++++++++++++++------------ 1 file changed, 14 insertions(+), 12 deletions(-) diff --git a/charts/paperless-ngx/values.yaml b/charts/paperless-ngx/values.yaml index ea37123..99e8560 100644 --- a/charts/paperless-ngx/values.yaml +++ b/charts/paperless-ngx/values.yaml @@ -7,18 +7,20 @@ controllers: main: type: deployment - defaultContainerOptions: - image: - # -- Image repository - repository: ghcr.io/paperless-ngx/paperless-ngx - # -- Image pull policy - pullPolicy: IfNotPresent - # -- Image tag - tag: 2.20.0 - # -- Environment variables [[ref]](https://docs.paperless-ngx.com/configuration/) - # @default -- See [values.yaml](./values.yaml) - # -- Set the resource requests / limits for the container. - resources: {} + containers: + main: + image: + # -- Image repository + repository: ghcr.io/paperless-ngx/paperless-ngx + # -- Image pull policy + pullPolicy: IfNotPresent + # -- Image tag + tag: 2.20.0 + # -- Environment variables [[ref]](https://docs.paperless-ngx.com/configuration/) + # @default -- See [values.yaml](./values.yaml) + # -- Set the resource requests / limits for the container. + resources: {} + env: # -- Set the container timezone TZ: UTC