ollama-service.yaml 257 Bytes
Newer Older
1
2
3
4
5
apiVersion: v1
kind: Service
metadata:
  name: ollama-service
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 }}