chake(1) - serverless configuration with chef ============================================= chake is a tool that helps you manage multiple hosts with, without the need for a chef server. Configuration is managed in a local directory, which should probably be under version control with **git(1)** or anything else. Configuration is usually deployed via rsync over SSH, and applied by invoking **chef-solo(1)** over SSH on each host. ## Installation $ gem install chake ## Creating the repository ``` $ chake init [create] nodes.yaml [ mkdir] nodes.d/ [create] config.rb [ mkdir] config/roles [ mkdir] cookbooks/basics/recipes/ [create] cookbooks/basics/recipes/default.rb [create] Rakefile ``` A brief explanation of the created files: |File|Description| |----|-----------| | `nodes.yaml` | where you will list the hosts you will be managing, and what recipes to apply to each of them. | | `nodes.d` | a directory with multiple files in the same format as nodes.yaml. All files matching `*.yaml` in it will be added to the list of nodes. | | `config.rb` | contains the chef-solo configuration. You can modify it, but usually you won't need to. | | `config/roles` | directory is where you can put your role definitions. | | `cookbooks` | directory where you will store your cookbooks. A sample cookbook called "basics" is created, but feel free to remove it and add actual cookbooks. | | `Rakefile` | Contains just the `require 'chake'` line. You can augment it with other tasks specific to your intrastructure. | After the repository is created, you can call either `chake` or `rake`, as they are completely equivalent. ## Managing nodes Just after you created your repository, the contents of `nodes.yaml` is the following: ```yaml host1.mycompany.com: run_list: - recipe[basics] ``` You can list your hosts with `rake nodes`: ``` $ rake nodes host1.mycompany.com ssh ``` To add more nodes, just append to `nodes.yaml`: ```yaml host1.mycompany.com: run_list: - recipe[basics] host2.mycompany.com: run_list: - recipes[basics] ``` And chake now knows about your new node: ``` $ rake nodes host1.mycompany.com ssh host2.mycompany.com ssh ``` ## Preparings nodes to be managed Nodes have very few initial requirements to be managed with `chake`: - The node must be accessible via SSH. - The user you connect to the node must either be `root`, or be allowed to run `sudo` (in which case `sudo` must be installed). **A note on password prompts:** every time chake calls ssh on a node, you may be required to type in your password; every time chake calls sudo on the node, you may be require to type in your password. For managing one or two nodes this is probably fine, but for larger numbers of nodes it is not practical. To avoid password prompts, you can: - Configure SSH key-based authentication. This is more secure than using passwords. While you are at it, you also probably want disable password authentication completely, and only allow key-based authentication - Configure passwordless `sudo` access for the user you use to connect to your nodes. ## Checking connectivity and initial host setup To check whether hosts are correcly configured, you can use the `check` task: ```bash $ rake check ``` That will run the the `sudo true` command on each host. If that pass without you having to passwords, you are sure that * you have SSH access to each host; and * the user you are connecting as has password-less sudo correctly setup. ```bash $ rake check ``` ## Applying cookbooks To apply the configuration to all nodes, run ```bash $ rake converge ``` To apply the configuration to a single node, run ```bash $ rake converge:$NODE ``` To apply a single recipe on all nodes, run ```bash $ rake apply[myrecipe] ``` To apply a single recipe on a specific node, run ```bash $ rake apply:$NODE[myrecipe] ``` If you don't inform a recipe in the command line, you will be prompted for one. To run a shell command on all nodes, run ``` $ rake run[command] ``` If the `command` you want to run contains spaces, or other characters that are special do the shell, you have to quote them. To run a shell command on a specific node, run ``` $ rake run:$NODE[command] ``` If you don't inform a command in the command line, you will be prompted for one. To check the existing tasks, run ```bash $ rake -T ``` ## Writing cookbooks Since chake is actually a wrapper for Chef Solo, you should read the [chef documentation](https://docs.chef.io/). In special, look at the [Chef Solo Documentation](https://docs.chef.io/chef_solo.html). ## The node bootstrapping process When chake acts on a node for the first time, it has to bootstrap it. The bootstrapping process includes doing the following: - installing chef and rsync - disabling the chef client daemon - setting up the hostname ## Node URLs The keys in the hash that is represented in `nodes.yaml` is a node URL. All components of the URL but the hostname are optional, so just listing hostnames is the simplest form of specifying your nodes. Here are all the components of the node URLs: ``` [backend://][username@]hostname[:port][/path] ``` |Parameter|Meaning|Default value| |---------|-------|-------------| | backend | backend to use to connect to the host. `ssh` or `local` | `ssh` | | username | user name to connect with | The username on your local workstation | | hostname | the hostname to connect to | _none_ | | port | port number to connect to | 22 | | /path | where to store the cookbooks at the node | `/var/tmp/chef.$USERNAME` | ## Extra features ### Hooks You can define rake tasks that will be executed before bootstrapping nodes, before uploading configuration management content to nodes, and before converging. To do this, you just need to enhance the corresponding tasks: * `bootstrap_common`: executed before bootstrapping nodes (even if nodes have already been bootstrapped) * `upload_common`: executed before uploading content to the node * `converge_common`: executed before converging (i.e. running chef) Example: ``` task :bootstrap_common do sh './scripts/pre-bootstrap-checks' end ``` ### Encrypted files Any files ending matching `*.gpg` and `*.asc` will be decrypted with GnuPG before being sent to the node. You can use them to store passwords and other sensitive information (SSL keys, etc) in the repository together with the rest of the configuration. ### repository-local SSH configuration If you need special SSH configuration parameters, you can create a file called `.ssh_config` (or whatever file name you have in the `$CHAKE_SSH_CONFIG` environment variable, see below for details) in at the root of your repository, and chake will use it when calling `ssh`. ### Logging in to a host To easily login to one of your host, just run `rake login:$HOSTNAME`. This will automatically use the repository-local SSH configuration as above so you don't have to type `-F .ssh_config` all the time. ### Running all SSH invocations with some prefix command Some times, you will also want or need to prefix your SSH invocations with some prefix command in order to e.g. tunnel it through some central exit node. You can do this by setting `$CHAKE_SSH_PREFIX` on your environment. Example: ``` CHAKE_SSH_PREFIX=tsocks rake converge ``` The above will make all SSH invocations to all hosts be called as `tsocks ssh [...]` ### Converging local host If you want to manage your local workstation with chake, you can declare a local node like this in `nodes.yaml`: ```yaml local://thunderbolt: run_list: - role[workstation] ``` To apply the configuration to the local host, you can use the conventional `rake converse:thunderbolt`, or the special target `rake local`. When converging all nodes, `chake` will skip nodes that are declared with the `local://` backend and whose hostname does not match the hostname in the declaration. For example: ```yaml local://desktop: run_list: - role[workstation] local://laptop: run_list: - role[workstation] ``` When you run `rake converge` on `desktop`, `laptop` will be skipped, and vice-versa. ## Environment variables * `$CHAKE_SSH_CONFIG`: Local SSH configuration file. Defaults to `.ssh_config`. * `$CHAKE_SSH_PREFIX`: Command to prefix SSH (and rsync over SSH) calls with. * `$CHAKE_RSYNC_OPTIONS`: extra options to pass to `rsync`. Useful to e.g. exclude large files from being upload to each server. * `$CHAKE_NODES`: File containing the list of servers to be managed. Default: `nodes.yaml`. * `$CHAKE_NODES_D`: Directory containing node definition files servers to be managed. Default: `nodes.d`. * `$CHAKE_TMPDIR`: Directory used to store temporary cache files. Default: `tmp/chake`. ## See also * **rake(1)**, **chef-solo(1)** * Chef documentation: https://docs.chef.io/ ## Contributing 1. Fork it ( http://github.com/terceiro/chake/fork ) 2. Create your feature branch (`git checkout -b my-new-feature`) 3. Commit your changes (`git commit -am 'Add some feature'`) 4. Push to the branch (`git push origin my-new-feature`) 5. Create new Pull Request