Files
web-apps/portfolio/helm-values.yaml
Mayne0213 128ab8cdb7 REFACTOR(repo): migrate to Helm chart structure
- Add web-app Helm chart in charts/web-app/
- Replace individual deployment/service/ingress YAML with helm-values
- Update ArgoCD applications to use Helm chart with values files
- Reduces per-app files from 6 to 2 (argocd.yaml + helm-values.yaml)

Apps migrated: jaejadle, jaejadle-dev, joossam, joossam-dev,
jotion, jovies, portfolio, todo
2026-01-06 01:04:43 +09:00

66 lines
1.1 KiB
YAML

# Portfolio Web App Helm Values
name: portfolio
image:
registry: ghcr.io
repository: mayne0213/portfolio
tag: latest
pullPolicy: Always
imagePullSecrets: []
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: minjo0213.kro.kr
paths:
- path: /
pathType: Prefix
- host: www.minjo0213.kro.kr
paths:
- path: /
pathType: Prefix
tls:
- secretName: portfolio-tls
hosts:
- minjo0213.kro.kr
- www.minjo0213.kro.kr
resources:
requests:
memory: 80Mi
cpu: 20m
limits:
memory: 150Mi
healthCheck:
enabled: true
path: /
livenessProbe:
initialDelaySeconds: 30
periodSeconds: 10
readinessProbe:
initialDelaySeconds: 5
periodSeconds: 5
env:
- name: NODE_ENV
value: production
- name: PROMETHEUS_URL
value: http://prometheus.prometheus.svc.cluster.local:9090
externalSecret:
enabled: false