From 1672020396d8ca88e0c8867c50c5fe7affd2cc64 Mon Sep 17 00:00:00 2001 From: Marko Oldenburg Date: Sun, 6 Jul 2025 09:16:00 +0200 Subject: [PATCH] Fix version number and update service template syntax The version number in the Chart.yaml file has been changed from 0.2.0 to 0.1.0 to reflect the correct versioning of the paperless-ai chart. This adjustment is necessary to avoid confusion regarding version compatibility and ensure proper deployment practices. Additionally, the service.yaml template has been refined to correct the spacing in the service name and labels. Previously, there were extra spaces around the include function calls, which could lead to rendering issues in the generated Kubernetes manifests. These changes are crucial for maintaining accurate versioning and preventing potential application deployment errors. No breaking changes are introduced in this update. --- charts/paperless-ai/Chart.yaml | 2 +- charts/paperless-ai/templates/service.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/charts/paperless-ai/Chart.yaml b/charts/paperless-ai/Chart.yaml index 5d771d7..2f9fe56 100644 --- a/charts/paperless-ai/Chart.yaml +++ b/charts/paperless-ai/Chart.yaml @@ -1,7 +1,7 @@ apiVersion: v2 name: paperless-ai description: Ein Helm Chart für Paperless AI, basierend auf der Docker Compose Konfiguration. -version: 0.2.0 +version: 0.1.0 appVersion: 3.0.7 keywords: - paperless-ai diff --git a/charts/paperless-ai/templates/service.yaml b/charts/paperless-ai/templates/service.yaml index a75f517..8f50c3d 100644 --- a/charts/paperless-ai/templates/service.yaml +++ b/charts/paperless-ai/templates/service.yaml @@ -1,7 +1,7 @@ apiVersion: v1 kind: Service metadata: - name: { { include "paperless-ai.fullname" . } } + name: { { - include "paperless-ai.fullname" . } } labels: { { - include "paperless-ai.labels" . | nindent 4 } } spec: type: { { .Values.service.type } }