Sync commands in README with CDG content

Make the commands in the README the same as those on the
Octavia page of the CDG.

Duplicated content will be removed and replaced with a
link to the CDG during the next review of the README.

Related-Bug: #1948506
Change-Id: I5c182d3c985bdd6ca304bfa8c055241e6b6f0f68
This commit is contained in:
Peter Matulis 2022-01-18 13:41:10 -05:00
parent 49b7a2348f
commit 8c95f18ca1
1 changed files with 3 additions and 2 deletions

View File

@ -77,14 +77,15 @@ To get you started we include an example of generating your own certificates:
mkdir -p demoCA/newcerts
touch demoCA/index.txt
touch demoCA/index.txt.attr
openssl genrsa -passout pass:foobar -des3 -out issuing_ca_key.pem 2048
openssl genpkey -algorithm RSA -aes256 -pass pass:foobar -out issuing_ca_key.pem
openssl req -x509 -passin pass:foobar -new -nodes -key issuing_ca_key.pem \
-config /etc/ssl/openssl.cnf \
-subj "/C=US/ST=Somestate/O=Org/CN=www.example.com" \
-days 30 \
-out issuing_ca.pem
openssl genrsa -passout pass:foobar -des3 -out controller_ca_key.pem 2048
openssl genpkey -algorithm RSA -aes256 -pass pass:foobar -out controller_ca_key.pem
openssl req -x509 -passin pass:foobar -new -nodes \
-key controller_ca_key.pem \
-config /etc/ssl/openssl.cnf \