SPB Git forge

spb/uqo-chat

Public
14commits 1branches 0releases
1.4 MBsize
maindefault branch
17 days agolast push
Python 64.6% TypeScript 33.7% CSS 0.8%
528 B · 16 lines yaml
Raw Blame History
1# The API image already serves the built SPA; this nginx front is optional (SPA + /api proxy).2apiVersion: apps/v13kind: Deployment4metadata: { name: web, namespace: uqo-chat }5spec:6  replicas: 27  selector: { matchLabels: { app: web } }8  template:9    metadata: { labels: { app: web } }10    spec:11      containers:12        - name: web13          image: ghcr.io/ORG/uqo-chat-web:latest14          ports: [{ containerPort: 80 }]15          resources: { requests: { cpu: 50m, memory: 64Mi }, limits: { cpu: 200m, memory: 128Mi } }16