5d9a159e07
kustomize 5.4.3 (bundled in ArgoCD) removed localChartPath and chartPath from its JSON schema, making helmCharts: with a local chart path invalid. Pre-render the base manifests with 'make render-helm' instead; overlays patch the plain YAML as before. ServiceMonitor excluded until Prometheus is installed. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
26 lines
444 B
YAML
26 lines
444 B
YAML
# Helm values used to render k8s/base/manifest.yaml.
|
|
# Run 'make render-helm' after changing these or the chart templates.
|
|
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
|