Skip to content

Commit 6c65876

Browse files
authored
chore: update installation.md for ARM user (#245)
* chore: update installation.md Signed-off-by: namkyu1999 <[email protected]> * chore: delete specific image info Signed-off-by: namkyu1999 <[email protected]> * chore: fix typos and add hyperlink Signed-off-by: namkyu1999 <[email protected]> --------- Signed-off-by: namkyu1999 <[email protected]>
1 parent 529168b commit 6c65876

File tree

2 files changed

+20
-0
lines changed

2 files changed

+20
-0
lines changed

website/docs/getting-started/installation.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,16 @@ helm install chaos litmuschaos/litmus --namespace=litmus --set portal.frontend.s
7373

7474
> **Note:** If your Kubernetes cluster isn't local, you may want not to expose Litmus via `NodePort`. If so, remove `--set portal.frontend.service.type=NodePort` option. To connect to Litmus UI from your laptop, you can use `port-forward svc/chaos-litmus-frontend-service 9091:9091`. Then you can use your browser and open `127.0.0.1:9091`.
7575
76+
- Litmus helm chart depends on `bitnami/mongodb` [helm chart](https://github.com/bitnami/charts/tree/main/bitnami/mongodb), which uses a mongodb image not supported on ARM. If you want to install Litmus on an ARM-based server, please replace the default one with your custom mongodb arm image as shown below.
77+
78+
```bash
79+
helm install chaos litmuschaos/litmus --namespace=litmus \
80+
--set portal.frontend.service.type=NodePort \
81+
--set mongodb.image.registry=<put_registry> \
82+
--set mongodb.image.repository=<put_image_repository> \
83+
--set mongodb.image.tag=<put_image_tag>
84+
```
85+
7686
<span style={{color: 'green'}}><b>Expected Output</b></span>
7787

7888
```

website/versioned_docs/version-3.0.0/getting-started/installation.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,16 @@ helm install chaos litmuschaos/litmus --namespace=litmus --set portal.frontend.s
7373

7474
> **Note:** If your Kubernetes cluster isn't local, you may want not to expose Litmus via `NodePort`. If so, remove `--set portal.frontend.service.type=NodePort` option. To connect to Litmus UI from your laptop, you can use `port-forward svc/chaos-litmus-frontend-service 9091:9091`. Then you can use your browser and open `127.0.0.1:9091`.
7575
76+
- Litmus helm chart depends on `bitnami/mongodb` [helm chart](https://github.com/bitnami/charts/tree/main/bitnami/mongodb), which uses a mongodb image not supported on ARM. If you want to install Litmus on an ARM-based server, please replace the default one with your custom mongodb arm image as shown below.
77+
78+
```bash
79+
helm install chaos litmuschaos/litmus --namespace=litmus \
80+
--set portal.frontend.service.type=NodePort \
81+
--set mongodb.image.registry=<put_registry> \
82+
--set mongodb.image.repository=<put_image_repository> \
83+
--set mongodb.image.tag=<put_image_tag>
84+
```
85+
7686
<span style={{color: 'green'}}><b>Expected Output</b></span>
7787

7888
```

0 commit comments

Comments
 (0)