Files
demo-go-api/deploy/helm/values.yaml
joe 3bd288f2e7
All checks were successful
Build & Deploy Go API / build (push) Successful in 10s
fix: use k8s internal registry DNS
2026-07-19 02:44:39 +08:00

38 lines
518 B
YAML

# Default values
image:
registry: zot-registry.cicd.svc.cluster.local:5000
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