confd

command module
v0.1.0-beta Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Oct 9, 2013 License: MIT Imports: 18 Imported by: 0

README

confd

confd is a lightweight configuration management tool focused on keeping local configuration files up-to-date by polling etcd for specific keys and regenerating templates when values change. confd can also take care of reloading applications to pick up new config file changes.

Install

Download the latest binary release

Usage

Poll the etcd cluster node (127.0.0.1). All template configs under /etc/confd/conf.d will be processed one at a time every 30 secs. The "/production" string will be prefixed to keys when querying etcd.

confd -c /etc/confd -i 30 -p '/production' -n 'http://127.0.0.1:4001'

Using default settings process all template configs and exit.

confd -onetime

Same as above but authenticate with client certificates.

confd -onetime -key /etc/confd/ssl/client.key -cert /etc/confd/ssl/client.crt

Configuration File

The confd configuration file is written in the TOML format and is loaded from /etc/confd/confd.toml by default.

Optional:

  • confdir (string) - The path to confd configs. The default is /etc/confd.
  • etcd_nodes (array of strings) - An array of etcd cluster nodes. The default is ["http://127.0.0.1:4001"].
  • interval (int) - The number of seconds to wait between calls to etcd. The default is 600.
  • prefix (string) - The prefix string to prefix to keys when making calls to etcd. The default is "/".
  • client_cert (string) The cert file of the client.
  • client_key (string) The key file of the client.

Example:

[confd]
  confdir = "/etc/confd"
  etcd_nodes = [
    "http://127.0.0.1:4001",
  ]
  interval = 600
  prefix = "/"
  client_cert = "/etc/confd/ssl/client.crt"
  client_key = "/etc/confd/ssl/client.key"

Template Config

Template configs are written in TOML and define a single template resource. Template configs are stored under the confdir/conf.d directory.

Required:

  • dest (string) - output file where the template should be rendered.
  • keys (array of strings) - An array of etcd keys. Keys will be looked up with the configured prefix.
  • src (string) - relative path of a Go template. Templates are stored under the confdir/templates directory.

Optional:

  • group (string) - name of the group that should own the file.
  • mode (string) - mode the file should be in.
  • owner (string) - name of the user that should own the file.
  • reload_cmd (string) - command to reload config.
  • check_cmd (string) - command to check config. Use {{ .src }} to reference the rendered source template.

Example:

[template]
  src = "nginx.conf.tmpl"
  dest = "/etc/nginx/nginx.conf"
  group = "root"
  keys = [
    "/nginx/worker_processes",
  ]
  owner = "root"
  mode = "0644"
  check_cmd = "/usr/sbin/nginx -t -c {{ .src }}"
  reload_cmd = "/usr/sbin/service nginx restart"

Documentation

Overview

Copyright (c) 2013 Kelsey Hightower. All rights reserved. Use of this source code is governed by the Apache License, Version 2.0 that can be found in the LICENSE file.

Copyright (c) 2013 Kelsey Hightower. All rights reserved. Use of this source code is governed by the Apache License, Version 2.0 that can be found in the LICENSE file.

Directories

Path Synopsis
Package log provides support for logging to stdout and stderr.
Package log provides support for logging to stdout and stderr.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL