Files
gooseek/backend/deploy/k8s/scraper-svc.yaml
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

67 lines
1.3 KiB
YAML

apiVersion: apps/v1
kind: Deployment
metadata:
name: scraper-svc
namespace: gooseek
labels:
app: scraper-svc
app.kubernetes.io/name: scraper-svc
app.kubernetes.io/part-of: gooseek
spec:
replicas: 2
selector:
matchLabels:
app: scraper-svc
template:
metadata:
labels:
app: scraper-svc
spec:
containers:
- name: scraper-svc
image: gooseek/backend:latest
env:
- name: SERVICE
value: "scraper-svc"
- name: PORT
value: "3021"
envFrom:
- configMapRef:
name: gooseek-config
ports:
- containerPort: 3021
name: http
livenessProbe:
httpGet:
path: /health
port: 3021
initialDelaySeconds: 10
periodSeconds: 15
readinessProbe:
httpGet:
path: /ready
port: 3021
initialDelaySeconds: 5
periodSeconds: 10
resources:
requests:
cpu: 200m
memory: 256Mi
limits:
cpu: 1000m
memory: 512Mi
---
apiVersion: v1
kind: Service
metadata:
name: scraper-svc
namespace: gooseek
spec:
type: ClusterIP
selector:
app: scraper-svc
ports:
- port: 3021
targetPort: 3021
name: http