元配置工具
我们设计并提供定制的独立系统,该系统由分布在不同数量的机器上的不同数量的软件模块组成。一个示例系统由分布在大约 60 台机器上的大约 140 个软件模块组成。
每个软件模块都需要某种配置文件,其中包括数据库访问 URL、服务器 IP 地址等。其中许多参数是相互依赖的;例如,如果模块“A”部署在计算机“X”上,则模块“B”需要在其配置文件中提供计算机“X”的 IP 地址。
在我们使用 Python 或其他脚本语言进行某些操作之前,是否有任何现有工具可以完成此类操作?我正在考虑将系统描述转换为一堆配置文件之类的事情。
We design and deliver bespoke stand-alone systems that consist of a variable number of software modules distributed over a variable number of machines. One example system consists of circa 140 software modules distributed over approximately 60 machines.
Each of the software modules requires some kind of configuration file that would include things like database access URLs, server IP addresses ad so on. Many of these parameters are interdependent; for example, if module "A" is deployed on machine "X" then module "B" needs the IP address for machine "X" in it's config file.
Before we hack something together in Python or some other scripting language, are there any existing tools that do this kind of thing? I'm thinking something like transforming a system description into a bunch of configuration files.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
显然我的 google-fu 今天回来了,我找到了这些:
以及具有类似工具的 wiki 页面 此处。
所有这些工具所做的事情远远超出了我最初考虑的范围(例如,部署),但这对我们来说可能是一件有用的事情。
Apparently my google-fu has returned today, and I've found these:
And a wiki page with similar tools here.
All of these tools do far more than I had originally considered (for example, deployment), but this might be a useful thing for us anyway.