diff --git a/charts/litmus/Chart.yaml b/charts/litmus/Chart.yaml index 37fb546f..88130b74 100644 --- a/charts/litmus/Chart.yaml +++ b/charts/litmus/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: "3.5.0" description: A Helm chart to install ChaosCenter name: litmus -version: 3.5.0 +version: 3.5.1 kubeVersion: ">=1.16.0-0" home: https://litmuschaos.io sources: diff --git a/charts/litmus/README.md b/charts/litmus/README.md index 0c6fcb93..b8cb1d51 100644 --- a/charts/litmus/README.md +++ b/charts/litmus/README.md @@ -1,6 +1,6 @@ # litmus -![Version: 3.5.0](https://img.shields.io/badge/Version-3.5.0-informational?style=flat-square) ![AppVersion: 3.5.0](https://img.shields.io/badge/AppVersion-3.5.0-informational?style=flat-square) +![Version: 3.5.1](https://img.shields.io/badge/Version-3.5.1-informational?style=flat-square) ![AppVersion: 3.5.0](https://img.shields.io/badge/AppVersion-3.5.0-informational?style=flat-square) A Helm chart to install ChaosCenter @@ -72,7 +72,7 @@ We separated service configuration from `portal.server.service` to `portal.serve | ingress.ingressClassName | string | `""` | | | ingress.name | string | `"litmus-ingress"` | | | ingress.tls | list | `[]` | | -| mongodb | object | `{"architecture":"replicaset","auth":{"enabled":true,"existingSecret":"","rootPassword":"1234","rootUser":"root"},"enabled":true,"metrics":{"enabled":false,"prometheusRule":{"enabled":false}},"persistence":{"enabled":true},"replicaCount":3,"volumePermissions":{"enabled":true}}` | Configure the Bitnami MongoDB subchart see values at https://github.com/bitnami/charts/blob/master/bitnami/mongodb/values.yaml | +| mongodb | object | `{"architecture":"replicaset","auth":{"enabled":true,"existingSecret":"","rootPassword":"1234","rootUser":"root"},"enabled":true,"livenessProbe":{"timeoutSeconds":20},"metrics":{"enabled":false,"prometheusRule":{"enabled":false}},"persistence":{"enabled":true},"readinessProbe":{"timeoutSeconds":20},"replicaCount":3,"volumePermissions":{"enabled":true}}` | Configure the Bitnami MongoDB subchart see values at https://github.com/bitnami/charts/blob/master/bitnami/mongodb/values.yaml | | mongodb.auth.existingSecret | string | `""` | existingSecret Existing secret with MongoDB(®) credentials (keys: `mongodb-passwords`, `mongodb-root-password`, `mongodb-metrics-password`, ` mongodb-replica-set-key`) | | nameOverride | string | `""` | | | openshift.route.annotations | object | `{}` | | diff --git a/charts/litmus/values.yaml b/charts/litmus/values.yaml index 90e5cb08..9a41763e 100644 --- a/charts/litmus/values.yaml +++ b/charts/litmus/values.yaml @@ -333,6 +333,15 @@ openshift: # -- Configure the Bitnami MongoDB subchart # see values at https://github.com/bitnami/charts/blob/master/bitnami/mongodb/values.yaml mongodb: + # For some environments, mongo pings can take time to resolve + livenessProbe: + timeoutSeconds: 20 + readinessProbe: + timeoutSeconds: 20 + # Required when using Mac M1 - https://github.com/bitnami/containers/issues/40947#issuecomment-1968364385 + # extraEnvVars: + # - name: EXPERIMENTAL_DOCKER_DESKTOP_FORCE_QEMU + # value: "1" enabled: true auth: enabled: true @@ -350,3 +359,8 @@ mongodb: enabled: false prometheusRule: enabled: false + # Required when using Mac M1 - https://github.com/bitnami/containers/issues/40947#issuecomment-1968364385 + # arbiter: + # extraEnvVars: + # - name: EXPERIMENTAL_DOCKER_DESKTOP_FORCE_QEMU + # value: "1"