28 lines
556 B
YAML
28 lines
556 B
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: chroma-deployment
|
|
namespace: n8n
|
|
spec:
|
|
replicas: 1
|
|
selector:
|
|
matchLabels:
|
|
app: chroma
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: chroma
|
|
spec:
|
|
containers:
|
|
- name: chroma
|
|
image: localhost:32000/chromadb/chroma
|
|
ports:
|
|
- containerPort: 8000
|
|
volumeMounts:
|
|
- name: chroma-storage
|
|
mountPath: /home/node/.n8n/
|
|
volumes:
|
|
- name: chroma-storage
|
|
persistentVolumeClaim:
|
|
claimName: chroma-pvc
|