22 lines
562 B
YAML
22 lines
562 B
YAML
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: monitoring-tg-config
|
|
namespace: monitoring-tg
|
|
data:
|
|
API_HOST: "0.0.0.0"
|
|
API_PORT: "8000"
|
|
PUBLIC_BASE_PATH: "/api/monitoring-tg"
|
|
POSTGRES_HOST: "postgres.monitoring-tg.svc.cluster.local"
|
|
POSTGRES_PORT: "5432"
|
|
POSTGRES_USER: "parser"
|
|
POSTGRES_DB: "parser"
|
|
TG_SESSION_PATH: "/data/session/parser.session"
|
|
MEDIA_DIR: "/data/media"
|
|
POLL_INTERVAL_SECONDS: "60"
|
|
POLL_HISTORY_LIMIT: "50"
|
|
LLM_ENABLED: "1"
|
|
LLM_BASE_URL: "http://10.2.3.5:8002"
|
|
LLM_MODEL: "qwen2.5-14b"
|
|
LLM_MAX_TOKENS: "600"
|