Files
taiji-AI-PAD/k8s/prod/configmap.yaml

70 lines
2.5 KiB
YAML
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# ConfigMap for Taiji AI-PAD
# 包含非敏感配置信息
apiVersion: v1
kind: ConfigMap
metadata:
name: taiji-config
namespace: taiji-ai
labels:
app: taiji-ai-pad
environment: production
data:
# ===========================================
# 应用环境配置
# ===========================================
APP_ENV: "production"
ENVIRONMENT: "production"
LOG_LEVEL: "INFO"
DEBUG: "false"
# ===========================================
# NATS配置 (K8s内部服务)
# ===========================================
NATS_URL: "nats://nats:4222"
# ===========================================
# LiteLLM网关配置 (Azure Container Apps)
# ===========================================
LITELLM_URL: "https://litellm.graystone-fb459c5d.southeastasia.azurecontainerapps.io"
LLM_BASE_URL: "https://litellm.graystone-fb459c5d.southeastasia.azurecontainerapps.io"
# ===========================================
# Agent Manager 配置 (AKS内部服务)
# 服务部署在 agent-manager namespace
# ===========================================
AGENT_MANAGER_URL: "http://agent-manager.agent-manager.svc.cluster.local:80"
AGENT_K8S_NAMESPACE: "ai-agents"
# ===========================================
# OpenRouter配置
# ===========================================
OPENROUTER_BASE_URL: "https://openrouter.ai/api/v1"
# ===========================================
# RapidAPI配置
# ===========================================
RAPIDAPI_HOST: "rapidapi.com"
# ===========================================
# JWT配置
# ===========================================
JWT_ALGORITHM: "HS256"
JWT_EXPIRE_MINUTES: "1440"
# ===========================================
# SMTP邮箱配置
# ===========================================
SMTP_SERVER: "smtp.gmail.com"
SMTP_PORT: "465"
SMTP_EMAIL: "super@heicode.cc"
SMTP_USE_SSL: "true"
# ===========================================
# Heicode magic-link 邮箱登录(§23/HM#74 终态:落地链接走客户端登录域名,不再用 apimtaiji)
# 用于邮件正文里拼出浏览器可直接打开的 landing 绝对 URL
# 拼成 https://code.heicode.cc/api/heicode-auth/api/auth/magic-link/landing?token=...&state=...
# ===========================================
MAGIC_LINK_PUBLIC_BASE_URL: "https://code.heicode.cc/api/heicode-auth"
# 发信总闸:切 Google(super@heicode.cc) SMTP 后开启真实发信(2026-06-11)
MAGIC_LINK_EMAIL_ENABLED: "true"