- Switch registry from ghcr.io to zot0213.kro.kr - Add ArgoCD Image Updater annotations for auto-deploy - Add zot-registry: enabled label for ClusterExternalSecret - Use :main tag for digest-based updates
65 lines
1010 B
YAML
65 lines
1010 B
YAML
# Jovies Web App Helm Values
|
|
|
|
name: jovies
|
|
|
|
image:
|
|
registry: zot0213.kro.kr
|
|
repository: jovies
|
|
tag: main
|
|
pullPolicy: Always
|
|
|
|
imagePullSecrets:
|
|
- name: zot-registry-credentials
|
|
|
|
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: 40Mi
|
|
cpu: 5m
|
|
limits:
|
|
memory: 100Mi
|
|
|
|
healthCheck:
|
|
enabled: true
|
|
path: /
|
|
livenessProbe:
|
|
initialDelaySeconds: 30
|
|
periodSeconds: 10
|
|
readinessProbe:
|
|
initialDelaySeconds: 5
|
|
periodSeconds: 5
|
|
|
|
env:
|
|
- name: NODE_ENV
|
|
value: production
|
|
|
|
externalSecret:
|
|
enabled: false
|