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:
20802080 featureCompatibilityVersion: "6.0"
20812081` ` `
20822082
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+
20832100# ## PostgreSQL update
20842101
20852102Default 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:
20902090 featureCompatibilityVersion: "6.0"
20912091```
20922092
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+
20932111### PostgreSQL update
20942112
20952113Default PostgreSQL image is changed from 13.x to 17.x
You can’t perform that action at this time.
0 commit comments