-
Notifications
You must be signed in to change notification settings - Fork 241
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Issue #643 Document troubleshooting expired certificates
- Loading branch information
Showing
5 changed files
with
43 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
37 changes: 37 additions & 0 deletions
37
docs/source/getting-started/content/proc_troubleshooting-expired-certificates.adoc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
[id="troubleshooting-expired-certificates_{context}"] | ||
= Troubleshooting expired certificates | ||
|
||
Each released `{bin}` binary includes an embedded system bundle that expires 30 days after the release due to certificates embedded in the OpenShift cluster. | ||
Using an older `{bin}` binary or system bundle will result in an expired certificates error. | ||
|
||
.Procedure | ||
|
||
To resolve expired certificate errors: | ||
|
||
. link:{crc-download-url}[Download the latest {prod} release] and place the `{bin}` binary in your `$PATH`. | ||
|
||
. Remove the cluster with certificate errors using the [command]`{bin} delete` command: | ||
+ | ||
[subs="+quotes,attributes"] | ||
---- | ||
$ {bin} delete | ||
---- | ||
+ | ||
[NOTE] | ||
==== | ||
The [command]`{bin} delete` command will result in the loss of data stored in the {prod} virtual machine. | ||
==== | ||
|
||
. Set up the new release: | ||
+ | ||
[subs="+quotes,attributes"] | ||
---- | ||
$ {bin} setup | ||
---- | ||
|
||
. Start the new cluster: | ||
+ | ||
[subs="+quotes,attributes"] | ||
---- | ||
$ {bin} start | ||
---- |