ollama-service.yaml 378 Bytes
Newer Older
1
2
3
apiVersion: v1
kind: Service
metadata:
duhow's avatar
duhow committed
4
  name: {{ include "ollama.name" . }}
duhow's avatar
duhow committed
5
6
  labels:
    {{- include "ollama.labels" . | nindent 4 }}
7
8
spec:
  selector:
duhow's avatar
duhow committed
9
10
11
    {{- include "ollama.selectorLabels" . | nindent 4 }}
{{- with .Values.ollama.service }}
  type: {{ .type }}
12
13
  ports:
  - protocol: TCP
duhow's avatar
duhow committed
14
15
16
17
    name: http
    port: {{ .port }}
    targetPort: {{ .containerPort }}
{{- end }}