Skip to content

Commit acc424f

Browse files
committed
edits
1 parent 9ca6f16 commit acc424f

File tree

1 file changed

+17
-17
lines changed

1 file changed

+17
-17
lines changed

docs/reference/embedded-cluster-install.mdx

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -73,53 +73,53 @@ sudo ./APP_SLUG install --license LICENSE_FILE [flags]
7373
<td>`--pod-cidr`</td>
7474
<td>
7575
<p>The range of IP addresses that can be assigned to Pods, in CIDR notation. **Default:** By default, the Pod CIDR is `10.244.0.0/16`.</p>
76-
<p>The `--pod-cidr` flag is not supported on Red Hat Enterprise Linux (RHEL) 9 operating systems.</p>
76+
<p>**Limitation:** The `--pod-cidr` flag is not supported on Red Hat Enterprise Linux (RHEL) 9 operating systems.</p>
7777
</td>
7878
</tr>
7979
<tr>
8080
<td>`--service-cidr`</td>
8181
<td>
8282
<p>The range of IP addresses that can be assigned to Services, in CIDR notation. **Default:** By default, the Service CIDR is `10.96.0.0/12`.</p>
83-
<p>The `--service-cidr` flags is not supported on Red Hat Enterprise Linux (RHEL) 9 operating systems.</p>
83+
<p>**Limitation:** The `--service-cidr` flags is not supported on Red Hat Enterprise Linux (RHEL) 9 operating systems.</p>
8484
</td>
8585
</tr>
8686
</table>
8787

8888
## Examples
8989

90-
### Install Behind a Proxy
90+
### Air Gap Install
9191

9292
```bash
93-
sudo ./APP_SLUG install --license LICENSE_FILE \
94-
--http-proxy=HOST:PORT \
95-
--https-proxy=HOST:PORT \
96-
--no-proxy=LIST_OF_HOSTS
93+
sudo ./myapp install --license license.yaml --airgap-bundle myapp.airgap
9794
```
98-
Where:
99-
100-
* `HOST:PORT` is the host and port of the proxy server
101-
* `LIST_OF_HOSTS` is the list of hosts to not proxy. For example, the IP address of the node where you are installing. Or, for multi-node clusters, the list of IP addresses for all nodes in the cluster, typically in CIDR notation.
10295

10396
### Change the Admin Console and LAM Ports
10497

10598
```bash
10699
install --admin-console-port=20000 --local-artifact-mirror-port=40000
107100
```
108101

109-
### Set IP Address Range for Pods
102+
### Change the Data Directory
110103

111104
```bash
112-
sudo ./my-app install --license license.yaml --pod-cidr 172.16.136.0/16
105+
sudo ./my-app install --license license.yaml --data-dir /data/embedded-cluster
113106
```
114107

115-
### Change the Default Data Directory
108+
### Install Behind a Proxy
116109

117110
```bash
118-
sudo ./my-app install --license license.yaml --data-dir /data/embedded-cluster
111+
sudo ./APP_SLUG install --license LICENSE_FILE \
112+
--http-proxy=HOST:PORT \
113+
--https-proxy=HOST:PORT \
114+
--no-proxy=LIST_OF_HOSTS
119115
```
116+
Where:
120117

121-
### Air Gap Install
118+
* `HOST:PORT` is the host and port of the proxy server
119+
* `LIST_OF_HOSTS` is the list of hosts to not proxy. For example, the IP address of the node where you are installing. Or, for multi-node clusters, the list of IP addresses for all nodes in the cluster, typically in CIDR notation.
120+
121+
### Set IP Address Range for Pods
122122

123123
```bash
124-
sudo ./myapp install --license license.yaml --airgap-bundle myapp.airgap
124+
sudo ./my-app install --license license.yaml --pod-cidr 172.16.136.0/16
125125
```

0 commit comments

Comments
 (0)