diff --git a/docs/enterprise/installing-embedded-automation.mdx b/docs/enterprise/installing-embedded-automation.mdx index c7a743755f..bcad5fa0a3 100644 --- a/docs/enterprise/installing-embedded-automation.mdx +++ b/docs/enterprise/installing-embedded-automation.mdx @@ -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. @@ -50,7 +50,7 @@ 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 @@ -58,7 +58,7 @@ To install with Embedded Cluster in an air-gapped environment: 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. \ No newline at end of file + * `PATH_TO_AIRGAP_BUNDLE` with the path to the Embedded Cluster `.airgap` bundle for the release. diff --git a/docs/reference/embedded-cluster-install.mdx b/docs/reference/embedded-cluster-install.mdx index 4be8260e2f..cb170513bd 100644 --- a/docs/reference/embedded-cluster-install.mdx +++ b/docs/reference/embedded-cluster-install.mdx @@ -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 @@ -92,7 +92,7 @@ sudo ./APP_SLUG install --license LICENSE_FILE [flags] `-l, --license` -

Path to the license file

+

Path to the customer license file