dns-ops/docs/cosmos-puppet-ops.mkd

487 lines
17 KiB
Markdown
Raw Normal View History

2013-10-15 08:45:22 +00:00
% System Operations using Cosmos & Puppet
% Leif Johansson / SUNET / 2017 / v0.0.5
2013-10-15 08:45:22 +00:00
Introduction
============
2023-01-19 16:46:23 +00:00
This document describes how to setup and run systems and service operations for a small to mid-sized
2013-10-15 08:45:22 +00:00
systems collection while maintaining scalability, security and auditability for changes.
2023-01-19 16:46:23 +00:00
The process described below is based on open source components and assumes a Linux-based hosting
infrastructure. These limitations could easily be removed though. This document describes the
2013-10-15 08:45:22 +00:00
multiverse template for combining cosmos and puppet.
Design Requirements
===================
The cosmos system has been used to operate security-critical infrastructure for a few years before
2023-01-19 16:46:23 +00:00
it was combined with puppet into the multiverse template.
2013-10-15 08:45:22 +00:00
2023-01-19 16:46:23 +00:00
Several of the design requirements below are fulfilled by cosmos alone, while some (eg consistency)
2013-10-15 08:45:22 +00:00
are easier to achieve using puppet than with cosmos alone.
Consistency
-----------
2023-01-19 16:46:23 +00:00
Changes should be applied atomically (locally on each host) across multiple system components on multiple
2013-10-15 08:45:22 +00:00
physical and logical hosts (aka system state). The change mechanism should permit verification of state
2023-01-19 16:46:23 +00:00
consistency and all modifications should be idempotents, i.e the same operation
performed twice on the same system state should not in itself cause a problem.
2013-10-15 08:45:22 +00:00
Auditability
------------
It must be possible to review changes in advance of applying them to system state. It
must also be possible to trace changes that have already been applied to privileged
system operators.
Authenticity
------------
All changes must be authenticated by private keys in the personal possession of privileged
2023-01-19 16:46:23 +00:00
system operators before applied to system state as well as at any point in the future.
2013-10-15 08:45:22 +00:00
Simplicity
----------
2023-01-19 16:46:23 +00:00
The system must be simple and must not rely on external services to be online to maintain
2013-10-15 08:45:22 +00:00
state except when new state is being requested and applied. When new state is being requested
external dependencies must be kept to a minimum.
Architecture
============
The basic architecture of puppet is to use a VCS (git) to manage and distribute changes to a
2023-01-19 16:46:23 +00:00
staging area on each managed host. At the staging area the changes are authenticated (using
tag signatures) and if valid, distributed to the host using local rsync. Before and after
2013-10-15 08:45:22 +00:00
hooks (using run-parts) are used to provide programmatic hooks.
Administrative Scope
--------------------
The repository constitutes the administrative domain of a multiverse setup: each host is
connected to (i.e runs cosmos off of) a single GIT repository and derives trust from signed
2023-01-19 16:46:23 +00:00
tags on that repository. A host cannot belong to more than 1 administrative domain but each
administrative domains can host multiple DNS domains - all hosts in a single repository
2013-10-15 08:45:22 +00:00
doesn't need to be in the same zone.
The role of Puppet
------------------
2023-01-19 16:46:23 +00:00
In the multiverse template, the cosmos system is used to authenticate and distribute changes
and prepare the system state for running puppet. Puppet is used to apply idempotent changes
2013-10-15 08:45:22 +00:00
to the system state using "puppet apply".
~~~~~ {.ditaa .no-separation}
+------------+ +------+
| cosmo repo |---->| host |-----+
+------------+ +------+ |
^ |
| |
2023-01-19 16:46:23 +00:00
(change) (manifests)
2013-10-15 08:45:22 +00:00
| |
+--------+ |
| puppet |<---+
+--------+
~~~~~
Note that there is no puppet master in this setup so collective resources cannot be used
2023-01-19 16:46:23 +00:00
in multiverse. Instead 'fabric' is used to provide a simple way to loop over subsets of
2013-10-15 08:45:22 +00:00
the hosts in a managed domain.
2023-01-19 16:46:23 +00:00
Private data (eg system credentials, application passwords, or private keys) are encrypted
2013-10-15 11:59:22 +00:00
to a master host-specific PGP key before stored in the cosmos repo.
2013-10-15 08:45:22 +00:00
System state can be tied to classes used to classify systems into roles (eg "database server"
2023-01-19 16:46:23 +00:00
or "webserver"). System classes can be assigned by regular expressions on the fqdn (eg all
hosts named db-\* is assigned to the "database server" class) using a custom puppet ENC.
2013-10-15 08:45:22 +00:00
The system classes are also made available to 'fabric' in a custom fabfile. Fabric (or fab)
2023-01-19 16:46:23 +00:00
is a simple frontend to ssh that allows an operator to run commands on multiple remote
2013-10-15 08:45:22 +00:00
hosts at once.
Trust
-----
2023-01-19 16:46:23 +00:00
All data in the system is maintained in a cosmos GIT repository. A change is
requested by signing a tag in the repository with a system-wide well-known name-prefix.
The tag name typically includes the date and a counter to make it unique.
2013-10-15 08:45:22 +00:00
2023-01-19 16:46:23 +00:00
The signature on the tag is authenticated against a set of trusted keys maintained in the
2013-10-15 08:45:22 +00:00
repository itself - so that one trusted system operator must be present to authenticate addition or
2023-01-19 16:46:23 +00:00
removal of another trusted system operator. This authentication of tags is done in addition
2013-10-15 08:45:22 +00:00
to authenticating access to the GIT repository when the changes are pushed. Trust is typically
2023-01-19 16:46:23 +00:00
bootstrapped when a repository is first established. This model also serves to provide auditability
2013-10-15 08:45:22 +00:00
of all changes for as long as repository history is retained.
Access to hosts is done through ssh with ssh-key access. The ssh keys are typically maintained
2023-01-19 16:46:23 +00:00
using either puppet or cosmos natively.
2013-10-15 08:45:22 +00:00
Consistency
-----------
As a master-less architecture, multiverse relies on _eventual consistency_: changes will eventually
2023-01-19 16:46:23 +00:00
be applied to all hosts. In such a model it becomes very important that changes are idempotent, so
2013-10-15 08:45:22 +00:00
that applying a change multiple times (in an effort to get dependent changes through) won't cause
2023-01-19 16:46:23 +00:00
an issue. Using native cosmos, such changes are archived using timestamp-files that control entry
2013-10-15 08:45:22 +00:00
into code-blocks:
```
stamp="${COSMOS\_BASE}/stamps/foo-v04.stamp"
if ! test -f $stamp; then
# do something here
touch $stamp
fi
```
This pattern is mostly replaced in multiverse by using puppet manifests and modules that
2023-01-19 16:46:23 +00:00
are inherently idempotent but it can nevertheless be a useful addition to the toolchain.
2013-10-15 08:45:22 +00:00
Implementation
==============
Implementation is based on two major components: cosmos and puppet. The cosmos system was
2013-10-15 11:52:38 +00:00
created by Simon Josefsson and Fredrik Thulin as a simple and secure way to distribute files
2023-01-19 16:46:23 +00:00
and run pre- and post-processors (using run-parts). This allows for a simple, yet complete
2013-10-15 08:45:22 +00:00
mechanism for updating system state.
The second component is puppet which is run in masterless (aka puppet apply) mode on files
distributed and authenticated using cosmos. Puppet is a widely deployed way to describe
system state using a set of idempotent operations. In theory, anything that can de done
2023-01-19 16:46:23 +00:00
using puppet can be done using cosmos post-processors but puppet allows for greater
2013-10-15 08:45:22 +00:00
abstraction which greatly increases readability.
2016-08-27 14:06:11 +00:00
The combination of puppet and cosmos is maintained on github in the 'SUNET/multiverse'
2013-10-15 08:45:22 +00:00
project.
2013-10-15 11:52:38 +00:00
The Cosmos Puppet Module
========================
Although not necessary, a few nice-to-have utilities in the form of puppet modules have
been collected as the cosmos puppet module (for want of a better name). The source for
2016-08-27 14:06:11 +00:00
this module is at https://github.com/SUNET/puppet-cosmos and it is included (but commented
2013-10-15 11:52:38 +00:00
out) in the cosmos-modules.conf file (cf below) for easy inclusion.
2013-10-15 08:45:22 +00:00
Operations
==========
Setting up a new administrative domain
--------------------------------------
The simplest way is to clone the multiverse repository. First install 'git'. On ubuntu/debian
this is in the 'git-core' package:
```
# apt-get install git-core
```
2023-01-19 16:46:23 +00:00
Also install 'fabric' - a very useful too for multiple-host-ssh that is integrated into
2013-10-15 08:45:22 +00:00
multiverse. Fabric provides the 'fab' command which will be introduced later on.
```
# apt-get install fabric
```
2023-01-19 16:46:23 +00:00
These two tools (git & fabric) are only needed on machines where system operators work.
2013-10-15 08:45:22 +00:00
2016-08-27 14:06:11 +00:00
Next clone git@github.com:SUNET/multiverse.git - this will form the basis of your cosmos+puppet
2013-10-15 08:45:22 +00:00
repository:
```
2016-08-27 14:06:11 +00:00
# git clone git@github.com:SUNET/multiverse.git myproj-cosmos
2013-10-15 08:45:22 +00:00
# cd myproj-cosmos
```
Next rename the upstream from github - you will want to keep this around to get new
features as the multiverse codebase evolves.
```
# git remote rename origin multiverse
```
2023-01-19 16:46:23 +00:00
Now add a new remote pointing to the git repo where you are going to be pushing
changes for your administrative domain. Also add a read-only version of this remote
2013-10-15 08:45:22 +00:00
as 'ro'. The read-only remote is used by multiverse scripts during host bootstrap.
```
# git remote add origin git+ssh://git@yourhost:myproj-cosmos.git
2016-08-27 14:06:11 +00:00
# git remote add ro https://yourhost/myproj-cosmos.git
2013-10-15 08:45:22 +00:00
```
Now edit .git/config and rename the 'main' branch to use the new 'origin' remote or
2016-08-27 14:06:11 +00:00
you'll try to push to the multiverse remote!
```
[branch "main"]
2016-08-27 14:06:11 +00:00
remote = origin
merge = refs/heads/main
2016-08-27 14:06:11 +00:00
```
Now create a branch for the 'multiverse' upstream so you can merge changes to multiverse:
2014-02-22 20:43:18 +00:00
```
2023-02-03 10:24:55 +00:00
# git checkout -b multiverse --track multiverse/main
2014-02-22 20:43:18 +00:00
```
Finally, you might need to push you main branch upstream to the new origin
```
# git checkout main
# git push -u origin main
```
2013-10-15 08:45:22 +00:00
Note that you can maintain your repo on just about any git hosting platform, including
2023-01-19 16:46:23 +00:00
github, gitorious or your own local setup as long as it supports read-only access to your
repository. It is important that the remotes called 'origin' and 'ro' refer to your
repository and not to anything else (like a private version of multiverse).
2013-10-15 08:45:22 +00:00
Now add at least one key to 'global/overlay/etc/cosmos/keys/' in a file with a .pub extension
(eg 'operator.pub') - the name of the file doesn't matter other than the extension.
```
# cp mykey.pub global/overlay/etc/cosmos/keys/
# git add global/overlay/etc/cosmos/keys/mykey.pub
# git commit -m "initial trust" global/overlay/etc/cosmos/keys/mykey.pub
```
At this point you should create and sign your first tag:
```
# ./bump-tag
```
2016-08-27 14:06:11 +00:00
If Git complains during the first run of bump-tag that "Your configuration specifies to
merge with the ref 'main' from the remote, but no such ref was fetched." then you
2016-08-27 14:06:11 +00:00
have run 'git push' to initialize the connection with the remote repository.
2013-10-15 08:45:22 +00:00
Make sure that you are using the key whose public key you just added to the repository! You
can now start adding hosts.
Adding a host
-------------
Bootstrapping a host is done using the 'addhost' command:
```
# ./addhost -b $fqdn
2013-10-15 08:45:22 +00:00
```
The -b flag causes addhost to attempt to bootstrap cosmos on the remote host using
ssh as root. This requires that root key trust be established in advance. The addhost
command creates and commits the necessary changes to the repository to add a host named
$fqdn. Only fully qualified hostnames should ever be used in cosmos+puppet.
2023-01-19 16:46:23 +00:00
The bootstrap process will create a cron-job on $fqdn that runs
2013-10-15 08:45:22 +00:00
```
# cosmos update && cosmos apply
```
every 15 minutes. This should be a good starting point for your domain. Now you may
want to add some 'naming rules'.
To bootstrap a machine that is not yet configured in DNS, use the following options:
```
# ./addhost -b -n $fqdn-to-add-later-in-dns -- IP-address
```
2013-10-15 08:45:22 +00:00
Defining naming rules
---------------------
2023-01-19 16:46:23 +00:00
A naming rule is a mapping from a name to a set of puppet classes. These are defined in
the file 'global/overlay/etc/puppet/cosmos-rules.yaml' (linked to the top level directory
2013-10-15 08:45:22 +00:00
in multiverse). This is a YAML format file whose keys are regular expressions and whose
values are lists of puppet class definitions. Here is an example that assigns all hosts
with names on the form ns\<number\>.example.com to the 'nameserver' class.
```
'ns[0-9]?.example.com$':
nameserver:
```
2023-01-19 16:46:23 +00:00
Note that the value is a hash with an empty value ('nameserver:') and not just a string
2013-10-15 08:45:22 +00:00
value.
Since regular expressions can also match on whole strings so the following is also
valid:
```
smtp.example.com:
mailserver:
relay: smtp.upstream.example.com
```
2023-01-19 16:46:23 +00:00
In this example the mailserver puppet class is given the relay argument (cf puppet
2013-10-15 08:45:22 +00:00
documentation).
Fabric integration
------------------
Given the above example the following command would reload all nameservers:
```
# fab --roles=nameservers -- rndc reload
```
Creating a change-request
-------------------------
2023-01-19 16:46:23 +00:00
After performing whatever changes you want to the repository, commit the changes as usual
2013-10-15 08:45:22 +00:00
and then sign an appropriately formatted tag. This last operation is wrapped in the 'bump-tag' command:
```
2023-01-19 16:46:23 +00:00
# git commit -m "some changes" global/overlay/something or/other/files
2013-10-15 08:45:22 +00:00
# ./bump-tag
```
The bump-tag command will ask for confirmation before signing and will rely on the git and
gpg commands to create, sign and push the correct tag.
Puppet modules
--------------
Puppet modules can be maintained using a designated cosmos pre-task that reads the file
/etc/puppet/cosmos-modules.conf. This file is a simple text-format file
with either three (for puppetlabs modules) or four columns:
2013-10-15 08:45:22 +00:00
```
#
# name source (puppetlabs fq name or git url) upgrade (yes/no) tag_pattern
2013-10-15 08:45:22 +00:00
#
apt puppetlabs/apt no
2013-10-15 08:45:22 +00:00
concat puppetlabs/concat no
cosmos https://github.com/SUNET/puppet-cosmos.git yes sunet-2*
#golang elithrar/golang yes
python https://github.com/SUNET/puppet-python.git yes sunet-2*
2013-10-15 08:45:22 +00:00
stdlib puppetlabs/stdlib no
ufw https://github.com/SUNET/puppet-module-ufw.git yes sunet-2*
2013-10-15 08:45:22 +00:00
vcsrepo puppetlabs/vcsrepo no
xinetd puppetlabs/xinetd no
```
2023-01-19 16:46:23 +00:00
This is an example file - the first field is the name of the module, the second is
the source: either a puppetlabs path or a git URL. The third field is 'yes' if the
module should be automatically updated or 'no' if it should only be installed. The
fourth field is a tag pattern to use (same style as the cosmos tag pattern).
As usual lines beginning with '#' are silently ignored.
2013-10-15 08:45:22 +00:00
2023-01-19 16:46:23 +00:00
This file is processed in a cosmos pre-hook so the modules should be available for
2013-10-15 08:45:22 +00:00
use in the puppet post-hook. By default the file contains several lines that are
commented out so review this file as you start a new multiverse setup.
In order to add a new module, the best way is to commit a change to this file and
2023-01-19 16:46:23 +00:00
tag this change, allowing time for the module to get installed everywhere before
2013-10-15 08:45:22 +00:00
adding a change that relies on this module.
As there might be a need to use different sets of modules (or different tag patterns)
on different hosts in an ops-repo, the contents of this file can be controlled in
different ways:
1. If the file is present in the model, it is used as such.
2. If there is a script called /etc/puppet/setup_cosmos_modules, that script is executed.
If the file /etc/puppet/cosmos-modules.conf does not exist after this script runs,
proceed to step 3, otherwise use this dynamically generated list of modules.
3. Use a (very small) default set of modules from the pre-hook global/post-tasks.d/010cosmos-modules.
There is an example implementation of the script to help you get started with writing your own,
2023-01-27 09:34:59 +00:00
available in docs/setup_cosmos_modules.example.
2013-10-15 08:45:22 +00:00
HOWTO and Common Tasks
======================
Adding a new operator
---------------------
Add the ascii-armoured key in a file in `global/overlay/etc/cosmos/keys` with a `.pub` extension
```
2023-01-19 16:46:23 +00:00
# git add global/overlay/etc/cosmos/keys/thenewoperator.pub
2013-10-15 08:45:22 +00:00
# git commit -m "the new operator" \
global/overlay/etc/cosmos/keys/thenewoperator.pub
# ./bump-tag
```
Removing an operator
--------------------
2023-01-19 16:46:23 +00:00
Identify the public key file in `global/overlay/etc/cosmos/keys`
2013-10-15 08:45:22 +00:00
```
# git rm global/overlay/etc/cosmos/keys/X.pub
# git commit -m "remove operator X" \
global/overlay/etc/cosmos/keys/X.pub
# ./bump-tag
```
2013-10-15 11:52:38 +00:00
Merging new features from multiverse
------------------------------------
The multiverse template will continue to evolve and sometimes it may be desirable to fetch a new feature from the upstream multiverse repository. If you followed the setup guide and kept the 'multiverse' remote this how you go about synchronizing with that version:
```
# git checkout multiverse
# git pull
# git checkout main
2013-10-15 11:52:38 +00:00
# git merge multiverse
```
Now resolve any conflicts (hopefully few and far between) and you should end up with a _combination_ of the features in your domain and those in multiverse. Note that you can optionally add more remotes referencing other development branches of multiverse and merge changes from more than one upstream. The sky is the limit.
2013-10-15 08:45:22 +00:00
Changing administrative domain for a host
-----------------------------------------
2013-10-15 11:52:38 +00:00
Below `$old` and `$new` refers to local copies (git clone) of the old and new repository.
In the `$new` repository add the host and use fabric to change the repository of the host to the git URL of the new repository.
2013-10-15 08:45:22 +00:00
```
# ./addhost -b $hostname
# fab -H $hostname chrepo repository:git://other/repo.git
```
In the `$old` repository:
```
# rsync -avz $hostname/ $new/$hostname/
```
In the `$new` repository:
```
# git add $hostname/
# git commit -m "transfer from $old" $hostname
# ./bump-tag
```
In the `$old` repository:
```
# git rm -rf $hostname
# git commit -m "remove $hostname"
# ./bump-tag
```
Running a command on multiple hosts
-----------------------------------
On a single host:
```
# fab -H $hostname -- command -a one -b another -c
```
On multiple hosts based on category:
```
# fab --roles=webserver -- ls /tmp
```
On all hosts:
```
# fab -- reboot # danger Will Robinsson!
```