2
3 主要变更:
4 - 重构Terraform/OpenTofu目录结构,统一迁移至infrastructure/opentofu
5 - 添加"7天创造世界"文档,记录基础设施建设演进逻辑
6 - 更新Consul集群配置管理经验,添加实际案例和解决方案
7 - 修正README中的Sticky Note,反映Consul集群健康状态
8 - 添加Ansible部署配置和inventory文件
9 - 完善项目文档结构,添加各组件配置指南
10
11 技术架构演进:
12 - 第1天: Tailscale网络连接基础 ✅
13 - 第2天: Ansible分布式控制 ✅
14 - 第3天: Nomad服务感知与任务调度 ✅
15 - 第4天: Consul配置集中管理 ✅
16 - 第5天: OpenTofu状态一致性 ✅
17 - 第6天: Vault密钥管理 ⏳
18 - 第7天: Waypoint应用部署 ⏳
46 lines
1.3 KiB
HCL
46 lines
1.3 KiB
HCL
# Nomad 多数据中心生产环境输出
|
|
|
|
output "cluster_overview" {
|
|
description = "Nomad 多数据中心集群概览"
|
|
value = module.nomad_cluster.cluster_overview
|
|
}
|
|
|
|
output "cluster_endpoints" {
|
|
description = "集群连接端点"
|
|
value = module.nomad_cluster.cluster_endpoints
|
|
}
|
|
|
|
output "oracle_korea_node" {
|
|
description = "Oracle Cloud 韩国节点信息"
|
|
value = module.nomad_cluster.oracle_korea_node
|
|
}
|
|
|
|
output "huawei_us_node" {
|
|
description = "华为云美国节点信息"
|
|
value = module.nomad_cluster.huawei_us_node
|
|
}
|
|
|
|
output "deployment_summary" {
|
|
description = "部署摘要"
|
|
value = {
|
|
total_nodes = module.nomad_cluster.cluster_overview.total_nodes
|
|
datacenters = keys(module.nomad_cluster.cluster_overview.datacenters)
|
|
|
|
next_steps = [
|
|
"1. 等待所有节点启动完成 (约 5-10 分钟)",
|
|
"2. 运行: ./generated/post-deploy.sh",
|
|
"3. 验证集群: nomad server members",
|
|
"4. 测试跨 DC 调度: nomad job run generated/cross-dc-test.nomad",
|
|
"5. 访问 Web UI 查看集群状态"
|
|
]
|
|
|
|
web_ui_urls = module.nomad_cluster.cluster_endpoints.nomad_ui_urls
|
|
|
|
ssh_commands = module.nomad_cluster.cluster_endpoints.ssh_commands
|
|
}
|
|
}
|
|
|
|
output "verification_commands" {
|
|
description = "验证命令"
|
|
value = module.nomad_cluster.verification_commands
|
|
} |