Skip to content

Commit

Permalink
docs: add clarification
Browse files Browse the repository at this point in the history
  • Loading branch information
lennessyy committed Oct 29, 2024
1 parent 554ea8c commit 334dc15
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 60 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ The `stylus.site` blocks accept the following parameters.

| Parameter | Description | Default |
| -------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------- |
| `stylus.site.caCerts` | The Secure Sockets Layer (SSL) certificate authority (CA) certificates. | |
| `stylus.site.caCerts` | The Secure Sockets Layer (SSL) certificate authority (CA) certificates. The certificates must be base64-encoded. | |
| `stylus.site.clusterId` | The ID of the host cluster the edge host belongs to. | |
| `stylus.site.clusterName` | The name of the host cluster the edge host belongs to. | |
| `stylus.site.deviceUIDPaths` | Specify the file path for reading in product or board serial that can be used to set the device ID. The default file path is **/sys/class/dmi/id/product_uuid**. Refer to the [Device ID (UID) Parameters](#device-id-uid-parameters) section to learn more. | |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,12 @@ configured through Local UI will be retained even after a

3. Supply the proxy server information.

| Field | Description |
| --------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| HTTP Endpoint | The address where the HTTP proxy server is located. It's used to route HTTP traffic through the proxy. |
| HTTPS Endpoint | The address where the HTTPS proxy server is located. It's used to route HTTPS traffic through the proxy. |
| No Proxy | Specifies exceptions to the proxy rules. It lists addresses or domains that should bypass the proxy and connect directly, useful for local or internal network resources. |
| CA Certificates | CA certificates that are used to authenticate the proxy server. |
| Field | Description |
| --------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| HTTP Endpoint | The address where the HTTP proxy server is located. It's used to route HTTP traffic through the proxy. |
| HTTPS Endpoint | The address where the HTTPS proxy server is located. It's used to route HTTPS traffic through the proxy. |
| No Proxy | Specifies exceptions to the proxy rules. It lists addresses or domains that should bypass the proxy and connect directly, useful for local or internal network resources. |
| Certificate Authority (CA) Certificates | CA certificates that are used to authenticate the proxy server. The certificates must be base64-encoded. |

4. Click **Confirm**. Updating the HTTP proxy settings causes HTTP/HTTPS services on the Edge host to restart, so you
will not be able to access the console for a short duration .
Expand Down
53 changes: 0 additions & 53 deletions src/components/IconMapper/dynamicFontAwesomeImports.ts
Original file line number Diff line number Diff line change
@@ -1,53 +0,0 @@
import { faCubes } from '@fortawesome/free-solid-svg-icons';
import { faTerminal } from '@fortawesome/free-solid-svg-icons';
import { faPersonWalkingLuggage } from '@fortawesome/free-solid-svg-icons';
import { faObjectGroup } from '@fortawesome/free-solid-svg-icons';
import { faEnvelopeOpenText } from '@fortawesome/free-solid-svg-icons';
import { faDatabase } from '@fortawesome/free-solid-svg-icons';
import { faHdd } from '@fortawesome/free-solid-svg-icons';
import { faCloudArrowDown } from '@fortawesome/free-solid-svg-icons';
import { faNetworkWired } from '@fortawesome/free-solid-svg-icons';
import { faServer } from '@fortawesome/free-solid-svg-icons';
import { faRoad } from '@fortawesome/free-solid-svg-icons';
import { faUsers } from '@fortawesome/free-solid-svg-icons';
import { faWarehouse } from '@fortawesome/free-solid-svg-icons';
import { faFlagCheckered } from '@fortawesome/free-solid-svg-icons';
import { faPalette } from '@fortawesome/free-solid-svg-icons';
import { faBook } from '@fortawesome/free-solid-svg-icons';
import { faBookmark } from '@fortawesome/free-solid-svg-icons';
import { faGavel } from '@fortawesome/free-solid-svg-icons';
import { faTowerObservation } from '@fortawesome/free-solid-svg-icons';
import { faLock } from '@fortawesome/free-solid-svg-icons';
import { faGears } from '@fortawesome/free-solid-svg-icons';
import { faScrewdriverWrench } from '@fortawesome/free-solid-svg-icons';
import { faEyeSlash } from '@fortawesome/free-solid-svg-icons';
import { faShield } from '@fortawesome/free-solid-svg-icons';
import { faMicrochip } from '@fortawesome/free-solid-svg-icons';

export const fontAwesomeIcons = {
"cubes": faCubes,
"terminal": faTerminal,
"person-walking-luggage": faPersonWalkingLuggage,
"object-group": faObjectGroup,
"envelope-open-text": faEnvelopeOpenText,
"database": faDatabase,
"hdd": faHdd,
"cloud-arrow-down": faCloudArrowDown,
"network-wired": faNetworkWired,
"server": faServer,
"road": faRoad,
"users": faUsers,
"warehouse": faWarehouse,
"flag-checkered": faFlagCheckered,
"palette": faPalette,
"book": faBook,
"bookmark": faBookmark,
"gavel": faGavel,
"tower-observation": faTowerObservation,
"lock": faLock,
"gears": faGears,
"screwdriver-wrench": faScrewdriverWrench,
"eye-slash": faEyeSlash,
"shield": faShield,
"microchip": faMicrochip
};

0 comments on commit 334dc15

Please sign in to comment.