- Set CPU request to VPA recommendation - Set CPU limit to VPA × 1.5 for burst allowance - Set Memory limit to VPA × 1.5 to prevent OOM - Prevent cascading failure on node failure
63 lines
1011 B
YAML
63 lines
1011 B
YAML
# Jovies Web App Helm Values
|
|
|
|
name: jovies
|
|
|
|
image:
|
|
registry: ghcr.io
|
|
repository: mayne0213/jovies
|
|
tag: latest # Updated by ArgoCD Image Updater
|
|
pullPolicy: Always
|
|
|
|
replicaCount: 1
|
|
containerPort: 3000
|
|
|
|
service:
|
|
enabled: true
|
|
type: ClusterIP
|
|
port: 80
|
|
|
|
ingress:
|
|
enabled: true
|
|
className: traefik
|
|
annotations:
|
|
cert-manager.io/cluster-issuer: letsencrypt-prod
|
|
hosts:
|
|
- host: jovies.kro.kr
|
|
paths:
|
|
- path: /
|
|
pathType: Prefix
|
|
- host: www.jovies.kro.kr
|
|
paths:
|
|
- path: /
|
|
pathType: Prefix
|
|
tls:
|
|
- secretName: jovies-tls
|
|
hosts:
|
|
- jovies.kro.kr
|
|
- www.jovies.kro.kr
|
|
|
|
resources:
|
|
requests:
|
|
memory: 100Mi
|
|
cpu: 15m
|
|
limits:
|
|
memory: 150Mi
|
|
cpu: 23m
|
|
|
|
healthCheck:
|
|
enabled: true
|
|
path: /
|
|
livenessProbe:
|
|
initialDelaySeconds: 30
|
|
periodSeconds: 10
|
|
readinessProbe:
|
|
initialDelaySeconds: 5
|
|
periodSeconds: 5
|
|
|
|
env:
|
|
- name: NODE_ENV
|
|
value: production
|
|
|
|
externalSecret:
|
|
enabled: false
|