helm/llama-cpp/templates/service.yaml

14 lines
359 B
YAML
Raw Normal View History

2025-01-28 23:30:49 +00:00
apiVersion: v1
kind: Service
metadata:
2025-02-07 05:06:50 +00:00
name: {{ include "llama-cpp.fullname" . }}
labels: {{- include "llama-cpp.labels" . | nindent 4 }}
2025-01-28 23:30:49 +00:00
spec:
2025-02-07 05:06:50 +00:00
type: {{ .Values.service.type }}
2025-01-28 23:30:49 +00:00
ports:
2025-02-07 05:06:50 +00:00
- port: {{ .Values.service.port }}
2025-01-28 23:30:49 +00:00
targetPort: http
protocol: TCP
name: http
2025-02-07 05:06:50 +00:00
selector: {{- include "llama-cpp.selectorLabels" . | nindent 4 }}