Serverkit Build Status Code Climate

Configuration management toolkit for IT automation.

Usage

Write a recipe, then run serverkit executable to validate, inspect, check, and apply the recipe.

serverkit validate

Validates recipe schema, resources, and attributes. For instance, it shows validation error if source attributes is missing in file resource.

$ serverkit validate recipe.yml
Error: source attribute is required in file resource
Error: path attribute can't be unreadable path in recipe resource

serverkit inspect

Shows fully-expanded recipe data in JSON format.

$ serverkit inspect recipe.yml
{
  "resources": [
    {
      "id": "install_mysql",
      "type": "homebrew",
      "name": "mysql"
    },
    {
      "id": "install_redis",
      "type": "homebrew",
      "name": "redis"
    },
    {
      "id": "install_licecap",
      "type": "homebrew_cask",
      "name": "licecap"
    },
    {
      "id": "install_alfred",
      "type": "homebrew_cask",
      "name": "alfred"
    },
    {
      "id": "clone_dotfiles",
      "type": "git",
      "repository": "[email protected]:r7kamura/dotfiles.git",
      "path": "/Users/r7kamura/src/github.com/r7kamura/dotfiles"
    },
    {
      "id": "symlink_zshrc",
      "type": "symlink",
      "source": "/Users/r7kamura/.zshrc",
      "destination": "/Users/r7kamura/src/github.com/r7kamura/dotfiles/linked/.zshrc"
    }
  ]
}

serverkit check

Shows the difference between your recipe and the state of the target host.

$ serverkit check recipe.yml
[ OK ] install_mysql
[ OK ] install_redis
[ OK ] install_licecap
[ OK ] install_alfred
[ NG ] clone_dotfiles
[ NG ] symlink_zshrc

serverkit apply

Executes migration process to fill-in the gaps.

$ serverkit apply recipe.yml
[SKIP] install_mysql
[SKIP] install_redis
[SKIP] install_licecap
[SKIP] install_alfred
[DONE] clone_dotfiles
[DONE] symlink_zshrc

SSH support

Use --hosts= option to execute serverkit over SSH. Serverkit does not require any installation on server-side. If you want to specify SSH configuration, write it into your ~/.ssh/config.

$ serverkit apply recipe.yml --hosts=alpha.example.com
$ serverkit apply recipe.yml --hosts=alpha.example.com,bravo.example.com

Recipe

A recipe describes the desired state of your server. It is mostly a collection of resources, defined using certain patterns.

Format

A recipe can be specified as a path to one of the following patterns:

  • JSON file
  • YAML file named with *.yaml or *.yml
  • ERB file named with *.json.erb or *.yml.erb
  • Executable to output JSON
  • Directory including recipe files recursively
$ serverkit apply recipe
$ serverkit apply recipe.json
$ serverkit apply recipe.json.erb
$ serverkit apply recipe.json.erb --variables=variables
$ serverkit apply recipe.json.erb --variables=variables.json
$ serverkit apply recipe.json.erb --variables=variables.json.erb
$ serverkit apply recipe.json.erb --variables=variables.yml
$ serverkit apply recipe.json.erb --variables=variables.yml.erb
$ serverkit apply recipe.json.erb --variables=variables/
$ serverkit apply recipe.yml
$ serverkit apply recipe.yml.erb
$ serverkit apply recipes/

Variables

When using ERB recipe, you can also give optional variables file that defines configurations in a Hash object for ERB template. It supports similar format variation with Recipe. In ERB template, you can use given variables via methods named after its keys.

Example

This is an example recipe to install some packages, clone a git repository, and create a symlink.

# variables.yml
dotfiles_repository: r7kamura/dotfiles
user: r7kamura
# recipe.yml.erb
resources:
  - id: install_mysql
    type: package
    name: mysql
  - id: install_redis
    type: package
    name: redis
  - id: clone_dotfiles
    type: git
    repository: [email protected]:<%= dotfiles_repository %>.git
    path: /Users/<%= user %>/src/github.com/<%= dotfiles_repository %>
  - id: symlink_zshrc
    type: symlink
    source: /Users/<%= user %>/.zshrc
    destination: /Users/<%= user %>/src/github.com/<%= dotfiles_repository %>/.zshrc

Resource

A resource is a statement of configuration policy that describes the desired state for an item.

Type

A resource must have a type property. Currently the following types are available:

  • file
  • git
  • homebrew
  • homebrew_cask
  • package
  • recipe
  • service
  • symlink

Example

An example package resource that has id, type, and name attributes.

resources:
  - id: install_mysql # id attirbute (This resource is identified by this unique id)
    type: package     # type attribute (Serverkit::Resources::Package class is used for this)
    name: mysql       # name attribute (package resource requires name attribute)