码迷,mamicode.com
首页 > 其他好文 > 详细

简易配置中心Confd入手

时间:2019-12-20 01:07:48      阅读:170      评论:0      收藏:0      [点我收藏+]

标签:node   github   edit   table   backend   under   efi   files   this   

技术图片

技术图片

技术图片

技术图片

技术图片

技术图片

技术图片

改成动态更新配置文件,如下每五秒重新生成配置文件

技术图片

confd与etcd的使用

Add keys

This guide assumes you have a working etcd, or consul server up and running and the ability to add new keys.

/tmp/test-etcd/etcdctl set /myapp/database/url db.example.com
/tmp/test-etcd/etcdctl set /myapp/database/user rob

Create the confdir

The confdir is where template resource configs and source templates are stored.

sudo mkdir -p /etc/confd/{conf.d,templates}

Create a template resource config

Template resources are defined in TOML config files under the confdir.

/etc/confd/conf.d/myconfig.toml

[template]
src = "myconfig.conf.tmpl"
dest = "/tmp/myconfig.conf"
keys = [
    "/myapp/database/url",
    "/myapp/database/user",
]

Create the source template

Source templates are Golang text templates.

/etc/confd/templates/myconfig.conf.tmpl

[myconfig]
database_url = {{getv "/myapp/database/url"}}
database_user = {{getv "/myapp/database/user"}}

Process the template

confd supports two modes of operation daemon and onetime. In daemon mode confd polls a backend for changes and updates destination configuration files if necessary.

etcd

confd -onetime -backend etcd -node http://127.0.0.1:2379




简易配置中心Confd入手

标签:node   github   edit   table   backend   under   efi   files   this   

原文地址:https://www.cnblogs.com/hualou/p/12071072.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!