Wikimedia Cloud Services team/EnhancementProposals/Operational Automation

From Wikitech
This proposal was accepted by the WMCS team. This page is a historical record of the proposal and will no longer be updated. For the current documentation head over to Portal:Cloud_VPS/Admin/Cookbooks.

We currently use Puppet to automate most of our tasks, but it has it's limitations. We still need a tool to automate, collect and review all our operational procedures. Some examples of such procedures are:

  • Adding a new member to a toolforge instance etcd cluster.
  • Bootstrapping a new toolforge instance.
  • Searching for the host where a backup is kept.
  • Provisioning a new cloudvirt node.
  • Re-image all/a set of the cloudvirt nodes.
  • Manage non-automated upgrades.
  • Take down a cloudvirt node for maintenance.

Problem statement

All these tasks still require manual operations, following a runbook whenever available, that easily get outdated, are prone to human error and require considerable attention to execute.

Proposal

After reviewing several automation tools (spicerack, saltstack, puppet, ...), and doing a quick POC (see gerrit:647735 and gerrit:658637) for the two more relevant (summary of the experience here https://etherpad.wikimedia.org/p/ansible_vs_spicerack), I've decided to propose spicerack as the de-facto tool for WMCS operational tasks automation.

Collaboration

The main advantage of choosing spicerack is collaboration with the rest of the SRE teams. This comes with both the duty and privilege of becoming co-maintainers for spicerack and related projects, allowing us to have a say in the direction of the project and the use cases that will be supported. With the duty of driving, reviewing and maintaining the projects for all the users (including other SRE teams).

Structure

The Spicerack ecosystem is split in several projects:

Cumin

Cumin is the lowermost layer, built on top of ClusterShell takes care of translating host expressions to hosts, running commands in them (using whatever strategy is selected) and returning the results.

This library should be pretty stable and require little to no changes.

Wmflib

Wmflib is a bundle of generic commonly used functions related to the wikimedia foundation, has some helpful decorators (ex. retry) and similar tools.

This library should be used for generic functions that are not bound to the spicerack library and can be reused in other non-spicerack wikimedia related projects.

Spicerack

Spicerack is the core library, contains more wikimedia specific libraries and a cli (cookbook) to interact with different services (ex. toolforge.etcd) and is meant to be used to store the core logic for any interaction with the services.

Here we will have to add, specially at the beginning, some libraries to interact with our services, here will also be where more of the re-usage of code and collaboration will happen. We should keep always in mind things here that can be used by other group around the foundation. Code in this library will be considerably tested, and no merges should happen without review.

Cookbooks

The Spicerack/Cookbooks repo contains the main recipes to execute, the only logic should be orchestration, and any service management related code should be eventually moved to the above Spicerack library.

This repository of cookbooks will be shared with the rest of the SRE group, but our specific cookbooks will go under the cookbooks/wmcs directory. Any helper library should go under cookbooks/wmcs/__init__.py and we should periodically consider moving as much of the code from there to Spicerack.

Execution of the cookbooks

As of now, this cookbooks can be run locally, I'm actively considering how to provide a host/vm/... with a spicerack + cumin setup for easy usage and running long cookbooks, but as of right now, we can start locally.

If your cookbooks are only accessing bare metal machines, you can already run them on the cumin hosts for the wiki operations (ex. cumin1001.eqiad.wmnet), but those hosts have no access to the VMs as of writing this.

Local setup

To run locally the cookbooks, you will need to create a virtualenv and install the dependencies, for example:

$ python3 -m venv ~/.venvs/cookbooks
$ source ~/.venvs/cookbooks/bin/activate

Then clone the cookbooks repo (see https://gerrit.wikimedia.org/r/admin/repos/operations/cookbooks):

$ git clone "https://$USER@gerrit.wikimedia.org/r/a/operations/cookbooks"
$ cd cookbooks
$ pip install -e .

NOTE: as of 2021-08-18 we are currently using the wmcs branch of the repo

NOTE: as of 2022-07-21 you can use the installation script instead of manually configuring these files (utils/generate_wmcs_config.sh)

Then create the relevant config files, one for cumin, wherever you prefer, I recommend ~/.config/spicerack/cumin_config.yaml, with the contents:

---
transport: clustershell
log_file: cumin.log  # feel free to change this to another path of your choosing
default_backend: direct
environment: {}
clustershell:
    ssh_options:
        # needed for vms that repeat a name
        - |
            -o StrictHostKeyChecking=no
            -o "UserKnownHostsFile=/dev/null"
            -o "LogLevel=ERROR"

And another for spicerack itself (the cookbook cli), I'll use ~/.config/spicerack/cookbook_config.yaml

---
# adapt to wherever you cloned the repo
cookbooks_base_dir: ~/Work/wikimedia/operations/cookbooks
logs_base_dir:  /tmp/spicerack_logs
instance_params:
    # pending a pip release: cumin_config: ~/.config/spicerack/cumin-config.yaml
    # for now you'll have to use the full path, change YOURUSER with your actual user
    cumin_config: /home/YOURUSER/.config/spicerack/cumin_config.yaml


With those config files, now you are able to run the client, from the root of the operations/cookbooks repository, you can list all the cookbooks:

$ cookbook -c ~/.config/spicerack/cookbook_config.yaml --list

cookbook naming proposal

NOTE: see the latest conventions in the README file

Some naming rules:

  1. All the common used cookbooks for a service (tooforge, vps, ceph, ...) should be at the top level of that service, even if they are just a proxy for a lower level one.
  2. Individual cookbooks that provide just a functionality or a subset of a functionality are considered library and should be grouped in a .lib. final submodule.
  3. Group cookbook packages by service, then technology, then subcomponent, if they are common through many services, then just technology.
  4. Use meaningful, specific, non-generic names, a verb and if needed a noun (err on the side of extra explicit).
  5. Reuse the keywords explicitly defined, see list below.

Some known services and packages are:

  • openstack: lower layer of the infrastructure for the Cloud VPS service.
  • vps: operations with Openstack APIs.
  • nfs: NFS related stuff.
  • toolforge: everything Toolforge.
  • toolforge.grid: everything Toolforge grid infrastructure.
  • toolforge.k8s: everything Toolforge kubernetes infrastructure.
  • toolforge.k8s.etcd: everything Toolforge kubernetes etcd infrastructure.

Some well known keywords:

  • ensure: makes sure a condition is met, and acts to fulfill it if not.
  • create: every time a cookbook with this keyword runs, a new resource is created.
  • remove: every time a cookbook with this keyword runs, a resource is deleted.
  • scale: every time a cookbook with this keyword runs, a given service is scaled up (ex. a node is created and pooled).
  • downscale: every time a cookbook with this keyword runs, a given service is down-scaled (ex. a node is drained and removed).
  • join: used when a resource is configured to be part of a service, cluster or similar. May or may not be pooled.
  • pool: start scheduling load in the resource.
  • depool: stop scheduling load in the resource, running load might still be running.
  • drain: remove any workload running in the resource, and prevent new one from getting scheduled.

A good example:

wmcs.toolforge.scale_grid_exec
wmcs.toolforge.scale_grid_webgen
wmcs.toolforge.scale_grid_weblight

wmcs.toolforge.grid.lib.get_cluster_status
wmcs.toolforge.grid.lib.reconfigure

wmcs.toolforge.grid.node.lib.create_join_pool
wmcs.toolforge.grid.node.lib.join   
wmcs.toolforge.grid.node.lib.depool
wmcs.toolforge.grid.node.lib.pool
wmcs.toolforge.grid.node.lib.depool_remove

A bad example:

wmcs.toolforge.scale                             <-- WRONG: scale what?
wmcs.toolforge.reboot                            <-- WRONG: reboot what?
wmcs.toolforge.reboot_node                       <-- WRONG: this should probably be wmcs.toolforge.xxxx.node.lib.reboot instead

wmcs.toolforge.grid.lib.add                      <-- WRONG: add what?
wmcs.toolforge.grid.lib.configuration            <-- WRONG: configure what?

wmcs.toolforge.grid.node.lib.create_exec_node    <-- WRONG: this should probably be an entry-level cookbook (i.e. wmcs.toolforge.create_exec_node)

Note

NOTE: This is a very premature proposal, this workflow will be improved, feel free to start any questions/discussions in the talks page or ping me directly (David Caro (talk) 17:21, 5 February 2021 (UTC)).[reply]