home
32102c379a
fix: restore deployment — ingress routing, readiness probes, rate limiter
...
Build and Deploy GooSeek / build-and-deploy (push) Has been cancelled
- Ingress: route /api/* on gooseek.ru to api-gateway (was going to webui)
- api-gateway: move /health and /ready before JWT/rate-limit middleware
to prevent liveness probe 429 failures causing CrashLoopBackOff
- Readiness probes: fix agent-svc, search-svc, scraper-svc to use /health
(they don't implement /ready endpoint, causing permanent 0/1 status)
- ConfigMap: add missing CHAT_SVC_URL and API_GATEWAY_URL
- deploy.sh: also clean up misplaced NetworkPolicy from gooseek namespace
- webui: add Next.js rewrites to proxy /api/* to api-gateway
Made-with: Cursor
2026-03-03 04:10:41 +03:00
home
00adac3196
fix: move sandbox ResourceQuota/LimitRange to gooseek-sandbox namespace
...
Build and Deploy GooSeek / build-and-deploy (push) Successful in 3m26s
Kustomize was overriding namespace to gooseek for all resources including
ResourceQuota and LimitRange meant for gooseek-sandbox. This caused
CPU quota exceeded errors blocking all new pod creation (used 26.3/16 cores).
Split sandbox-scoped resources into opensandbox-sandbox-ns.yaml applied
directly, and deploy.sh now cleans up misplaced quota from gooseek ns.
Made-with: Cursor
2026-03-03 03:14:01 +03:00
home
52134df4d1
feat: add email notification service with SMTP support
...
Build and Deploy GooSeek / build-and-deploy (push) Failing after 8m22s
- Create pkg/email package (sender, templates, types)
- SMTP client with TLS, rate limiting, async sending
- HTML email templates with GooSeek branding
- Integrate welcome + password reset emails in auth-svc
- Add limit warning emails (80%/100%) in llm-svc middleware
- Add space invite endpoint with email notification in thread-svc
- Add GetUserEmail helper in JWT middleware
- Add SMTP config to .env, config.go, K8s configmap
Made-with: Cursor
2026-03-03 02:50:17 +03:00
home
7a40ff629e
feat: LLM routing by tier (free→Ollama, pro→Timeweb)
...
Build and Deploy GooSeek / build-and-deploy (push) Failing after 8m25s
- 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
home
e64567a224
fix: file-svc PVC use ReadWriteOnce, add k3s registries config
...
Build and Deploy GooSeek / build-and-deploy (push) Has been cancelled
- Change file-svc PVC from ReadWriteMany to ReadWriteOnce (local-path compatible)
- Set file-svc replicas to 1 (RWO limitation)
- Add k3s-registries.yaml for insecure private registry config
Made-with: Cursor
2026-03-02 22:31:04 +03:00
home
d2ef146474
security: upgrade Gitea to 1.25.4, add security headers
...
Build and Deploy GooSeek / build-and-deploy (push) Has been cancelled
- Update Gitea from 1.22.6 to 1.25.4 (fixes CVE-2026-20736, CVE-2026-20912)
- Disable public registration
- Disable Swagger API
- Add nginx-ingress security headers:
- X-Content-Type-Options: nosniff
- X-XSS-Protection: 1; mode=block
- Referrer-Policy: strict-origin-when-cross-origin
- Permissions-Policy
- Enable HSTS preload
- Reorganize Gitea K8s manifests into gitea/ directory
Made-with: Cursor
2026-03-02 22:01:51 +03:00
home
c3965a2c6a
fix: resolve kustomize namespace conflict for gooseek-sandbox
...
Build and Deploy GooSeek / build-and-deploy (push) Failing after 7m34s
- Extracted gooseek-sandbox Namespace to separate file
- Apply sandbox-namespace.yaml separately before kustomize
- Fixed deprecated commonLabels -> labels
- Prevents namespace transformation conflict
Made-with: Cursor
2026-03-02 21:38:49 +03:00
home
53a2858bd6
fix: install all deps for webui build including devDependencies
...
Build and Deploy GooSeek / build-and-deploy (push) Has been cancelled
The Next.js build requires TypeScript, @types/*, tailwindcss and other
devDependencies. Changed npm ci --only=production to npm ci.
Made-with: Cursor
2026-03-02 21:24:40 +03:00
home
23964881c9
ci: fix registry IP for host mode runner
...
Build and Deploy GooSeek / build-backend (push) Failing after 2s
Build and Deploy GooSeek / build-webui (push) Failing after 2s
Build and Deploy GooSeek / deploy (push) Has been skipped
Made-with: Cursor
2026-03-02 21:03:45 +03:00
home
ab48a0632b
feat: CI/CD pipeline + Learning/Medicine/Travel services
...
Build and Deploy GooSeek / build-backend (push) Failing after 1m4s
Build and Deploy GooSeek / build-webui (push) Failing after 1m2s
Build and Deploy GooSeek / deploy (push) Has been skipped
- Add Gitea Actions workflow for automated build & deploy
- Add K8s manifests: webui, travel-svc, medicine-svc, sandbox-svc
- Update kustomization for localhost:5000 registry
- Add ingress for gooseek.ru and api.gooseek.ru
- Learning cabinet with onboarding, courses, sandbox integration
- Medicine service with symptom analysis and doctor matching
- Travel service with itinerary planning
- Server setup scripts (NVIDIA/CUDA, K3s, Gitea runner)
Made-with: Cursor
2026-03-02 20:25:44 +03:00
home
08bd41e75c
feat: travel service with 2GIS routing, POI, hotels + finance providers + UI overhaul
...
- Add travel-svc microservice (Amadeus, TravelPayouts, 2GIS, OpenRouteService)
- Add travel orchestrator with parallel collectors (events, POI, hotels, flights)
- Add 2GIS road routing with transport cost calculation (car/bus/taxi)
- Add TravelMap (2GIS MapGL) and TravelWidgets components
- Add useTravelChat hook for streaming travel agent responses
- Add finance heatmap providers refactor
- Add SearXNG settings, API proxy routes, Docker compose updates
- Update Dockerfiles, config, types, and all UI pages for consistency
Made-with: Cursor
2026-03-01 21:58:32 +03:00
home
e6b9cfc60a
feat: spaces redesign, model selector, auth fixes
...
Spaces:
- Perplexity-like UI with collaboration features
- Space detail page with threads/members tabs
- Invite members via email, role management
- New space creation with icon/color picker
Model selector:
- Added Ollama client for free Auto model
- GooSeek 1.0 via Timeweb (tariff-based)
- Frontend model dropdown in ChatInput
Auth & Infrastructure:
- Fixed auth-svc missing from Dockerfile.all
- Removed duplicate ratelimit_tiered.go (conflict)
- Added Redis to api-gateway for rate limiting
- Fixed Next.js proxy for local development
UI improvements:
- Redesigned login button in sidebar (gradient)
- Settings page with tabs (account/billing/prefs)
- Auth pages visual refresh
Made-with: Cursor
2026-02-28 02:30:05 +03:00
home
a0e3748dde
feat: auth service + security audit fixes + cleanup legacy services
...
Major changes:
- Add auth-svc: JWT auth, register/login/refresh, password reset
- Add auth UI: modals, pages (/login, /register, /forgot-password)
- Add usage tracking (usage_metrics table, daily limits)
- Add tiered rate limiting (free/pro/business)
- Add LLM usage limits per tier
Security fixes:
- All repos now require userID for Update/Delete operations
- JWT middleware in chat-svc, llm-svc, agent-svc, discover-svc
- ErrNotFound/ErrForbidden errors for proper access control
Cleanup:
- Remove legacy TypeScript services/ directory
- Remove computer-svc (to be reimplemented)
- Remove old deploy/docker configs
New files:
- backend/cmd/auth-svc/main.go
- backend/internal/auth/{types,repository}.go
- backend/internal/usage/{types,repository}.go
- backend/pkg/middleware/{llm_limits,ratelimit_tiered}.go
- backend/webui/src/components/auth/*
- backend/webui/src/app/(auth)/*
Made-with: Cursor
2026-02-28 01:33:49 +03:00
home
120fbbaafb
fix(computer-svc): stream для завершенных задач + Timeweb env vars
...
- Исправлен Stream() в computer.go: для completed/failed/cancelled задач
сразу отправляется финальное событие и канал закрывается (ранее
соединение зависало с socket hang up)
- Добавлены TIMEWEB_* переменные в docker-compose.yml для computer-svc
(LLM через Timeweb Cloud AI для России)
- UI компоненты webui обновлены
Made-with: Cursor
2026-02-27 05:17:42 +03:00
home
06fe57c765
feat: Go backend, enhanced search, new widgets, Docker deploy
...
Major changes:
- Add Go backend (backend/) with microservices architecture
- Enhanced master-agents-svc: reranker, content-classifier, stealth-crawler,
proxy-manager, media-search, fastClassifier, language detection
- New web-svc widgets: KnowledgeCard, ProductCard, ProfileCard, VideoCard,
UnifiedCard, CardGallery, InlineImageGallery, SourcesPanel, RelatedQuestions
- Improved discover-svc with discover-db integration
- Docker deployment improvements (Caddyfile, vendor.sh, BUILD.md)
- Library-svc: project_id schema migration
- Remove deprecated finance-svc and travel-svc
- Localization improvements across services
Made-with: Cursor
2026-02-27 04:15:32 +03:00