feat: improve security and stability for Vaultwarden and CodiMD

Security:
- Move Vaultwarden ADMIN_TOKEN to Secret (was plaintext)
- Remove root user execution from CodiMD (runAsUser: 0)
- Use fixed image versions instead of latest tag

Stability:
- Add liveness/readiness probes to Vaultwarden, CodiMD, CodiMD DB
- Add resource requests/limits to all services
- Set appropriate memory/CPU constraints

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-04-01 17:52:30 +08:00
parent 34751e4013
commit 3bf3ddd306
4 changed files with 86 additions and 7 deletions

View File

@@ -5,7 +5,7 @@ metadata:
spec:
replicas: 1
strategy:
type: Recreate
type: Recreate
selector:
matchLabels:
app: codimd
@@ -14,12 +14,16 @@ spec:
labels:
app: codimd
spec:
securityContext: # <-- 這裡開始
runAsUser: 0
fsGroup: 0 # <-- 結束
containers:
- name: codimd
image: hackmdio/hackmd:latest
image: hackmdio/hackmd:2.5.3-alpine
resources:
requests:
memory: "256Mi"
cpu: "100m"
limits:
memory: "512Mi"
cpu: "500m"
env:
- name: CMD_DB_URL
valueFrom:
@@ -34,6 +38,23 @@ spec:
value: "true"
- name: CMD_CSP_ENABLE
value: "false"
# Health check (CodiMD has /healthz endpoint)
livenessProbe:
httpGet:
path: /healthz
port: 3000
initialDelaySeconds: 30
periodSeconds: 10
timeoutSeconds: 5
failureThreshold: 3
readinessProbe:
httpGet:
path: /healthz
port: 3000
initialDelaySeconds: 5
periodSeconds: 10
timeoutSeconds: 5
failureThreshold: 3
volumeMounts:
- mountPath: "/home/hackmd/app/public/uploads"
name: upload-data