diff --git a/stable/mongodb/Chart.yaml b/stable/mongodb/Chart.yaml index 524481b00a..d7aa8dea46 100644 --- a/stable/mongodb/Chart.yaml +++ b/stable/mongodb/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v1 name: mongodb -version: 5.20.3 +version: 6.0.0 appVersion: 4.0.10 description: NoSQL document-oriented database that stores JSON-like documents with dynamic schemas, simplifying the integration of data in content-driven applications. keywords: diff --git a/stable/mongodb/README.md b/stable/mongodb/README.md index d1c0f34c29..c2b39d7e3a 100644 --- a/stable/mongodb/README.md +++ b/stable/mongodb/README.md @@ -62,7 +62,7 @@ The following table lists the configurable parameters of the MongoDB chart and t | `mongodbUsername` | MongoDB custom user | `nil` | | `mongodbPassword` | MongoDB custom user password | `random alphanumeric string (10)` | | `mongodbDatabase` | Database to create | `nil` | -| `mongodbEnableIPv6` | Switch to enable/disable IPv6 on MongoDB | `true` | +| `mongodbEnableIPv6` | Switch to enable/disable IPv6 on MongoDB | `false` | | `mongodbDirectoryPerDB` | Switch to enable/disable DirectoryPerDB on MongoDB | `false` | | `mongodbSystemLogVerbosity` | MongoDB systen log verbosity level | `0` | | `mongodbDisableSystemLog` | Whether to disable MongoDB system log or not | `false` | @@ -249,6 +249,11 @@ The chart mounts a [Persistent Volume](http://kubernetes.io/docs/user-guide/pers ## Upgrading +### To 6.0.0 + +From this version, `mongodbEnableIPv6` is set to `false` by default in order to work properly in most k8s clusters, if you want to use IPv6 support, you need to set this variable to `true` by adding `--set mongodbEnableIPv6=true` to your `helm` command. +You can find more information in the [`bitnami/mongodb` image README](https://github.com/bitnami/bitnami-docker-mongodb/blob/master/README.md). + ### To 5.0.0 When enabling replicaset configuration, backwards compatibility is not guaranteed unless you modify the labels used on the chart's statefulsets. diff --git a/stable/mongodb/values-production.yaml b/stable/mongodb/values-production.yaml index fc23dd5eab..ef63a3d3d9 100644 --- a/stable/mongodb/values-production.yaml +++ b/stable/mongodb/values-production.yaml @@ -55,7 +55,7 @@ usePassword: true ## Whether enable/disable IPv6 on MongoDB ## ref: https://github.com/bitnami/bitnami-docker-mongodb/blob/master/README.md#enabling/disabling-ipv6 ## -mongodbEnableIPv6: true +mongodbEnableIPv6: false ## Whether enable/disable DirectoryPerDB on MongoDB ## ref: https://github.com/bitnami/bitnami-docker-mongodb/blob/master/README.md#enabling/disabling-directoryperdb diff --git a/stable/mongodb/values.yaml b/stable/mongodb/values.yaml index 79c728edf5..c256580608 100644 --- a/stable/mongodb/values.yaml +++ b/stable/mongodb/values.yaml @@ -55,7 +55,7 @@ usePassword: true ## Whether enable/disable IPv6 on MongoDB ## ref: https://github.com/bitnami/bitnami-docker-mongodb/blob/master/README.md#enabling/disabling-ipv6 ## -mongodbEnableIPv6: true +mongodbEnableIPv6: false ## Whether enable/disable DirectoryPerDB on MongoDB ## ref: https://github.com/bitnami/bitnami-docker-mongodb/blob/master/README.md#enabling/disabling-directoryperdb