Files
john a400130c67
CI / api-test (push) Has been cancelled
CI / web-build (push) Has been cancelled
Sprint 6: report review workflow, CI/K8s, and client tabs.
Add coach review APIs, pose calibration thresholds, Gitea CI, Kubernetes skeleton, H5 practice page, and mini program tab bar.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-07-23 11:44:11 +08:00

85 lines
1.7 KiB
YAML

apiVersion: apps/v1
kind: Deployment
metadata:
name: happy-up-api
labels:
app: happy-up-api
spec:
replicas: 2
selector:
matchLabels:
app: happy-up-api
template:
metadata:
labels:
app: happy-up-api
spec:
containers:
- name: api
image: registry.example.com/happy-up/api:latest
ports:
- containerPort: 8000
envFrom:
- configMapRef:
name: happy-up-api-config
- secretRef:
name: happy-up-api-secret
readinessProbe:
httpGet:
path: /health
port: 8000
initialDelaySeconds: 5
periodSeconds: 10
livenessProbe:
httpGet:
path: /health
port: 8000
initialDelaySeconds: 15
periodSeconds: 20
resources:
requests:
cpu: 200m
memory: 256Mi
limits:
cpu: "1"
memory: 512Mi
---
apiVersion: v1
kind: Service
metadata:
name: happy-up-api
spec:
selector:
app: happy-up-api
ports:
- port: 80
targetPort: 8000
---
apiVersion: v1
kind: ConfigMap
metadata:
name: happy-up-api-config
data:
APP_ENV: production
APP_DEBUG: "false"
ANALYSIS_INLINE_PROCESS: "false"
OSS_ENABLED: "true"
OSS_PROVIDER: aliyun
---
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: happy-up-api
spec:
rules:
- host: api.happy-up.example.com
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: happy-up-api
port:
number: 80