ollama-service.yaml 362 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
    name: http
15
16
    port: http
    targetPort: {{ .port }}
duhow's avatar
duhow committed
17
{{- end }}