Files
demo-go-api/deploy/helm/values.yaml
Joe b40f1ebcfe
Some checks failed
Build & Deploy Go API / build (push) Failing after 15s
ci: switch registry to external harbor
2026-07-21 23:02:43 +08:00

38 lines
502 B
YAML

# Default values
image:
registry: harbor.cjjhc.top/library
name: demo-go-api
tag: latest
pullPolicy: Always
replicaCount: 2
service:
type: ClusterIP
port: 8080
ingress:
enabled: false
className: traefik
host: demo-go-api.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