25 lines
395 B
YAML
25 lines
395 B
YAML
# Base Helm values — overlays patch on top of this via strategic merge.
|
|
replicaCount: 1
|
|
|
|
image:
|
|
repository: git.samidare.dev/rod/hello-svc
|
|
pullPolicy: Always
|
|
tag: "latest"
|
|
|
|
env:
|
|
APP_ENV: production
|
|
LOG_LEVEL: info
|
|
APP_VERSION: unknown
|
|
|
|
resources:
|
|
requests:
|
|
cpu: 100m
|
|
memory: 64Mi
|
|
limits:
|
|
cpu: 500m
|
|
memory: 128Mi
|
|
|
|
serviceMonitor:
|
|
enabled: true
|
|
interval: 30s
|