Files
web-apps/joossam/helm-values.yaml
Mayne0213 286e292780 PERF(resources): remove CPU limits - keep memory limits only
- CPU throttling prevents app startup, not crashes
- Memory OOM is the real cascading failure cause
- CPU request ensures fair scheduling
2026-01-07 23:48:28 +09:00

59 lines
915 B
YAML

# Joossam Web App Helm Values
name: joossam
image:
registry: ghcr.io
repository: mayne0213/joossam
tag: latest
pullPolicy: Always
imagePullSecrets:
- name: ghcr-secret
replicaCount: 1
containerPort: 8000
service:
enabled: true
type: ClusterIP
port: 80
ingress:
enabled: true
className: traefik
annotations:
cert-manager.io/cluster-issuer: letsencrypt-prod
hosts:
- host: joossameng.kro.kr
paths:
- path: /
pathType: Prefix
tls:
- secretName: joossam-tls
hosts:
- joossameng.kro.kr
resources:
requests:
memory: 160Mi
cpu: 15m
limits:
memory: 160Mi
healthCheck:
enabled: true
path: /
startupProbe:
periodSeconds: 10
failureThreshold: 30
livenessProbe:
initialDelaySeconds: 0
periodSeconds: 10
readinessProbe:
initialDelaySeconds: 0
periodSeconds: 5
externalSecret:
enabled: false