Fix version number and update service template syntax
	
		
			
	
		
	
	
		
	
		
			Some checks failed
		
		
	
	
		
			
				
	
				Build Helm Chart / helm-package (push) Failing after 3s
				
			
		
		
	
	
				
					
				
			
		
			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:
		@@ -1,7 +1,7 @@
 | 
				
			|||||||
apiVersion: v2
 | 
					apiVersion: v2
 | 
				
			||||||
name: paperless-ai
 | 
					name: paperless-ai
 | 
				
			||||||
description: Ein Helm Chart für Paperless AI, basierend auf der Docker Compose Konfiguration.
 | 
					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
 | 
					appVersion: 3.0.7
 | 
				
			||||||
keywords:
 | 
					keywords:
 | 
				
			||||||
  - paperless-ai
 | 
					  - paperless-ai
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -1,7 +1,7 @@
 | 
				
			|||||||
apiVersion: v1
 | 
					apiVersion: v1
 | 
				
			||||||
kind: Service
 | 
					kind: Service
 | 
				
			||||||
metadata:
 | 
					metadata:
 | 
				
			||||||
  name: { { include "paperless-ai.fullname" . } }
 | 
					  name: { { - include "paperless-ai.fullname" . } }
 | 
				
			||||||
  labels: { { - include "paperless-ai.labels" . | nindent 4 } }
 | 
					  labels: { { - include "paperless-ai.labels" . | nindent 4 } }
 | 
				
			||||||
spec:
 | 
					spec:
 | 
				
			||||||
  type: { { .Values.service.type } }
 | 
					  type: { { .Values.service.type } }
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user