Fix version number and update service template syntax
Some checks failed
Build Helm Chart / helm-package (push) Failing after 3s

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.
This commit is contained in:
2025-07-06 09:16:00 +02:00
parent 0eee0e7455
commit 1672020396
2 changed files with 2 additions and 2 deletions

View File

@ -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

View File

@ -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 } }