Skip to content
Merged
Show file tree
Hide file tree
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
10 changes: 5 additions & 5 deletions docs/enterprise/installing-embedded-automation.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -30,14 +30,14 @@ To install with Embedded Cluster in an online environment:
1. Run the following command to install:

```bash
sudo ./APP_SLUG install --license-file PATH_TO_LICENSE \
sudo ./APP_SLUG install --license PATH_TO_LICENSE \
--config-values PATH_TO_CONFIGVALUES \
--admin-console-password ADMIN_CONSOLE_PASSWORD
```

Replace:
* `APP_SLUG` with the unique slug for the application.
* `LICENSE_FILE` with the customer license.
* `PATH_TO_LICENSE` with the path to the customer license.
* `ADMIN_CONSOLE_PASSWORD` with a password for accessing the Admin Console.
* `PATH_TO_CONFIGVALUES` with the path to the ConfigValues file.

Expand All @@ -50,15 +50,15 @@ To install with Embedded Cluster in an air-gapped environment:
1. Ensure that the Embedded Cluster installation assets are available on the air-gapped machine, then run the following command to install:

```bash
sudo ./APP_SLUG install --license-file PATH_TO_LICENSE \
sudo ./APP_SLUG install --license PATH_TO_LICENSE \
--config-values PATH_TO_CONFIGVALUES \
--admin-console-password ADMIN_CONSOLE_PASSWORD \
--airgap-bundle PATH_TO_AIRGAP_BUNDLE
```

Replace:
* `APP_SLUG` with the unique slug for the application.
* `LICENSE_FILE` with the customer license.
* `PATH_TO_LICENSE` with the path to the customer license.
* `PATH_TO_CONFIGVALUES` with the path to the ConfigValues file.
* `ADMIN_CONSOLE_PASSWORD` with a password for accessing the Admin Console.
* `PATH_TO_AIRGAP_BUNDLE` with the path to the Embedded Cluster `.airgap` bundle for the release.
* `PATH_TO_AIRGAP_BUNDLE` with the path to the Embedded Cluster `.airgap` bundle for the release.
6 changes: 3 additions & 3 deletions docs/reference/embedded-cluster-install.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ This topic describes the options available with the Embedded Cluster install com
## Usage

```bash
sudo ./APP_SLUG install --license LICENSE_FILE [flags]
sudo ./APP_SLUG install --license PATH_TO_LICENSE [flags]
```
* `APP_SLUG` is the unique application slug
* `LICENSE_FILE` is the customer's license
* `PATH_TO_LICENSE` is the path to the customer license

## Flags

Expand Down Expand Up @@ -92,7 +92,7 @@ sudo ./APP_SLUG install --license LICENSE_FILE [flags]
<tr>
<td>`-l, --license`</td>
<td>
<p>Path to the license file</p>
<p>Path to the customer license file</p>
</td>
</tr>
<tr>
Expand Down
Loading