Files
demo-java-api/deploy/helm/values.yaml
gitea-ci 74a57f251e
Some checks failed
Build & Deploy Java API / build (push) Has been cancelled
Initial commit: demo-java-api with CI/CD
2026-07-22 01:06:34 +08:00

39 lines
507 B
YAML

# Default values
image:
registry: harbor.cjjhc.top/library
name: demo-java-api
tag: "latest"
pullPolicy: Always
replicaCount: 2
service:
type: ClusterIP
port: 8080
ingress:
enabled: true
className: traefik
host: demo-java-api.local
path: /
resources:
requests:
cpu: 500m
memory: 512Mi
limits:
cpu: 1000m
memory: 1Gi
env: []
probes:
liveness:
enabled: true
path: /healthz
port: 8080
readiness:
enabled: true
path: /healthz
port: 8080