2023-12-24 15:34:33 +00:00
|
|
|
apiVersion: v1
|
|
|
|
kind: Service
|
|
|
|
metadata:
|
2024-02-19 20:58:25 +00:00
|
|
|
name: {{ include "ollama.name" . }}
|
2024-02-19 21:23:36 +00:00
|
|
|
labels:
|
|
|
|
{{- include "ollama.labels" . | nindent 4 }}
|
2023-12-24 15:34:33 +00:00
|
|
|
spec:
|
|
|
|
selector:
|
2024-02-19 21:23:36 +00:00
|
|
|
{{- include "ollama.selectorLabels" . | nindent 4 }}
|
|
|
|
{{- with .Values.ollama.service }}
|
|
|
|
type: {{ .type }}
|
2023-12-24 15:34:33 +00:00
|
|
|
ports:
|
|
|
|
- protocol: TCP
|
2024-02-19 21:23:36 +00:00
|
|
|
name: http
|
2024-02-19 21:33:22 +00:00
|
|
|
port: http
|
|
|
|
targetPort: {{ .port }}
|
2024-02-19 21:23:36 +00:00
|
|
|
{{- end }}
|