Bump version to 0.4.0 and clean up deployment.yaml
	
		
			
	
		
	
	
		
	
		
			All checks were successful
		
		
	
	
		
			
				
	
				Build Helm Chart / helm-package (push) Successful in 3s
				
			
		
		
	
	
				
					
				
			
		
			All checks were successful
		
		
	
	Build Helm Chart / helm-package (push) Successful in 3s
				
			This commit updates the version of the Helm chart for Paperless AI from 0.3.0 to 0.4.0 to reflect the latest changes and improvements. Additionally, unnecessary resource allocations in the deployment.yaml file have been removed, particularly the commented-out section related to resources. This cleanup enhances readability and maintainability of the chart's deployment configuration. No breaking changes were introduced, but it simplifies the environment variable section to improve clarity.
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.3.0
 | 
					version: 0.4.0
 | 
				
			||||||
appVersion: 3.0.7
 | 
					appVersion: 3.0.7
 | 
				
			||||||
keywords:
 | 
					keywords:
 | 
				
			||||||
  - paperless-ai
 | 
					  - paperless-ai
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -48,9 +48,6 @@ spec:
 | 
				
			|||||||
            {{- toYaml .Values.livenessProbe | nindent 12 }}
 | 
					            {{- toYaml .Values.livenessProbe | nindent 12 }}
 | 
				
			||||||
          readinessProbe:
 | 
					          readinessProbe:
 | 
				
			||||||
            {{- toYaml .Values.readinessProbe | nindent 12 }}
 | 
					            {{- toYaml .Values.readinessProbe | nindent 12 }}
 | 
				
			||||||
          resources:
 | 
					 | 
				
			||||||
            {{- toYaml .Values.resources | nindent 12 }}
 | 
					 | 
				
			||||||
          {{- with .Values.envs }}
 | 
					 | 
				
			||||||
          env:
 | 
					          env:
 | 
				
			||||||
            {{- range $key, $value := .Values.env }}
 | 
					            {{- range $key, $value := .Values.env }}
 | 
				
			||||||
            - name: {{ $key }} # Name der Umgebungsvariable.
 | 
					            - name: {{ $key }} # Name der Umgebungsvariable.
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user