Skip to content

Commit

Permalink
chore: update readme (#344)
Browse files Browse the repository at this point in the history
* chore: update readme

Signed-off-by: namkyu1999 <lak9348@konkuk.ac.kr>

* chore: delete specific image info

Signed-off-by: namkyu1999 <lak9348@konkuk.ac.kr>

* chore

Signed-off-by: namkyu1999 <lak9348@konkuk.ac.kr>

* chore

Signed-off-by: namkyu1999 <lak9348@konkuk.ac.kr>

* chore

Signed-off-by: namkyu1999 <lak9348@konkuk.ac.kr>

* chore

Signed-off-by: namkyu1999 <lak9348@konkuk.ac.kr>

---------

Signed-off-by: namkyu1999 <lak9348@konkuk.ac.kr>
  • Loading branch information
namkyu1999 authored Oct 26, 2023
1 parent 3558be0 commit f675ac4
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ helm repo list
```

Output:

```
NAME URL
litmuschaos https://litmuschaos.github.io/litmus-helm/
Expand All @@ -35,6 +36,7 @@ helm search repo litmuschaos
```

Output:

```
NAME CHART VERSION APP VERSION DESCRIPTION
litmuschaos/kube-aws 1.15.0 1.13.8 A Helm chart to install litmus aws chaos experi...
Expand All @@ -57,9 +59,18 @@ kubectl create ns litmus

```bash
helm install chaos litmuschaos/litmus --namespace=litmus

## ARM support
## Litmus helm chart depends on bitnami/mongodb, which uses a mongodb image that is not build for ARM arch.
## To install Litmus on an ARM-based machine, you need to provide a custom MongoDB ARM image.
# helm install chaos litmuschaos/litmus --namespace=litmus \
# --set mongodb.image.registry=<put_registry> \
# --set mongodb.image.repository=<put_image_repository> \
# --set mongodb.image.tag=<put_image_tag>
```

Output:

```bash
NAME: chaos
LAST DEPLOYED: Sat Aug 14 15:47:35 2021
Expand All @@ -78,7 +89,6 @@ Visit https://docs.litmuschaos.io to find more info.
With this, you are good to go!! Use the service URLs for the `litmusportal-frontend` service (modify service type as needed)
to access the Chaos Center. The default admin credentials are `admin/litmus`.
Refer to the [documentation](https://docs.litmuschaos.io/)
#### Step-3: Uninstall the litmus chaoscenter
Expand All @@ -88,6 +98,7 @@ helm uninstall chaos --namespace=litmus
```
Output:
```bash
release "chaos" uninstalled
```
Expand Down

0 comments on commit f675ac4

Please sign in to comment.