Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: update readme #344

Merged
merged 6 commits into from
Oct 26, 2023
Merged
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 not supported on ARM.
namkyu1999 marked this conversation as resolved.
Show resolved Hide resolved
## To install Litmus on an ARM-based server, use a custom MongoDB ARM image instead of the default.
namkyu1999 marked this conversation as resolved.
Show resolved Hide resolved
# 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
Loading