Skip to content

Commit 379de51

Browse files
authored
update: update docs for local user (#306)
Signed-off-by: namkyu1999 <[email protected]>
1 parent 36cf0c8 commit 379de51

File tree

2 files changed

+16
-0
lines changed

2 files changed

+16
-0
lines changed

website/docs/getting-started/installation.md

+8
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,14 @@ helm install chaos litmuschaos/litmus --namespace=litmus --set portal.frontend.s
7575

7676
> **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`.
7777
78+
- If your Kubernetes cluster is local (such as minikube or kind) and only accessing Litmus locally, please replace the default endpoint with your custom CHAOS_CENTER_UI_ENDPOINT as shown below.
79+
80+
```bash
81+
helm install chaos litmuschaos/litmus --namespace=litmus \
82+
--set portal.frontend.service.type=NodePort \
83+
--set portal.server.graphqlServer.genericEnv.CHAOS_CENTER_UI_ENDPOINT=http://chaos-litmus-frontend-service.litmus.svc.cluster.local:9091
84+
```
85+
7886
- 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.
7987

8088
```bash

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

+8
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,14 @@ helm install chaos litmuschaos/litmus --namespace=litmus --set portal.frontend.s
7575

7676
> **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`.
7777
78+
- If your Kubernetes cluster is local (such as minikube or kind) and only accessing Litmus locally, please replace the default endpoint with your custom CHAOS_CENTER_UI_ENDPOINT as shown below.
79+
80+
```bash
81+
helm install chaos litmuschaos/litmus --namespace=litmus \
82+
--set portal.frontend.service.type=NodePort \
83+
--set portal.server.graphqlServer.genericEnv.CHAOS_CENTER_UI_ENDPOINT=http://chaos-litmus-frontend-service.litmus.svc.cluster.local:9091
84+
```
85+
7886
- 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.
7987

8088
```bash

0 commit comments

Comments
 (0)