Skip to content

Commit f8788d5

Browse files
authored
fix(ec): airgap flag is a boolean (#3958)
1 parent cfe701d commit f8788d5

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

embedded-cluster/installing-embedded-air-gap.mdx

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -87,14 +87,12 @@ To install from the Vendor Portal:
8787
* The license file
8888
* The air gap bundle (`APP_SLUG.airgap`)
8989

90-
1. On the air-gapped machine, run the `install` command from the dialog. It must include `--airgap` pointing at your `.airgap` file. For example:
90+
1. On the air-gapped machine, run the `install` command from the dialog. It must include the `--airgap` flag. For example:
9191

9292
```bash
93-
sudo ./APP_SLUG install --license license.yaml --airgap APP_SLUG.airgap
93+
sudo ./APP_SLUG install --license license.yaml --airgap
9494
```
9595

96-
Replace `APP_SLUG` with your application slug and use the correct paths for your license and bundle files. Add any other flags you need. For the full set of flags, see [install](embedded-cluster-install).
97-
9896
1. Complete any prompts from the install command (for example, acceptance of a self-signed certificate and installer password).
9997

10098
1. On a machine with browser access to the installer (often the same air-gapped host, or another host on the same network), open the URL from the install output to open the installer UI.
@@ -129,15 +127,15 @@ To install headlessly in an air gap environment:
129127

130128
1. On the air-gapped machine, run `install` with:
131129

132-
* `--airgap` and the `APP_SLUG.airgap` file.
130+
* `--airgap` to use the extracted airgap images bundle and disable outbound network requests.
133131
* `--headless` to skip the interactive installer UI.
134132
* `--config-values` with the path to your [ConfigValues](/reference/custom-resource-configvalues) file.
135133
* `--installer-password` with the password you will use to access the installer later.
136134

137135
Example:
138136

139137
```bash
140-
sudo ./APP_SLUG install --license license.yaml --airgap APP_SLUG.airgap --headless --config-values PATH_TO_CONFIGVALUES --installer-password INSTALLER_PASSWORD
138+
sudo ./APP_SLUG install --license license.yaml --airgap --headless --config-values PATH_TO_CONFIGVALUES --installer-password INSTALLER_PASSWORD
141139
```
142140

143141
Replace placeholders with values for your environment. Add any other flags you need. For the full set of flags, see [install](embedded-cluster-install).

0 commit comments

Comments
 (0)