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
This commit is contained in:
55
joossam/helm-values.yaml
Normal file
55
joossam/helm-values.yaml
Normal file
@@ -0,0 +1,55 @@
|
||||
# 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: 256Mi
|
||||
cpu: 20m
|
||||
limits:
|
||||
memory: 512Mi
|
||||
|
||||
healthCheck:
|
||||
enabled: true
|
||||
path: /
|
||||
livenessProbe:
|
||||
initialDelaySeconds: 10
|
||||
periodSeconds: 10
|
||||
readinessProbe:
|
||||
initialDelaySeconds: 5
|
||||
periodSeconds: 5
|
||||
|
||||
externalSecret:
|
||||
enabled: false
|
||||
Reference in New Issue
Block a user