From cbfce1eb4a4413c0d9198a4f9a0173e217719521 Mon Sep 17 00:00:00 2001 From: Kelly Brown Date: Wed, 27 Apr 2022 10:35:57 -0400 Subject: [PATCH] BZ2007783 - Updating ssh key in installer --- modules/ssh-agent-using.adoc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/modules/ssh-agent-using.adoc b/modules/ssh-agent-using.adoc index 6b0c0ff00d08..670f11185777 100644 --- a/modules/ssh-agent-using.adoc +++ b/modules/ssh-agent-using.adoc @@ -161,7 +161,7 @@ endif::openshift-origin[] ---- $ ssh-keygen -t ed25519 -N '' -f / <1> ---- -<1> Specify the path and file name, such as `~/.ssh/id_rsa`, of the new SSH key. If you have an existing key pair, ensure your public key is in the your `~/.ssh` directory. +<1> Specify the path and file name, such as `~/.ssh/id_ed25519`, of the new SSH key. If you have an existing key pair, ensure your public key is in the your `~/.ssh` directory. + [NOTE] ==== @@ -175,11 +175,11 @@ If you plan to install an {product-title} cluster that uses FIPS Validated / Mod $ cat /.pub ---- + -For example, run the following to view the `~/.ssh/id_rsa.pub` public key: +For example, run the following to view the `~/.ssh/id_ed25519.pub` public key: + [source,termanal] ---- -$ cat ~/.ssh/id_rsa.pub +$ cat ~/.ssh/id_ed25519.pub ---- . Add the SSH private key identity to the SSH agent for your local user, if it has not already been added. SSH agent management of the key is required for password-less SSH authentication onto your cluster nodes, or if you want to use the `./openshift-install gather` command. @@ -213,7 +213,7 @@ If your cluster is in FIPS mode, only use FIPS-compliant algorithms to generate ---- $ ssh-add / <1> ---- -<1> Specify the path and file name for your SSH private key, such as `~/.ssh/id_rsa` +<1> Specify the path and file name for your SSH private key, such as `~/.ssh/id_ed25519` + .Example output [source,terminal]