From f3b9e707ea7871d020d997b1f5d85612a71b1d59 Mon Sep 17 00:00:00 2001 From: namkyu1999 Date: Mon, 23 Oct 2023 20:01:39 +0900 Subject: [PATCH 1/6] chore: update readme Signed-off-by: namkyu1999 --- README.md | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index e2cdeee4..dc3750e2 100644 --- a/README.md +++ b/README.md @@ -25,6 +25,7 @@ helm repo list ``` Output: + ``` NAME URL litmuschaos https://litmuschaos.github.io/litmus-helm/ @@ -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... @@ -57,9 +59,17 @@ kubectl create ns litmus ```bash helm install chaos litmuschaos/litmus --namespace=litmus + +## ARM support +# helm install chaos litmuschaos/litmus --namespace=litmus \ +# --set portal.frontend.service.type=NodePort \ +# --set mongodb.image.registry=ghcr.io/zcube \ +# --set mongodb.image.repository=bitnami-compat/mongodb \ +# --set mongodb.image.tag=6.0.5 ``` Output: + ```bash NAME: chaos LAST DEPLOYED: Sat Aug 14 15:47:35 2021 @@ -78,7 +88,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 @@ -88,6 +97,7 @@ helm uninstall chaos --namespace=litmus ``` Output: + ```bash release "chaos" uninstalled ``` From 66947faa3a043bb3ff937301ac6a0e7d7f85b0ea Mon Sep 17 00:00:00 2001 From: namkyu1999 Date: Wed, 25 Oct 2023 22:21:07 +0900 Subject: [PATCH 2/6] chore: delete specific image info Signed-off-by: namkyu1999 --- README.md | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index dc3750e2..9dd735b6 100644 --- a/README.md +++ b/README.md @@ -61,11 +61,12 @@ kubectl create ns litmus 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. +## Use different images and tags as shown below. # helm install chaos litmuschaos/litmus --namespace=litmus \ -# --set portal.frontend.service.type=NodePort \ -# --set mongodb.image.registry=ghcr.io/zcube \ -# --set mongodb.image.repository=bitnami-compat/mongodb \ -# --set mongodb.image.tag=6.0.5 +# --set mongodb.image.registry= \ +# --set mongodb.image.repository= \ +# --set mongodb.image.tag= ``` Output: From 54cb6bef5870a57f7c64c160f03c56af92daa01c Mon Sep 17 00:00:00 2001 From: namkyu1999 Date: Wed, 25 Oct 2023 22:24:26 +0900 Subject: [PATCH 3/6] chore Signed-off-by: namkyu1999 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9dd735b6..c0129508 100644 --- a/README.md +++ b/README.md @@ -62,7 +62,7 @@ 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. -## Use different images and tags as shown below. +## Use different image and tag as shown below. # helm install chaos litmuschaos/litmus --namespace=litmus \ # --set mongodb.image.registry= \ # --set mongodb.image.repository= \ From d994bf77f65733365820327889b262fc264ae8ca Mon Sep 17 00:00:00 2001 From: namkyu1999 Date: Wed, 25 Oct 2023 22:25:12 +0900 Subject: [PATCH 4/6] chore Signed-off-by: namkyu1999 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c0129508..a902ab93 100644 --- a/README.md +++ b/README.md @@ -62,7 +62,7 @@ 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. -## Use different image and tag as shown below. +## Use a different image and tag as shown below. # helm install chaos litmuschaos/litmus --namespace=litmus \ # --set mongodb.image.registry= \ # --set mongodb.image.repository= \ From 67cbc504522cf5ae240841d02f78cb17264ec568 Mon Sep 17 00:00:00 2001 From: namkyu1999 Date: Wed, 25 Oct 2023 23:51:25 +0900 Subject: [PATCH 5/6] chore Signed-off-by: namkyu1999 --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index a902ab93..d861ad39 100644 --- a/README.md +++ b/README.md @@ -61,8 +61,8 @@ kubectl create ns litmus 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. -## Use a different image and tag as shown below. +## Litmus helm chart depends on bitnami/mongodb, which uses a mongodb image not supported on ARM. +## To install Litmus on an ARM-based server, use a custom MongoDB ARM image instead of the default. # helm install chaos litmuschaos/litmus --namespace=litmus \ # --set mongodb.image.registry= \ # --set mongodb.image.repository= \ From 65ff135885ef08db7ea62e1abef42f62b7d11d2a Mon Sep 17 00:00:00 2001 From: namkyu1999 Date: Thu, 26 Oct 2023 20:56:30 +0900 Subject: [PATCH 6/6] chore Signed-off-by: namkyu1999 --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index d861ad39..0768c371 100644 --- a/README.md +++ b/README.md @@ -61,8 +61,8 @@ kubectl create ns litmus 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. -## To install Litmus on an ARM-based server, use a custom MongoDB ARM image instead of the default. +## 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= \ # --set mongodb.image.repository= \