init: demo-frontend with CI/CD template
Some checks failed
Build & Deploy Frontend / build (push) Has been cancelled
Build & Deploy Frontend / deploy (push) Has been cancelled

This commit is contained in:
joe
2026-07-19 02:13:20 +08:00
committed by Joe
parent ed58df3cfb
commit fe1c93eacc
6 changed files with 242 additions and 0 deletions

38
deploy/helm/values.yaml Normal file
View File

@@ -0,0 +1,38 @@
# Default values
image:
registry: 127.0.0.1:5000
name: demo-frontend
tag: latest
pullPolicy: Always
replicaCount: 2
service:
type: ClusterIP
port: 8080
ingress:
enabled: false
className: traefik
host: demo-frontend.local
path: /
resources:
requests:
cpu: 100m
memory: 128Mi
limits:
cpu: 500m
memory: 512Mi
env: []
probes:
liveness:
enabled: true
path: /healthz
port: 8080
readiness:
enabled: true
path: /healthz
port: 8080