ollama-service.yaml 272 Bytes
Newer Older
1
2
3
apiVersion: v1
kind: Service
metadata:
duhow's avatar
duhow committed
4
  name: {{ include "ollama.name" . }}
5
spec:
6
  type: {{ .Values.ollama.service.type }}
7
8
9
10
11
  selector:
    app: ollama
  ports:
  - protocol: TCP
    port: {{ .Values.ollama.servicePort }}
duhow's avatar
duhow committed
12
    targetPort: {{ .Values.ollama.servicePort }}