Files
monitoring-tg/k8s/configmap.yaml
Grendgi a924cd832b
All checks were successful
Build and Deploy / build-and-deploy (push) Successful in 45s
Store monitoring TG media in MinIO
2026-06-05 16:58:08 +03:00

29 lines
800 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"
PYTHON_BASE_URL: "http://127.0.0.1:8001"
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"
MINIO_ENDPOINT: "s3-minio.estateliga.work"
MINIO_BUCKET: "monitoring-tg-media"
MINIO_USE_SSL: "1"
MINIO_INSECURE_SKIP_VERIFY: "0"
MINIO_REGION: "us-east-1"
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"
LLM_CLASSIFIER_OWNER: "go"