Tyler Perkins
8c4f83d504
All checks were successful
continuous-integration/drone/push Build is passing
28 lines
540 B
YAML
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
|