All checks were successful
		
		
	
	Build Helm Chart / helm-package (push) Successful in 4s
				
			Bumped the version of the Paperless AI Helm chart from 0.1.0 to 0.2.0 to reflect the latest updates. Various templates have been modified for improved consistency and adherence to best practices. Notable changes include: - Removal of unnecessary comments in `pvc.yaml` for a cleaner look. - Simplification of indentation and formatting in `ingress.yaml`, `pvc.yaml`, and `service.yaml` to ensure correct rendering of Kubernetes resources. - Fixed comments in templates to clarify their purpose while removing inline comments for a streamlined approach. These changes enhance maintainability and clarity within the Helm chart templates. No breaking changes are introduced in this update.
		
			
				
	
	
		
			16 lines
		
	
	
		
			404 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			404 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
apiVersion: v1
 | 
						|
kind: Service
 | 
						|
metadata:
 | 
						|
  name: {{ include "paperless-ai.fullname" . }}
 | 
						|
  labels:
 | 
						|
    {{- include "paperless-ai.labels" . | nindent 4 }}
 | 
						|
spec:
 | 
						|
  type: {{ .Values.service.type }}
 | 
						|
  ports:
 | 
						|
    - port: {{ .Values.service.port }}
 | 
						|
      targetPort: {{ .Values.service.targetPort }}
 | 
						|
      protocol: TCP
 | 
						|
      name: http
 | 
						|
  selector:
 | 
						|
    {{- include "paperless-ai.selectorLabels" . | nindent 4 }}
 |