Files
demo-frontend/deploy/helm/values.yaml
Joe 272b019cd0
Some checks failed
Build & Deploy / build (push) Failing after 9s
fix: patch image.registry in ArgoCD and update helm values to use Harbor
2026-07-19 13:54:25 +08:00

38 lines
483 B
YAML

# Default values
image:
registry: 192.168.1.212:1180/library
name: demo-frontend
tag: latest
pullPolicy: Always
replicaCount: 2
service:
type: ClusterIP
port: 80
ingress:
enabled: true
host: demo-frontend.local
path: /
resources:
requests:
cpu: 100m
memory: 128Mi
limits:
cpu: 500m
memory: 512Mi
env: []
probes:
liveness:
enabled: true
path: /healthz
port: 80
readiness:
enabled: true
path: /healthz
port: 80