Gluttony-Cluster/ollama/ollama-deployment.yaml
Tyler Perkins 8c4f83d504
All checks were successful
continuous-integration/drone/push Build is passing
Add ollama service, deployment and pvc
2024-04-12 21:02:18 -04:00

28 lines
540 B
YAML

apiVersion: apps/v1
kind: Deployment
metadata:
name: ollama-deployment
namespace: ollama-ns
spec:
replicas: 1
selector:
matchLabels:
app: ollama
template:
metadata:
labels:
app: ollama
spec:
containers:
- name: ollama
image: ollama/ollama
ports:
- containerPort: 11434
volumeMounts:
- name: ollama-volume
mountPath: /root/.ollama
volumes:
- name: ollama-volume
persistentVolumeClaim:
claimName: ollama-pvc