Force PEM filetype with ssh-keygen

At some point ssh-keygen changed its default output format and now
python cryptography can't read the new default. Address this by forcing
the PEM output format which cryptography can read without problems.

Note this is a docs only change to help end users generate keys that
work with refstack after a user reported trouble with this.

Change-Id: I9d1f503817fee69fe22f19a98b506448bda1f888
This commit is contained in:
Clark Boylan 2020-05-06 14:42:23 -07:00
parent e6fd078a8b
commit 0af3a46e16
1 changed files with 1 additions and 1 deletions

View File

@ -37,7 +37,7 @@ First check for existing keys with command:
If you see you already have existing public and private keys that you
want to use, you can skip this step; otherwise:
- ``ssh-keygen -t rsa -b 4096 -C "youropenstackid"``
- ``ssh-keygen -m PEM -t rsa -b 4096 -C "youropenstackid"``
The 'youropenstackid' string is the username you chose when you
registered for your OpenStack ID account. Enter the file name in which