From 8eb89c05b41a1a65b5767a029a6d6829d4280dd6 Mon Sep 17 00:00:00 2001 From: Michael Burke Date: Thu, 4 Feb 2021 14:34:17 -0500 Subject: [PATCH] removed ifdef per staebler --- modules/builds-source-secret-ssh-key-auth.adoc | 2 +- ...ll-preparing-the-provisioner-node-for-openshift-install.adoc | 2 +- modules/ssh-agent-using.adoc | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/builds-source-secret-ssh-key-auth.adoc b/modules/builds-source-secret-ssh-key-auth.adoc index b99c094d7d46..e6b0e74e5f18 100644 --- a/modules/builds-source-secret-ssh-key-auth.adoc +++ b/modules/builds-source-secret-ssh-key-auth.adoc @@ -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] diff --git a/modules/ipi-install-preparing-the-provisioner-node-for-openshift-install.adoc b/modules/ipi-install-preparing-the-provisioner-node-for-openshift-install.adoc index dfe82ceed0a4..33b693455636 100644 --- a/modules/ipi-install-preparing-the-provisioner-node-for-openshift-install.adoc +++ b/modules/ipi-install-preparing-the-provisioner-node-for-openshift-install.adoc @@ -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. diff --git a/modules/ssh-agent-using.adoc b/modules/ssh-agent-using.adoc index 832aa145bb86..08786cc2b587 100644 --- a/modules/ssh-agent-using.adoc +++ b/modules/ssh-agent-using.adoc @@ -125,7 +125,7 @@ following command: + [source,terminal] ---- -$ ssh-keygen -t rsa -b 4096 -N '' \ +$ ssh-keygen -t ed25519 -N '' \ -f / <1> ---- <1> Specify the path and file name, such as `~/.ssh/id_rsa`, of the new SSH key.