File tree Expand file tree Collapse file tree 2 files changed +35
-0
lines changed Expand file tree Collapse file tree 2 files changed +35
-0
lines changed Original file line number Diff line number Diff line change @@ -2080,6 +2080,23 @@ mongodb:
2080
2080
featureCompatibilityVersion: "6.0"
2081
2081
` ` `
2082
2082
2083
+ However, after the successful upgrade to 7.x, you need to set `featureCompatibilityVersion` to `7.0` in your values file.
2084
+
2085
+ ` ` ` yaml
2086
+ mongodb:
2087
+ migration:
2088
+ enabled: true
2089
+ featureCompatibilityVersion: "7.0"
2090
+ ` ` `
2091
+
2092
+ Or disable it completely (that is default value in Helm chart) if FCV (FeatureCompatibilityVersion) is managed by MongoDB itself (i.e. Atlas).
2093
+
2094
+ ` ` ` yaml
2095
+ mongodb:
2096
+ migration:
2097
+ enabled: false
2098
+ ` ` `
2099
+
2083
2100
# ## PostgreSQL update
2084
2101
2085
2102
Default PostgreSQL image is changed from 13.x to 17.x
Original file line number Diff line number Diff line change @@ -2090,6 +2090,24 @@ mongodb:
2090
2090
featureCompatibilityVersion: "6.0"
2091
2091
```
2092
2092
2093
+ However, after the successful upgrade to 7.x, you need to set `featureCompatibilityVersion` to `7.0` in your values file.
2094
+
2095
+ ```yaml
2096
+ mongodb:
2097
+ migration:
2098
+ enabled: true
2099
+ featureCompatibilityVersion: "7.0"
2100
+ ```
2101
+
2102
+ Or disable it completely (that is default value in Helm chart) if FCV (FeatureCompatibilityVersion) is managed by MongoDB itself (i.e. Atlas).
2103
+
2104
+ ```yaml
2105
+ mongodb:
2106
+ migration:
2107
+ enabled: false
2108
+ ```
2109
+
2110
+
2093
2111
### PostgreSQL update
2094
2112
2095
2113
Default PostgreSQL image is changed from 13.x to 17.x
You can’t perform that action at this time.
0 commit comments