Files
infrastructure/servers/legion/k8s/neuron-technologies/prod/configmap.yaml
T
Will Anderson ddaab28638 Fix marketplace DB: revert workingDir, add NEURON_MARKETPLACE_DB_PATH
workingDir: /data broke the JVM (app.jar is a relative path in /app).
Add NEURON_MARKETPLACE_DB_PATH=/data/neuron-marketplace.db env var
following the same pattern as NEURON_DB_PATH for the core DB.
2026-04-26 01:49:48 -05:00

20 lines
738 B
YAML

apiVersion: v1
kind: ConfigMap
metadata:
name: neuron-prod-config
namespace: neuron-prod
data:
SPRING_PROFILES_ACTIVE: "prod"
NEURON_DATA_DIR: "/data"
NEURON_DB_PATH: "/data/neuron.db"
NEURON_MARKETPLACE_DB_PATH: "/data/neuron-marketplace.db"
NEURON_STORAGE_PATH: "/data"
SERVER_TOMCAT_ACCESSLOG_ENABLED: "true"
# Prod: minimal surface — never expose internals
MANAGEMENT_ENDPOINTS_WEB_EXPOSURE_INCLUDE: "health,info"
MANAGEMENT_ENDPOINT_HEALTH_SHOW_DETAILS: "never"
# Disable OTLP metrics push — Alloy has no metrics pipeline configured.
# Logs (Loki) and traces (Tempo) work fine via otelcol.receiver.otlp.
# Using Prometheus scrape for metrics instead.
MANAGEMENT_OTLP_METRICS_EXPORT_ENABLED: "false"