Files
claude-api-proxy/.env.example
D8D Developer fec235eade feat: 添加 K8S 部署功能
- 新增 src/k8s-client.ts: K8S 客户端封装
- 新增 src/deploy.ts: 部署/删除/状态查询逻辑
- 新增 scripts/deploy.ts: 命令行部署工具
- 更新 .env.example: 添加 K8S 配置项
- 安装 @kubernetes/client-node@1.3.0 依赖

Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2026-03-20 10:19:37 +00:00

18 lines
406 B
Plaintext
Raw 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.

# Claude API 代理配置
# 上游 API 基础 URL
# Anthropic 官方: https://api.anthropic.com
# 智谱端点: https://open.bigmodel.cn/api/anthropic
ANTHROPIC_BASE_URL=https://api.anthropic.com
# 服务端口(默认 3000
PORT=3000
# K8S 部署配置
K8S_API_URL=http://10.0.0.52:23972
K8S_API_TOKEN=your_fixed_token_here
# 域名配置
DEV_HOST="*.dev.d8d.fun"
DEV_TLS_SECRET_NAME="dev-d8d-tls"