- Custom PostgreSQL 15.2 image with pgvector 0.8.0 extension - Updated pg-cluster-hermes.yaml: custom image, sharedPreloadLibraries, maintenance_work_mem - RAG schema: documents table with vector(768) embeddings + HNSW index - RAG init job: ConfigMap + Job to apply schema to agent_memory db - Embedding service: FastAPI with nomic-embed-text-v1.5 - OpenAI-compatible /v1/embeddings endpoint - Deployment (1 replica, 2Gi-4Gi memory) + Service manifests - Updated kustomization.yaml to include new resources
16 lines
408 B
YAML
16 lines
408 B
YAML
apiVersion: kustomize.config.k8s.io/v1beta1
|
|
kind: Kustomization
|
|
|
|
resources:
|
|
- pg-cluster-hermes.yaml
|
|
- hermes-db-credentials.yaml
|
|
- trading-db-credentials.yaml
|
|
- memory-db-credentials.yaml
|
|
- trading-data-db.yaml
|
|
- agent-memory-db.yaml
|
|
- agent-memory-rag-db.yaml
|
|
- hermes-scheduled-backup.yaml
|
|
- kafka-broker.yaml
|
|
- redis-cluster.yaml
|
|
- rag-init-sql-configmap.yaml
|
|
- rag-init-job.yaml
|