merlyn/cloud-deployments/helm/charts/anythingllm/templates/service.yaml
Sam Culley 988a14e67e
Adding AnythingLLM Helm Chart (#4484)
feat: adding helm chart

Co-authored-by: Sam Culley <sam.culley@novatiq.com>
2025-10-03 09:27:34 -07:00

16 lines
373 B
YAML

apiVersion: v1
kind: Service
metadata:
name: {{ include "anythingllm.fullname" . }}
labels:
{{- include "anythingllm.labels" . | nindent 4 }}
spec:
type: {{ .Values.service.type }}
ports:
- port: {{ .Values.service.port }}
targetPort: http
protocol: TCP
name: http
selector:
{{- include "anythingllm.selectorLabels" . | nindent 4 }}