Kubernetes ConfigMap
配置示例
Code Source: https://github.com/gogf/examples/tree/main/config/kubecm
介绍
本示例展示了如何在 GoFrame
应用程序中通过配置管理组件集成 Kubernetes ConfigMap
。
目录结构
.
├── boot_in_pod/ # Pod内部署的启动配置
│ └── boot.go # Pod内客户端初始化
├── boot_out_pod/ # Pod外部署的启动配置
│ └── boot.go # Pod外客户端初始化
├── main.go # 主程序入口
├── go.mod # Go 模块文件
└── go.sum # Go 模块校验和
环境要求
- Go 1.22 或更高版本
- Git
- GoFrame
- GoFrame Kubernetes ConfigMap Config