Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions install/host_preparation.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -78,13 +78,13 @@ Do *not* use a password.
An easy way to distribute your SSH keys is by using a `bash` loop:

----
# for host in master.example.com \
master.example.com \
node1.example.com \
node2.example.com; \
# for host in master.example.com \ <1>
node1.example.com \ <1>
node2.example.com; \ <1>
do ssh-copy-id -i ~/.ssh/id_rsa.pub $host; \
done
----
<1> Provide the host name for each cluster host.

Modify the host names in the above command according to your configuration.

Expand Down