Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion modules/builds-source-secret-ssh-key-auth.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ The repository keys are usually located in the `$HOME/.ssh/` directory, and are
+
[source,terminal]
----
$ ssh-keygen -t rsa -C "your_email@example.com"
$ ssh-keygen -t ed25519 -C "your_email@example.com"
----
+
[NOTE]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Perform the following steps to prepare the environment.
+
[source,terminal]
----
[root@provisioner ~]# su - kni -c "ssh-keygen -t rsa -f /home/kni/.ssh/id_rsa -N ''"
[root@provisioner ~]# su - kni -c "ssh-keygen -t ed25519 -f /home/kni/.ssh/id_rsa -N ''"
----

. Log in as the new user on the provisioner node.
Expand Down
2 changes: 1 addition & 1 deletion modules/ssh-agent-using.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ following command:
+
[source,terminal]
----
$ ssh-keygen -t rsa -b 4096 -N '' \
$ ssh-keygen -t ed25519 -N '' \
-f <path>/<file_name> <1>
----
<1> Specify the path and file name, such as `~/.ssh/id_rsa`, of the new SSH key.
Expand Down