Files
demo-go-api/deploy/helm/values.yaml
Joe a8e92c1952
Some checks failed
Build & Deploy Go API / build (push) Failing after 1m4s
fix: switch registry from zot to Harbor (192.168.1.212:1180/library)
2026-07-19 13:53:49 +08:00

38 lines
504 B
YAML

# Default values
image:
registry: 192.168.1.212:1180/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