Files
gooseek/backend/deploy/k8s/kustomization.yaml
home 7a40ff629e
Some checks failed
Build and Deploy GooSeek / build-and-deploy (push) Failing after 8m25s
feat: LLM routing by tier (free→Ollama, pro→Timeweb)
- Add tier-based provider routing in llm-svc
  - free tier → Ollama (local qwen3.5:9b)
  - pro/business → Timeweb Cloud AI
- Add /api/v1/embed endpoint for embeddings via Ollama
- Update Ollama client: qwen3.5:9b default, remove auth
- Add GenerateEmbedding() function for qwen3-embedding:0.6b
- Add Ollama K8s deployment with GPU support (RTX 4060 Ti)
- Add monitoring stack (Prometheus, Grafana, Alertmanager)
- Add Grafana dashboards for LLM and security metrics
- Update deploy.sh with monitoring and Ollama deployment

Made-with: Cursor
2026-03-03 02:25:22 +03:00

43 lines
845 B
YAML

apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
namespace: gooseek
resources:
- namespace.yaml
- configmap.yaml
- postgres.yaml
- redis.yaml
- api-gateway.yaml
- webui.yaml
- chat-svc.yaml
- agent-svc.yaml
- search-svc.yaml
- discover-svc.yaml
- llm-svc.yaml
- scraper-svc.yaml
- collection-svc.yaml
- file-svc.yaml
- thread-svc.yaml
- learning-svc.yaml
- medicine-svc.yaml
- travel-svc.yaml
- sandbox-svc.yaml
- opensandbox.yaml
- ollama.yaml
- ingress.yaml
labels:
- pairs:
app.kubernetes.io/part-of: gooseek
app.kubernetes.io/managed-by: kustomize
includeSelectors: false
images:
- name: gooseek/backend
newName: 10.43.193.43:5000/gooseek/backend
newTag: latest
- name: gooseek/webui
newName: 10.43.193.43:5000/gooseek/webui
newTag: latest