Files
web-apps/joossam-dev/helm-values.yaml
Mayne0213 83fd149f58 FEAT(repo): add startupProbe for CPU-limited apps
- Add startupProbe to Helm chart template
- Configure 300s startup timeout (10s × 30 attempts)
- Set initialDelaySeconds to 0 for liveness/readiness
- Prevents pod restart loop during slow startup
2026-01-07 23:20:09 +09:00

60 lines
949 B
YAML

# Joossam Dev Web App Helm Values
name: joossam-dev
image:
registry: ghcr.io
repository: mayne0213/joossam
tag: develop
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: dev.joossameng.kro.kr
paths:
- path: /
pathType: Prefix
tls:
- secretName: joossam-dev-tls
hosts:
- dev.joossameng.kro.kr
resources:
requests:
memory: 160Mi
cpu: 15m
limits:
memory: 160Mi
cpu: 23m
healthCheck:
enabled: true
path: /
startupProbe:
periodSeconds: 10
failureThreshold: 30
livenessProbe:
initialDelaySeconds: 0
periodSeconds: 10
readinessProbe:
initialDelaySeconds: 0
periodSeconds: 5
externalSecret:
enabled: false