diff --git a/docs/07-bootstrapping-etcd.md b/docs/07-bootstrapping-etcd.md index 0429c32..bae39f9 100644 --- a/docs/07-bootstrapping-etcd.md +++ b/docs/07-bootstrapping-etcd.md @@ -10,6 +10,14 @@ The commands in this lab must be run on each controller instance: `controller-0` gcloud compute ssh controller-0 ``` +### Tmux + +[tmux](https://github.com/tmux/tmux/wiki) can be used to run commands on multiple compute instances at the same time. Consider splitting a tmux window into multiple panes and enabling `synchronize-panes` to speed up the provisioning process. + +![tmux screenshot](images/tmux-controller.png) + +> Enable `synchronize-panes`: ctrl+b then `shift :`. Then type `set synchronize-panes on` at the prompt. To disable synchronization: `set synchronize-panes off`. + ## Bootstrapping an etcd Cluster Member ### Download and Install the etcd Binaries diff --git a/docs/images/tmux-controller.png b/docs/images/tmux-controller.png new file mode 100644 index 0000000..63800f9 Binary files /dev/null and b/docs/images/tmux-controller.png differ