Changes: - Replaced separate api and frontend deployments with single unified app deployment - Updated values.yaml: Changed from api/frontend configs to single app config - Renamed templates: api-deployment.yaml → app-deployment.yaml - Removed frontend-deployment.yaml and frontend-service.yaml (no longer needed) - Updated app image to warehouse13/app (multi-stage Docker build) - Combined resource allocations: 384Mi memory, 350m CPU (up from separate totals) - Updated all example values files (dev, production, air-gapped) - Updated NOTES.txt to reflect single service on port 8000 - Updated ingress to route all traffic to single app service - Added ARCHITECTURE.md documenting the unified container approach Architecture: The application now uses a multi-stage Docker build: 1. Stage 1: Builds Angular frontend with Node 2. Stage 2: Python FastAPI backend that serves static frontend from /static Benefits: - Simplified deployment (1 container instead of 2) - Reduced resource usage (no separate nginx) - Easier scaling (1 deployment to manage) - Consistent versioning (frontend/backend always match) Access pattern: - http://localhost:8000 → Angular frontend - http://localhost:8000/api → FastAPI REST API - http://localhost:8000/docs → API documentation - http://localhost:8000/health → Health check 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
99 lines
2.0 KiB
YAML
99 lines
2.0 KiB
YAML
# Warehouse13 - Production Deployment Example
|
|
# Use this for production environments with ingress and proper resources
|
|
|
|
global:
|
|
deploymentMode: "standard"
|
|
storageBackend: "minio"
|
|
|
|
postgres:
|
|
enabled: true
|
|
image:
|
|
repository: postgres
|
|
tag: 15-alpine
|
|
pullPolicy: IfNotPresent
|
|
auth:
|
|
username: warehouse13user
|
|
password: CHANGE_ME_SECURE_PASSWORD
|
|
database: warehouse13
|
|
persistence:
|
|
enabled: true
|
|
size: 50Gi
|
|
storageClass: "fast-ssd"
|
|
resources:
|
|
requests:
|
|
memory: "1Gi"
|
|
cpu: "1000m"
|
|
limits:
|
|
memory: "2Gi"
|
|
cpu: "2000m"
|
|
|
|
minio:
|
|
enabled: true
|
|
image:
|
|
repository: minio/minio
|
|
tag: latest
|
|
pullPolicy: IfNotPresent
|
|
auth:
|
|
rootUser: CHANGE_ME_MINIO_USER
|
|
rootPassword: CHANGE_ME_MINIO_PASSWORD
|
|
persistence:
|
|
enabled: true
|
|
size: 500Gi
|
|
storageClass: "bulk-storage"
|
|
resources:
|
|
requests:
|
|
memory: "2Gi"
|
|
cpu: "1000m"
|
|
limits:
|
|
memory: "4Gi"
|
|
cpu: "2000m"
|
|
|
|
app:
|
|
enabled: true
|
|
image:
|
|
repository: warehouse13/app
|
|
tag: v1.0.0
|
|
pullPolicy: IfNotPresent
|
|
replicas: 3
|
|
resources:
|
|
requests:
|
|
memory: "768Mi"
|
|
cpu: "750m"
|
|
limits:
|
|
memory: "1536Mi"
|
|
cpu: "1500m"
|
|
healthCheck:
|
|
enabled: true
|
|
|
|
ingress:
|
|
enabled: true
|
|
className: "nginx"
|
|
annotations:
|
|
cert-manager.io/cluster-issuer: "letsencrypt-prod"
|
|
nginx.ingress.kubernetes.io/ssl-redirect: "true"
|
|
nginx.ingress.kubernetes.io/force-ssl-redirect: "true"
|
|
hosts:
|
|
- host: warehouse13.example.com
|
|
paths:
|
|
- path: /
|
|
pathType: Prefix
|
|
backend: app
|
|
tls:
|
|
- secretName: warehouse13-tls
|
|
hosts:
|
|
- warehouse13.example.com
|
|
|
|
# Affinity for pod distribution
|
|
affinity:
|
|
podAntiAffinity:
|
|
preferredDuringSchedulingIgnoredDuringExecution:
|
|
- weight: 100
|
|
podAffinityTerm:
|
|
labelSelector:
|
|
matchExpressions:
|
|
- key: app.kubernetes.io/name
|
|
operator: In
|
|
values:
|
|
- warehouse13
|
|
topologyKey: kubernetes.io/hostname
|