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
69 lines
1.3 KiB
YAML
69 lines
1.3 KiB
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: chat-svc
|
|
namespace: gooseek
|
|
labels:
|
|
app: chat-svc
|
|
app.kubernetes.io/name: chat-svc
|
|
app.kubernetes.io/part-of: gooseek
|
|
spec:
|
|
replicas: 2
|
|
selector:
|
|
matchLabels:
|
|
app: chat-svc
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: chat-svc
|
|
spec:
|
|
containers:
|
|
- name: chat-svc
|
|
image: gooseek/backend:latest
|
|
env:
|
|
- name: SERVICE
|
|
value: "chat-svc"
|
|
- name: PORT
|
|
value: "3005"
|
|
envFrom:
|
|
- configMapRef:
|
|
name: gooseek-config
|
|
- secretRef:
|
|
name: gooseek-secrets
|
|
ports:
|
|
- containerPort: 3005
|
|
name: http
|
|
livenessProbe:
|
|
httpGet:
|
|
path: /health
|
|
port: 3005
|
|
initialDelaySeconds: 10
|
|
periodSeconds: 15
|
|
readinessProbe:
|
|
httpGet:
|
|
path: /ready
|
|
port: 3005
|
|
initialDelaySeconds: 5
|
|
periodSeconds: 10
|
|
resources:
|
|
requests:
|
|
cpu: 200m
|
|
memory: 256Mi
|
|
limits:
|
|
cpu: 1000m
|
|
memory: 512Mi
|
|
---
|
|
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: chat-svc
|
|
namespace: gooseek
|
|
spec:
|
|
type: ClusterIP
|
|
selector:
|
|
app: chat-svc
|
|
ports:
|
|
- port: 3005
|
|
targetPort: 3005
|
|
name: http
|