(I might be misunderstanding the current state of things, but bear with me).
Currently it is difficult to scale a Drydock Pool. If I understand correctly, scaling a Drydock Pool involves:
# Creating a new Almanac device (let's call it `buildXXX.phabricator.mydomain.com`).
# Adding device interfaces for the new device.
# Generating private keys for the new device.
# Spinning up a new host and running `./bin/almanac register`.
It would be a lot easier if this could all be done from the command line... something like this:
```lang=bash
./bin/almanac create-device --name="..." --interfaces='...'
./bin/alamanac register --device='...' --private-key='...'
```