Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 10 additions & 3 deletions install_config/redeploying_certificates.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ still valid.
To redeploy a newly generated or custom CA:

. If you want to use a custom CA, set the following variable in your inventory
file:
file. To use the current CA, skip this step.
+
----
# Configure custom ca certificate
Expand All @@ -329,8 +329,15 @@ file:
openshift_master_ca_certificate={'certfile': '</path/to/ca.crt>', 'keyfile': '</path/to/ca.key>'}
----
+
If you do not set the above, then the current CA will be regenerated in the next
step.
If the CA certificate is issued by an intermediate CA, the bundled certificate must contain
the full chain (the intermediate and root certificates) for the CA in order to validate child certificates.
+
For example:
+
----
$ cat intermediate/certs/intermediate.cert.pem \
certs/ca.cert.pem >> intermediate/certs/ca-chain.cert.pem
----

. Run the *_redeploy-openshift-ca.yml_* playbook, specifying your inventory file:
+
Expand Down