-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: document the rhel fips known issue (#3043)
* docs: document the rhel fips known issue * remove accidental commit * restore release notes * docs: remove accidental change * docs: add windows key combination * Update docs/docs-content/troubleshooting/edge.md * docs: add entry to global known issues * docs: fix crosslink --------- Co-authored-by: Lenny Chen <[email protected]>
- Loading branch information
Showing
4 changed files
with
39 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,7 +14,7 @@ The following are common scenarios that you may encounter when using Edge. | |
|
||
If you need to override or reconfigure the read-only file system, you can do so using the following steps. | ||
|
||
## Debug Steps | ||
### Debug Steps | ||
|
||
1. Power on the Edge host. | ||
|
||
|
@@ -136,3 +136,25 @@ issues or not being available. Use the following steps to troubleshoot and resol | |
|
||
7. If you continue to encounter issues, contact our support team by emailing | ||
[[email protected]](mailto:[email protected]) so that we can provide you with further guidance. | ||
|
||
## Scenario - systemd-resolved.service Enters Failed State | ||
|
||
When you create a cluster with an Edge host that operates the FIPS-compliant RHEL Operating System (OS), you may | ||
encounter an error where the `systemd-resolved.service` process enters the **failed** state. This prevents the | ||
nameserver from being configured, which will result in cluster deployment failure. | ||
|
||
### Debug Steps | ||
|
||
1. Establish an SSH connection to the Edge host. | ||
|
||
Alternatively, press the keys **Fn + Ctrl +Cmd + F1** on a keyboard that is connected to the Edge host to log in to | ||
the terminal. If you are on Windows, press **Fn + Ctrl + Alt + F1**. | ||
|
||
2. Issue the following command. | ||
|
||
```shell | ||
chmod a+rwxt /var/tmp | ||
systemctl enable --now systemd-resolved.service | ||
``` | ||
|
||
This will start the `systemd-resolved.service` process and move the cluster creation process forward. |