feat: 添加三个美股 AI Agent
- stock_quote_agent: 美股实时行情查询 - stock_news_agent: 美股新闻资讯分析 - stock_analysis_agent: 美股技术分析 更新: - 添加 agent 代码到 agent_templates/agents/ - 更新 k8s_manager.py TEMPLATE_PORTS - 添加构建和部署脚本
This commit is contained in:
@@ -10,3 +10,14 @@ data:
|
||||
AZURE_DNS_ZONE: "taijiagnet.com"
|
||||
AZURE_SUBSCRIPTION_ID: "your-subscription-id"
|
||||
AZURE_RESOURCE_GROUP: "your-resource-group"
|
||||
|
||||
# Gitee 配置(非敏感信息)
|
||||
GITEE_API_URL: "http://gitee.ath.cx:3000/api/v1"
|
||||
GITEE_BASE_URL: "http://gitee.ath.cx:3000"
|
||||
GITEE_OWNER: "xiaohei"
|
||||
GITEE_USERNAME: "zhanggangyong"
|
||||
GITEE_TEMPLATE_REPO: "cicd-AKS"
|
||||
|
||||
# ACR 配置
|
||||
ACR_REGISTRY: "agnettaiji.azurecr.io"
|
||||
ACR_NAMESPACE: "ai-agents"
|
||||
@@ -61,6 +61,17 @@ spec:
|
||||
secretKeyRef:
|
||||
name: agent-manager-secret
|
||||
key: AZURE_CLIENT_SECRET
|
||||
# Gitee 凭据
|
||||
- name: GITEE_TOKEN
|
||||
valueFrom:
|
||||
secretKeyRef:
|
||||
name: agent-manager-secret
|
||||
key: GITEE_TOKEN
|
||||
- name: GITEE_PASSWORD
|
||||
valueFrom:
|
||||
secretKeyRef:
|
||||
name: agent-manager-secret
|
||||
key: GITEE_PASSWORD
|
||||
|
||||
# 挂载 kubeconfig(用于管理其他 Agent)
|
||||
volumeMounts:
|
||||
|
||||
@@ -10,5 +10,9 @@ stringData:
|
||||
AZURE_CLIENT_ID: "your-client-id"
|
||||
AZURE_CLIENT_SECRET: "your-client-secret"
|
||||
|
||||
# Gitee 凭据(敏感信息)
|
||||
GITEE_TOKEN: "your-gitee-token"
|
||||
GITEE_PASSWORD: "your-gitee-password"
|
||||
|
||||
# 数据库密码(如果需要单独管理)
|
||||
# DB_PASSWORD: "By@123456."
|
||||
|
||||
Reference in New Issue
Block a user