Files
boc/vims-backend/k8s/postgres-simple.yaml
T
Bernt 6de2455917 v1.2.0: Add Global Markets footer, translated to 9 languages
- Added GLOBAL_MARKETS_TITLE to all translation files
- Updated footer with 12 markets (4 active + 8 upcoming)
- Translated market section to: zh-cn, zh-tw, ja, ko, th, vi, id, ms, hi
- Built and deployed to production
- CloudFront invalidation: I3RTMXVFDJXWLG3SYX208OP1CC
2026-07-08 19:56:03 +00:00

48 lines
891 B
YAML

apiVersion: apps/v1
kind: Deployment
metadata:
name: vims-postgres
namespace: vims
spec:
replicas: 1
selector:
matchLabels:
app: vims-postgres
template:
metadata:
labels:
app: vims-postgres
spec:
containers:
- name: postgres
image: postgres:15-alpine
ports:
- containerPort: 5432
env:
- name: POSTGRES_DB
value: "vims"
- name: POSTGRES_USER
value: "postgres"
- name: POSTGRES_PASSWORD
value: "postgres"
resources:
requests:
memory: "256Mi"
cpu: "250m"
limits:
memory: "512Mi"
cpu: "500m"
---
apiVersion: v1
kind: Service
metadata:
name: vims-postgres
namespace: vims
spec:
selector:
app: vims-postgres
ports:
- port: 5432
targetPort: 5432
type: ClusterIP