From db382f305a97b2d367a123a9cbd6c9717ecebb4d 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 24d988aa0feb..9f9311432824 100644 --- a/modules/ssh-agent-using.adoc +++ b/modules/ssh-agent-using.adoc @@ -166,7 +166,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] ==== @@ -180,11 +180,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. @@ -218,7 +218,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]