openviking k8s: mount ov.conf via ConfigMap volume

- 03-configmap.yaml: add ov.conf key with embedding/vlm JSON template
- 01-deployment.yaml: add volume mount to /app/.openviking/ov.conf
This commit is contained in:
updsv7
2026-06-06 11:52:41 +09:00
parent 98478a34a7
commit cc000c2055
2 changed files with 29 additions and 2 deletions

View File

@@ -46,7 +46,16 @@ spec:
volumeMounts:
- name: data
mountPath: /app/data
- name: openviking-config
mountPath: /app/.openviking
readOnly: true
volumes:
- name: data
persistentVolumeClaim:
claimName: openviking-data
claimName: openviking-data
- name: openviking-config
configMap:
name: openviking-config
items:
- key: ov.conf
path: ov.conf