diff --git a/.github/copilot-instructions.md b/.github/copilot-instructions.md
index c0d34d5548..13bd0c3f47 100644
--- a/.github/copilot-instructions.md
+++ b/.github/copilot-instructions.md
@@ -26,7 +26,7 @@ When reviewing a PR, analyze changes against the following. Post inline comments
| **Version coherence** | Bumps to `VERSION` / `deps.yaml` / `solution/zenkoversion.yaml` should stay mutually consistent. Feature flags or capabilities added in `zenkoversion.yaml` must correspond to service versions that actually support them. |
| **Dockerfiles** (`solution/kafka/`, `solution/kafka-connect/`...) | Base images pinned by tag or digest, no secrets baked in, no unnecessary `COPY . .`, reasonable layer count, user is non-root where possible. |
| **Helm charts & K8s manifests** (`solution-base/mongodb/charts/`, `monitoring/`) | Resource requests/limits set, label selectors match, no hard-coded namespaces, `securityContext` present, ServiceAccount scoping minimal. Any breaking chart-value renames documented in an upgrade note. |
-| **Chart upgrade path** (`solution-base/mongodb/patches/`, `how_to_upgrade.md`) | If chart version or MongoDB version changes, upgrade notes are updated and patches still apply cleanly. |
+| **Chart upgrade path** (`solution-base/mongodb/Makefile`, `how_to_upgrade.md`) | If chart version or MongoDB version changes, upgrade notes are updated and the `git subtree merge --squash` produced by `make vendor-sync` resolves cleanly against our local commits. |
| **TypeScript tests** (`tests/functional/ctst/`, `tests/workflows/`) | Proper `async`/`await`, no swallowed promise rejections, Cucumber step definitions register correctly, no accidental `.only` / `.skip`, correct use of World context in ctst. |
| **Python tests** (`tests/zenko_tests/`) | No bare `except:`, specific exception types, consistency with existing style, `requirements.txt` kept in sync. |
| **CI workflows** (`.github/workflows/`) | Actions pinned (tag or SHA), secrets not echoed to logs, `permissions:` block scoped minimally, reusable-workflow inputs/secrets wired correctly, runner labels valid for Scality infra. |
diff --git a/.github/workflows/end2end.yaml b/.github/workflows/end2end.yaml
index 854d11a969..edc88df11b 100644
--- a/.github/workflows/end2end.yaml
+++ b/.github/workflows/end2end.yaml
@@ -188,27 +188,6 @@ jobs:
password: ${{ secrets.ARTIFACTS_PASSWORD }}
source: /tmp/artifacts
if: always()
-
- check-mongo-patches:
- runs-on: ubuntu-24.04
- steps:
- - name: Checkout
- uses: actions/checkout@v6
- - name: fetch mongo charts
- run: make fetch-mongodb-sharded
- working-directory: ./solution-base/mongodb
- - name: apply patches to charts
- run: make patch
- working-directory: ./solution-base/mongodb
- - name: compare with upstream charts and fail if diff exists
- run: |
- if [ -n "$(git status --porcelain)" ]; then
- echo "Differences found between committed patches and applied patches:"
- git diff
- exit 1
- else
- echo "No differences found. All patches match their committed versions."
- fi
build-doc:
runs-on: ubuntu-22.04
diff --git a/solution-base/mongodb/Makefile b/solution-base/mongodb/Makefile
index 46498e43b9..2333f6f160 100644
--- a/solution-base/mongodb/Makefile
+++ b/solution-base/mongodb/Makefile
@@ -1,23 +1,49 @@
-ROOT_DIR:=$(shell dirname $(realpath $(lastword $(MAKEFILE_LIST))))
-CHART_DIR:="${ROOT_DIR}/charts"
+BITNAMI_REMOTE := bitnami-charts
+BITNAMI_REPO := https://github.com/bitnami/charts.git
-CHART_REPO:="https://charts.bitnami.com/bitnami"
-CHART_MONGO_SHARDED_VERSION:="9.4.4"
+CHART := mongodb-sharded
+CHART_VERSION := 9.4.4
+CHART_REF := $(CHART)/$(CHART_VERSION)
-PATCH_DIR:="${ROOT_DIR}/patches"
-PATCH_FILES:=$(shell ls -d ${PATCH_DIR}/*)
-HELM=helm
+# Repo-relative path of the vendored chart (needed by `git subtree`).
+REPO_CHART_PREFIX := solution-base/mongodb/charts/$(CHART)
+# Path relative to this Makefile's directory (where `helm` runs).
+LOCAL_CHART_PREFIX := charts/$(CHART)
-.PHONY: fetch patch
+VENDOR_BRANCH := vendor/$(CHART_REF)
-fetch-mongodb-sharded:
- @rm -rf ${CHART_DIR}
- @${HELM} fetch mongodb-sharded \
- --repo ${CHART_REPO} \
- --version ${CHART_MONGO_SHARDED_VERSION} \
- --untar \
- --untardir ${CHART_DIR}
+HELM := helm
-patch:
- @git apply --check ${PATCH_FILES}
- @git apply ${PATCH_FILES}
+.PHONY: create-remote fetch-remote update-vendor-branch vendor-sync deps
+
+create-remote:
+ @git remote get-url $(BITNAMI_REMOTE) >/dev/null 2>&1 || \
+ git remote add $(BITNAMI_REMOTE) $(BITNAMI_REPO)
+
+# Fetch full main + the target chart tag so `git subtree split` can synthesize
+# the chart's history. `--no-tags` avoids importing bitnami/charts' ~1000 tags
+# (one per chart-version bump across every chart) into the Zenko repo.
+fetch-remote: create-remote
+ git fetch --no-tags $(BITNAMI_REMOTE) main
+ git fetch --no-tags $(BITNAMI_REMOTE) refs/tags/$(CHART_REF):refs/tags/$(CHART_REF)
+
+update-vendor-branch: fetch-remote
+ -git branch -D $(VENDOR_BRANCH)
+ git subtree split --prefix=bitnami/$(CHART) $(CHART_REF) -b $(VENDOR_BRANCH)
+
+# Maintainer-only: bump CHART_VERSION above, then `make vendor-sync` to merge
+# upstream into our prefix. Resolves merge conflicts against our local commits
+# the same way any git merge does.
+vendor-sync: update-vendor-branch
+ git subtree merge --prefix=$(REPO_CHART_PREFIX) $(VENDOR_BRANCH) --squash
+ @$(MAKE) deps
+
+# Resolve and extract the `bitnami/common` library chart so it appears as a
+# subdirectory (required by `solution-base/build.sh`'s `helm template`).
+deps:
+ @$(HELM) dependency build $(LOCAL_CHART_PREFIX)
+ @cd $(LOCAL_CHART_PREFIX)/charts && \
+ for tgz in *.tgz; do \
+ [ -f "$$tgz" ] || continue; \
+ tar xzf "$$tgz" && rm "$$tgz"; \
+ done
diff --git a/solution-base/mongodb/charts/mongodb-sharded/CHANGELOG.md b/solution-base/mongodb/charts/mongodb-sharded/CHANGELOG.md
new file mode 100644
index 0000000000..cf27e90b61
--- /dev/null
+++ b/solution-base/mongodb/charts/mongodb-sharded/CHANGELOG.md
@@ -0,0 +1,1431 @@
+# Changelog
+
+## 9.4.4 (2025-07-23)
+
+* [bitnami/mongodb-sharded] :zap: :arrow_up: Update dependency references ([#35267](https://github.com/bitnami/charts/pull/35267))
+
+## 9.4.3 (2025-07-15)
+
+* [bitnami/mongodb-sharded] :zap: :arrow_up: Update dependency references (#35105) ([8883884](https://github.com/bitnami/charts/commit/8883884c66f2935edde0ece1f486ed7cf35aa810)), closes [#35105](https://github.com/bitnami/charts/issues/35105)
+
+## 9.4.2 (2025-07-09)
+
+* [bitnami/mongodb-sharded] :zap: :arrow_up: Update dependency references (#34937) ([c476b81](https://github.com/bitnami/charts/commit/c476b81fc612ddc6ed2b7256f77eacf34915013a)), closes [#34937](https://github.com/bitnami/charts/issues/34937)
+
+## 9.4.1 (2025-06-27)
+
+* [bitnami/mongodb-sharded] :zap: :arrow_up: Update dependency references (#34698) ([d5864a5](https://github.com/bitnami/charts/commit/d5864a5e45ef67acfc09fc4d94c1ef38838cd4f1)), closes [#34698](https://github.com/bitnami/charts/issues/34698)
+
+## 9.4.0 (2025-06-24)
+
+* [bitnami/mongodb-sharded] predictable port number for metrics (#34439) ([0ec66e0](https://github.com/bitnami/charts/commit/0ec66e0712cea64de3afbc6e433664a2d8e9672c)), closes [#34439](https://github.com/bitnami/charts/issues/34439)
+
+## 9.3.6 (2025-06-16)
+
+* [bitnami/mongodb-sharded] :zap: :arrow_up: Update dependency references (#34470) ([48aee76](https://github.com/bitnami/charts/commit/48aee76d89b5bbaebcc6d4a9d585b3599e0892ed)), closes [#34470](https://github.com/bitnami/charts/issues/34470)
+
+## 9.3.5 (2025-06-06)
+
+* [bitnami/mongodb-sharded] :zap: :arrow_up: Update dependency references (#34197) ([4eb7b44](https://github.com/bitnami/charts/commit/4eb7b44a3f4ca9ac2c35a0897db2c8641b28f214)), closes [#34197](https://github.com/bitnami/charts/issues/34197)
+
+## 9.3.4 (2025-06-05)
+
+* [bitnami/mongodb-sharded] :zap: :arrow_up: Update dependency references (#34115) ([bf8cd69](https://github.com/bitnami/charts/commit/bf8cd69e4e9fabee42eabdad3d0f4d50e9c2ad5e)), closes [#34115](https://github.com/bitnami/charts/issues/34115)
+
+## 9.3.3 (2025-06-04)
+
+* [bitnami/mongodb-sharded] :zap: :arrow_up: Update dependency references (#34084) ([c24f869](https://github.com/bitnami/charts/commit/c24f869dc90c0ba2030304aa06b60b5c4f1244c6)), closes [#34084](https://github.com/bitnami/charts/issues/34084)
+
+## 9.3.2 (2025-06-03)
+
+* [bitnami/mongodb-sharded] :zap: :arrow_up: Update dependency references (#34055) ([c1d1d77](https://github.com/bitnami/charts/commit/c1d1d77cb2671c03736fc534bac36b4889038bac)), closes [#34055](https://github.com/bitnami/charts/issues/34055)
+
+## 9.3.1 (2025-06-02)
+
+* [bitnami/mongodb-sharded] :zap: :arrow_up: Update dependency references (#34033) ([d4f0675](https://github.com/bitnami/charts/commit/d4f067510c7eab577a1f02f4158603c90770f767)), closes [#34033](https://github.com/bitnami/charts/issues/34033)
+
+## 9.3.0 (2025-05-23)
+
+* [bitnami/mongodb-sharded] allow selector definitions for volumeClaimTemplates (#33574) ([8250811](https://github.com/bitnami/charts/commit/82508118e303da80196874242fb82d2ca32c1add)), closes [#33574](https://github.com/bitnami/charts/issues/33574)
+
+## 9.2.7 (2025-05-22)
+
+* [bitnami/mongodb-sharded] :zap: :arrow_up: Update dependency references (#33820) ([933035b](https://github.com/bitnami/charts/commit/933035b248eec8383069a4601616545c24066ed6)), closes [#33820](https://github.com/bitnami/charts/issues/33820)
+
+## 9.2.6 (2025-05-15)
+
+* [bitnami/kubeapps] Deprecation followup (#33579) ([77e312c](https://github.com/bitnami/charts/commit/77e312c1772d4d7c4dc5d3ac0e80f4e452e3a062)), closes [#33579](https://github.com/bitnami/charts/issues/33579)
+* [bitnami/mongodb-sharded] :zap: :arrow_up: Update dependency references (#33638) ([3e654df](https://github.com/bitnami/charts/commit/3e654dfd3e3d86723b6f56ae14418b0dbd649559)), closes [#33638](https://github.com/bitnami/charts/issues/33638)
+
+## 9.2.5 (2025-05-06)
+
+* [bitnami/mongodb-sharded] chore: :recycle: :arrow_up: Update common and remove k8s < 1.23 references ([07e1ed1](https://github.com/bitnami/charts/commit/07e1ed1be815ad1edd28babc745ef230ece66c31)), closes [#33406](https://github.com/bitnami/charts/issues/33406)
+
+## 9.2.4 (2025-05-01)
+
+* [bitnami/mongodb-sharded] Release 9.2.4 (#33285) ([7f09123](https://github.com/bitnami/charts/commit/7f0912397bd85bef38951545f9fefd1b15a815a0)), closes [#33285](https://github.com/bitnami/charts/issues/33285)
+
+## 9.2.3 (2025-04-14)
+
+* [bitnami/mongodb-sharded] Release 9.2.3 (#32994) ([0217276](https://github.com/bitnami/charts/commit/0217276dd5d063a65c8b327c3641cdcc44e185eb)), closes [#32994](https://github.com/bitnami/charts/issues/32994)
+
+## 9.2.2 (2025-04-02)
+
+* [bitnami/mongodb-sharded] Release 9.2.2 (#32751) ([828a6e1](https://github.com/bitnami/charts/commit/828a6e12d079ff09cc34f1ec26f4c2a929f04e7c)), closes [#32751](https://github.com/bitnami/charts/issues/32751)
+
+## 9.2.1 (2025-03-21)
+
+* [bitnami/*] Add tanzuCategory annotation (#32409) ([a8fba5c](https://github.com/bitnami/charts/commit/a8fba5cb01f6f4464ca7f69c50b0fbe97d837a95)), closes [#32409](https://github.com/bitnami/charts/issues/32409)
+* [bitnami/mongodb-sharded] Release 9.2.1 (#32550) ([73a090e](https://github.com/bitnami/charts/commit/73a090eab45cd85a0623bb50906b3ae4d1d3c366)), closes [#32550](https://github.com/bitnami/charts/issues/32550)
+
+## 9.2.0 (2025-02-27)
+
+* [bitnami/mongodb-sharded] Set `usePasswordFiles=true` by default (#32112) ([6c1ce79](https://github.com/bitnami/charts/commit/6c1ce79e1f9dcd194f101ee60b85fd41b16971f2)), closes [#32112](https://github.com/bitnami/charts/issues/32112)
+
+## 9.1.3 (2025-02-21)
+
+* [bitnami/*] Use CDN url for the Bitnami Application Icons (#31881) ([d9bb11a](https://github.com/bitnami/charts/commit/d9bb11a9076b9bfdcc70ea022c25ef50e9713657)), closes [#31881](https://github.com/bitnami/charts/issues/31881)
+* [bitnami/mongodb-sharded] Release 9.1.3 (#32134) ([65a30fa](https://github.com/bitnami/charts/commit/65a30fab023ed5b9d85d9bf80b435237c7a04226)), closes [#32134](https://github.com/bitnami/charts/issues/32134)
+
+## 9.1.2 (2025-02-03)
+
+* [bitnami/mongodb-sharded] Release 9.1.2 (#31698) ([ae3a2f2](https://github.com/bitnami/charts/commit/ae3a2f21844f4a2f585800ae5b21e7c731fa96fa)), closes [#31698](https://github.com/bitnami/charts/issues/31698)
+* Update copyright year (#31682) ([e9f02f5](https://github.com/bitnami/charts/commit/e9f02f5007068751f7eb2270fece811e685c99b6)), closes [#31682](https://github.com/bitnami/charts/issues/31682)
+
+## 9.1.1 (2025-01-15)
+
+* [bitnami/*] Fix typo in README (#31052) ([b41a51d](https://github.com/bitnami/charts/commit/b41a51d1bd04841fc108b78d3b8357a5292771c8)), closes [#31052](https://github.com/bitnami/charts/issues/31052)
+* [bitnami/mongodb-sharded] Release 9.1.1 (#31389) ([3792427](https://github.com/bitnami/charts/commit/379242754da4f52c1d5cecfa6746124c75341fe5)), closes [#31389](https://github.com/bitnami/charts/issues/31389)
+
+## 9.1.0 (2024-12-10)
+
+* [bitnami/*] Add Bitnami Premium to NOTES.txt (#30854) ([3dfc003](https://github.com/bitnami/charts/commit/3dfc00376df6631f0ce54b8d440d477f6caa6186)), closes [#30854](https://github.com/bitnami/charts/issues/30854)
+* [bitnami/mongodb-sharded] Detect non-standard images (#30927) ([3c8ef42](https://github.com/bitnami/charts/commit/3c8ef421a131f3c69c1bf6b95bbae8d1c7ef6b31)), closes [#30927](https://github.com/bitnami/charts/issues/30927)
+
+## 9.0.5 (2024-12-06)
+
+* [bitnami/mongodb-sharded] Release 9.0.5 (#30821) ([c926860](https://github.com/bitnami/charts/commit/c926860fff55e3718ed34b0b99b9196fd4331917)), closes [#30821](https://github.com/bitnami/charts/issues/30821)
+
+## 9.0.4 (2024-12-04)
+
+* [bitnami/*] docs: :memo: Add "Backup & Restore" section (#30711) ([35ab536](https://github.com/bitnami/charts/commit/35ab5363741e7548f4076f04da6e62d10153c60c)), closes [#30711](https://github.com/bitnami/charts/issues/30711)
+* [bitnami/*] docs: :memo: Add "Prometheus metrics" (batch 4) (#30669) ([a4ec006](https://github.com/bitnami/charts/commit/a4ec00624589023a70a7094fcfb9f12e382bc280)), closes [#30669](https://github.com/bitnami/charts/issues/30669)
+* [bitnami/*] docs: :memo: Add "Update Credentials" (batch 3) (#30688) ([10a49f9](https://github.com/bitnami/charts/commit/10a49f9ff2db1d9d11a6edd1c40a9f61803241bc)), closes [#30688](https://github.com/bitnami/charts/issues/30688)
+* [bitnami/*] Remove wrong comment about imagePullPolicy (#30107) ([a51f9e4](https://github.com/bitnami/charts/commit/a51f9e4bb0fbf77199512d35de7ac8abe055d026)), closes [#30107](https://github.com/bitnami/charts/issues/30107)
+* [bitnami/mongodb-sharded] Release 9.0.4 (#30787) ([c3af04c](https://github.com/bitnami/charts/commit/c3af04cdff0ee39614f9da280ab4731aec555968)), closes [#30787](https://github.com/bitnami/charts/issues/30787)
+
+## 9.0.3 (2024-10-26)
+
+* [bitnami/mongodb-sharded] Release 9.0.3 (#30088) ([a54742d](https://github.com/bitnami/charts/commit/a54742d636d66d841a3be0133f0ae2f368ae416b)), closes [#30088](https://github.com/bitnami/charts/issues/30088)
+* Update documentation links to techdocs.broadcom.com (#29931) ([f0d9ad7](https://github.com/bitnami/charts/commit/f0d9ad78f39f633d275fc576d32eae78ded4d0b8)), closes [#29931](https://github.com/bitnami/charts/issues/29931)
+
+## 9.0.2 (2024-10-09)
+
+* [bitnami/mongodb-sharded] Release 9.0.2 (#29854) ([1eff071](https://github.com/bitnami/charts/commit/1eff071db3ea82d88961566d4120a9b51bb3887d)), closes [#29854](https://github.com/bitnami/charts/issues/29854)
+
+## 9.0.1 (2024-10-08)
+
+* [bitnami/mongodb-sharded] Release 9.0.1 (#29829) ([98bbc94](https://github.com/bitnami/charts/commit/98bbc94cbf695b84dacd75bcf6110fefd00244a6)), closes [#29829](https://github.com/bitnami/charts/issues/29829)
+* [bitnami/mongodb] Update README (#29812) ([6f8a1bf](https://github.com/bitnami/charts/commit/6f8a1bf241a0032a3e44a2ea47f9574f6786d436)), closes [#29812](https://github.com/bitnami/charts/issues/29812)
+
+## 9.0.0 (2024-10-07)
+
+* [bitnami/mongodb-sharded] Release 9.0.0 (#29802) ([0f15049](https://github.com/bitnami/charts/commit/0f15049eae01dd4fb989546e1627a96dd0008359)), closes [#29802](https://github.com/bitnami/charts/issues/29802)
+
+## 8.3.9 (2024-10-05)
+
+* [bitnami/mongodb-sharded] Release 8.3.9 (#29785) ([e23d06a](https://github.com/bitnami/charts/commit/e23d06a7a7e4b30f4eadcb8bc35ea47ae621342e)), closes [#29785](https://github.com/bitnami/charts/issues/29785)
+
+## 8.3.8 (2024-09-30)
+
+* [bitnami/mongodb-sharded] Fix uncapacity to disable persistence (#29599) ([9666bc1](https://github.com/bitnami/charts/commit/9666bc1ffe5959f3ddee62d124f79ad1aee71769)), closes [#29599](https://github.com/bitnami/charts/issues/29599)
+
+## 8.3.7 (2024-09-11)
+
+* [bitnami/mongodb-sharded] Changed to use namespaceOverride value when defining primaryhost in config ([2244aef](https://github.com/bitnami/charts/commit/2244aefaff5e48f8b708c2d0b9592e6802ceb6b1)), closes [#29145](https://github.com/bitnami/charts/issues/29145)
+
+## 8.3.6 (2024-08-26)
+
+* [bitnami/mongodb-sharded] Release 8.3.6 (#29028) ([bc3ab9f](https://github.com/bitnami/charts/commit/bc3ab9fbfc042c1c4a17fe069b284bf0616c42dc)), closes [#29028](https://github.com/bitnami/charts/issues/29028)
+
+## 8.3.5 (2024-08-20)
+
+* [bitnami/mongodb-sharded]Ginkgo tests: Use rollout instead of scale down (#28937) ([698baac](https://github.com/bitnami/charts/commit/698baac23bdd0f35da136ed7386b26ad7a6ea3bc)), closes [#28937](https://github.com/bitnami/charts/issues/28937)
+
+## 8.3.4 (2024-07-25)
+
+* [bitnami/mongodb-sharded] Release 8.3.4 (#28476) ([a0f15d4](https://github.com/bitnami/charts/commit/a0f15d4092aab507d6a2e98f457bda516f5caf80)), closes [#28476](https://github.com/bitnami/charts/issues/28476)
+
+## 8.3.3 (2024-07-24)
+
+* [bitnami/mongodb-sharded] Release 8.3.3 (#28324) ([cc102ed](https://github.com/bitnami/charts/commit/cc102ed5dc00e4e755c7c467214debb4a8c31dc6)), closes [#28324](https://github.com/bitnami/charts/issues/28324)
+
+## 8.3.2 (2024-07-16)
+
+* [bitnami/mongodb-sharded] Global StorageClass as default value (#28062) ([d432ce0](https://github.com/bitnami/charts/commit/d432ce00fd96cc8b19f482467543dee2519e1b1d)), closes [#28062](https://github.com/bitnami/charts/issues/28062)
+
+## 8.3.1 (2024-06-29)
+
+* [bitnami/mongodb-sharded] Release 8.3.1 (#27591) ([d572425](https://github.com/bitnami/charts/commit/d57242503ec47daca1a284e6cbdaa039383347db)), closes [#27591](https://github.com/bitnami/charts/issues/27591)
+
+## 8.3.0 (2024-06-28)
+
+* [bitnami/*] Update README changing TAC wording (#27530) ([52dfed6](https://github.com/bitnami/charts/commit/52dfed6bac44d791efabfaf06f15daddc4fefb0c)), closes [#27530](https://github.com/bitnami/charts/issues/27530)
+* [bitnami/mongodb-sharded] Support for persistent volume retention policies (#27512) ([df93121](https://github.com/bitnami/charts/commit/df93121fb40abcdaf4b3b12cd213c27d9f1b4e3f)), closes [#27512](https://github.com/bitnami/charts/issues/27512)
+
+## 8.2.8 (2024-06-18)
+
+* [bitnami/mongodb-sharded] Release 8.2.8 (#27383) ([99030f3](https://github.com/bitnami/charts/commit/99030f353001393d321297c9295105b7c5c56ffb)), closes [#27383](https://github.com/bitnami/charts/issues/27383)
+
+## 8.2.7 (2024-06-17)
+
+* [bitnami/mongodb-sharded] Release 8.2.7 (#27316) ([89ef0cf](https://github.com/bitnami/charts/commit/89ef0cf930a22e4338ecf36fbb29221f00ca08cc)), closes [#27316](https://github.com/bitnami/charts/issues/27316)
+
+## 8.2.6 (2024-06-17)
+
+* [bitnami/mongodb-sharded] Release 8.2.6 (#27252) ([cd07b41](https://github.com/bitnami/charts/commit/cd07b41777df273758467d3e3b8406d84650459e)), closes [#27252](https://github.com/bitnami/charts/issues/27252)
+
+## 8.2.5 (2024-06-06)
+
+* [bitnami/mongodb-sharded] Release 8.2.5 (#26986) ([52cc943](https://github.com/bitnami/charts/commit/52cc943e0c09b75180611b2613a121ed724457dc)), closes [#26986](https://github.com/bitnami/charts/issues/26986)
+
+## 8.2.4 (2024-06-04)
+
+* [bitnami/mongodb-sharded] Bump chart version (#26651) ([36e571f](https://github.com/bitnami/charts/commit/36e571fecd941a118f5605ba0ab9280cd4f67977)), closes [#26651](https://github.com/bitnami/charts/issues/26651)
+
+## 8.2.3 (2024-05-31)
+
+* [bitnami/mongodb-sharded] Fix mongos livenessProbe (#26566) ([274aecb](https://github.com/bitnami/charts/commit/274aecb28ebecabbe5c7eaeb9fa7695af3d5b89f)), closes [#26566](https://github.com/bitnami/charts/issues/26566)
+
+## 8.2.2 (2024-05-28)
+
+* [bitnami/mongodb-sharded] Release 8.2.2 (#26480) ([673962c](https://github.com/bitnami/charts/commit/673962cb934f1899372497ae3964a5c6913b42df)), closes [#26480](https://github.com/bitnami/charts/issues/26480)
+
+## 8.2.1 (2024-05-22)
+
+* [bitnami/mongodb-sharded] Use different liveness/readiness probes (#26153) ([6fb0875](https://github.com/bitnami/charts/commit/6fb0875eeac4a0a8ff184b1fa7c1d9c382d5ef64)), closes [#26153](https://github.com/bitnami/charts/issues/26153)
+
+## 8.2.0 (2024-05-21)
+
+* [bitnami/mongodb-sharded] feat: :sparkles: :lock: Add warning when original images are replaced (#26 ([462a80f](https://github.com/bitnami/charts/commit/462a80fb8fbad62899d601a91efed3f40cb26321)), closes [#26248](https://github.com/bitnami/charts/issues/26248)
+
+## 8.1.0 (2024-05-21)
+
+* [bitnami/*] ci: :construction_worker: Add tag and changelog support (#25359) ([91c707c](https://github.com/bitnami/charts/commit/91c707c9e4e574725a09505d2d313fb93f1b4c0a)), closes [#25359](https://github.com/bitnami/charts/issues/25359)
+* [bitnami/mongodb-sharded] PDB review (#26156) ([e2584c8](https://github.com/bitnami/charts/commit/e2584c81c1c286e4cf2df77318fd9517d16755af)), closes [#26156](https://github.com/bitnami/charts/issues/26156)
+
+## 8.0.8 (2024-05-18)
+
+* [bitnami/mongodb-sharded] Release 8.0.8 updating components versions (#26049) ([d9ab530](https://github.com/bitnami/charts/commit/d9ab5305f6bbb1a8d59f04209340708f50aa773d)), closes [#26049](https://github.com/bitnami/charts/issues/26049)
+
+## 8.0.7 (2024-05-14)
+
+* [bitnami/*] Change non-root and rolling-tags doc URLs (#25628) ([b067c94](https://github.com/bitnami/charts/commit/b067c94f6bcde427863c197fd355f0b5ba12ff5b)), closes [#25628](https://github.com/bitnami/charts/issues/25628)
+* [bitnami/*] Set new header/owner (#25558) ([8d1dc11](https://github.com/bitnami/charts/commit/8d1dc11f5fb30db6fba50c43d7af59d2f79deed3)), closes [#25558](https://github.com/bitnami/charts/issues/25558)
+* [bitnami/mongodb-sharded] Release 8.0.7 updating components versions (#25848) ([10394ca](https://github.com/bitnami/charts/commit/10394ca55ce6ba0d29332b824a78b9973cc407ec)), closes [#25848](https://github.com/bitnami/charts/issues/25848)
+
+## 8.0.6 (2024-04-27)
+
+* [bitnami/mongodb-sharded] Release 8.0.6 updating components versions (#25432) ([56a8692](https://github.com/bitnami/charts/commit/56a8692dc464dbd0c6e56496b0695d92c4395cce)), closes [#25432](https://github.com/bitnami/charts/issues/25432)
+* [bitnami/multiple charts] Fix typo: "NetworkPolice" vs "NetworkPolicy" (#25348) ([6970c1b](https://github.com/bitnami/charts/commit/6970c1ba245873506e73d459c6eac1e4919b778f)), closes [#25348](https://github.com/bitnami/charts/issues/25348)
+* Replace VMware by Broadcom copyright text (#25306) ([a5e4bd0](https://github.com/bitnami/charts/commit/a5e4bd0e35e419203793976a78d9d0a13de92c76)), closes [#25306](https://github.com/bitnami/charts/issues/25306)
+
+## 8.0.5 (2024-04-09)
+
+* [bitnami/mongodb-sharded] Release 8.0.5 updating components versions (#25083) ([a692196](https://github.com/bitnami/charts/commit/a692196dc30ba8e6fcd5a540f3f4311b41beba3d)), closes [#25083](https://github.com/bitnami/charts/issues/25083)
+
+## 8.0.4 (2024-04-05)
+
+* [bitnami/mongodb-sharded] Release 8.0.4 updating components versions (#24954) ([7a9b6c8](https://github.com/bitnami/charts/commit/7a9b6c84a71cda6838c76cb8f8edd32aa10125b4)), closes [#24954](https://github.com/bitnami/charts/issues/24954)
+
+## 8.0.3 (2024-04-04)
+
+* [bitnami/mongodb-sharded] Release 8.0.3 (#24906) ([0e46acf](https://github.com/bitnami/charts/commit/0e46acfa761e5422d1bde12358841259e7c982c3)), closes [#24906](https://github.com/bitnami/charts/issues/24906)
+* Update resourcesPreset comments (#24467) ([92e3e8a](https://github.com/bitnami/charts/commit/92e3e8a507326d2a20a8f10ab3e7746a2ec5c554)), closes [#24467](https://github.com/bitnami/charts/issues/24467)
+
+## 8.0.2 (2024-03-19)
+
+* [bitnami/mongodb-sharded] Release 8.0.2 (#24524) ([b447d4c](https://github.com/bitnami/charts/commit/b447d4c957efc786c31a7ea4c453275f36cd9855)), closes [#24524](https://github.com/bitnami/charts/issues/24524)
+
+## 8.0.1 (2024-03-18)
+
+* [bitnami/*] Reorder Chart sections (#24455) ([0cf4048](https://github.com/bitnami/charts/commit/0cf4048e8743f70a9753d460655bd030cbff6824)), closes [#24455](https://github.com/bitnami/charts/issues/24455)
+* [bitnami/mongodb-sharded] Mount emptyDir volume to mongosh directory (#24494) ([30102ae](https://github.com/bitnami/charts/commit/30102ae6e90ed94d42f4e2b6c7f3f83bc40f8a1f)), closes [#24494](https://github.com/bitnami/charts/issues/24494)
+
+## 8.0.0 (2024-03-14)
+
+* [bitnami/mongodb-sharded] feat!: :lock: :boom: Improve security defaults (#24375) ([3239c75](https://github.com/bitnami/charts/commit/3239c75863bd801179c8c84c95084840d42d1522)), closes [#24375](https://github.com/bitnami/charts/issues/24375)
+
+## 7.9.1 (2024-03-11)
+
+* [bitnami/mongodb-sharded] fix: correct indention (#24315) ([2187b3c](https://github.com/bitnami/charts/commit/2187b3c478afd3c66439aea4031f6988267acc90)), closes [#24315](https://github.com/bitnami/charts/issues/24315)
+
+## 7.9.0 (2024-03-06)
+
+* [bitnami/mongodb-sharded] feat: :sparkles: :lock: Add automatic adaptation for Openshift restricted- ([a745214](https://github.com/bitnami/charts/commit/a745214b88f10fc942c22c53304f13cede2ecbe3)), closes [#24125](https://github.com/bitnami/charts/issues/24125)
+
+## 7.8.1 (2024-02-28)
+
+* [bitnami/mongodb-sharded] Release 7.8.1 updating components versions (#23974) ([6634479](https://github.com/bitnami/charts/commit/6634479875f2f10bcb503878afecdef65df857ee)), closes [#23974](https://github.com/bitnami/charts/issues/23974)
+
+## 7.8.0 (2024-02-22)
+
+* [bitnami/mongodb-sharded] feat: :sparkles: :lock: Add readOnlyRootFilesystem support (#23747) ([d1384e5](https://github.com/bitnami/charts/commit/d1384e535560a2d4c81293541e0f280166d51f42)), closes [#23747](https://github.com/bitnami/charts/issues/23747)
+
+## 7.7.3 (2024-02-22)
+
+* Add missing version, kind to volumeClaimTemplates (#23772) ([7546e63](https://github.com/bitnami/charts/commit/7546e632977dbcfd742444e376c4d71a85a3c8b1)), closes [#23772](https://github.com/bitnami/charts/issues/23772)
+
+## 7.7.2 (2024-02-21)
+
+* [bitnami/mongodb-sharded] Release 7.7.2 updating components versions (#23742) ([996f6a6](https://github.com/bitnami/charts/commit/996f6a640c9ef485d567f3893b582b35a2e31c2f)), closes [#23742](https://github.com/bitnami/charts/issues/23742)
+
+## 7.7.1 (2024-02-21)
+
+* [bitnami/mongodb-sharded] Release 7.7.1 updating components versions (#23729) ([df51210](https://github.com/bitnami/charts/commit/df51210f9df9ad251c0c231b72de60e6786b5dcb)), closes [#23729](https://github.com/bitnami/charts/issues/23729)
+
+## 7.7.0 (2024-02-20)
+
+* [bitnami/*] Bump all versions (#23602) ([b70ee2a](https://github.com/bitnami/charts/commit/b70ee2a30e4dc256bf0ac52928fb2fa7a70f049b)), closes [#23602](https://github.com/bitnami/charts/issues/23602)
+
+## 7.6.0 (2024-02-15)
+
+* [bitnami/mongodb-sharded] feat: :sparkles: :lock: Add resource preset support (#23492) ([bf21338](https://github.com/bitnami/charts/commit/bf213387bfd750539bb9cc06d45bb0b28a6fb434)), closes [#23492](https://github.com/bitnami/charts/issues/23492)
+
+## 7.5.1 (2024-02-03)
+
+* [bitnami/mongodb-sharded] Release 7.5.1 updating components versions (#23110) ([7848f7b](https://github.com/bitnami/charts/commit/7848f7ba8f04d4b6c070138491af37bb138645ea)), closes [#23110](https://github.com/bitnami/charts/issues/23110)
+
+## 7.5.0 (2024-02-01)
+
+* [bitnami/mongodb-sharded] feat: :lock: Enable networkPolicy (#22878) ([66237d0](https://github.com/bitnami/charts/commit/66237d001e93f07fccec2490dcc36cdcafcc33bb)), closes [#22878](https://github.com/bitnami/charts/issues/22878)
+
+## 7.4.2 (2024-01-31)
+
+* [bitnami/mongodb-sharded] Release 7.4.2 updating components versions (#22942) ([871f3c9](https://github.com/bitnami/charts/commit/871f3c91bf9454c8870a04bfd920b461a3ac62a4)), closes [#22942](https://github.com/bitnami/charts/issues/22942)
+
+## 7.4.1 (2024-01-26)
+
+* [bitnami/*] Move documentation sections from docs.bitnami.com back to the README (#22203) ([7564f36](https://github.com/bitnami/charts/commit/7564f36ca1e95ff30ee686652b7ab8690561a707)), closes [#22203](https://github.com/bitnami/charts/issues/22203)
+* [bitnami/mongodb-sharded] fix: :bug: Set seLinuxOptions to null for Openshift compatibility (#22629) ([7e27bca](https://github.com/bitnami/charts/commit/7e27bcadbd4856216ee470b13da5608f807fdce4)), closes [#22629](https://github.com/bitnami/charts/issues/22629)
+
+## 7.4.0 (2024-01-19)
+
+* [bitnami/mongodb-sharded] fix: :lock: Move service-account token auto-mount to pod declaration (#224 ([249edde](https://github.com/bitnami/charts/commit/249eddea3fc72bb10662683fcda0f1bfb69b276e)), closes [#22438](https://github.com/bitnami/charts/issues/22438)
+
+## 7.3.1 (2024-01-18)
+
+* [bitnami/mongodb-sharded] Release 7.3.1 updating components versions (#22306) ([45eaedd](https://github.com/bitnami/charts/commit/45eaedd2e6f49fb311e7f6b73b6a17e11ed2c041)), closes [#22306](https://github.com/bitnami/charts/issues/22306)
+
+## 7.3.0 (2024-01-16)
+
+* [bitnami/mongodb-sharded] fix: :lock: Improve podSecurityContext and containerSecurityContext with e ([3840178](https://github.com/bitnami/charts/commit/3840178435d56c7fe5e93ed9c5db58b955787815)), closes [#22160](https://github.com/bitnami/charts/issues/22160)
+
+## 7.2.2 (2024-01-15)
+
+* [bitnami/*] Fix docs.bitnami.com broken links (#21901) ([f35506d](https://github.com/bitnami/charts/commit/f35506d2dadee4f097986e7792df1f53ab215b5d)), closes [#21901](https://github.com/bitnami/charts/issues/21901)
+* [bitnami/*] Fix ref links (in comments) (#21822) ([e4fa296](https://github.com/bitnami/charts/commit/e4fa296106b225cf8c82445727c675c7c725e380)), closes [#21822](https://github.com/bitnami/charts/issues/21822)
+* [bitnami/mongodb-sharded] fix: :lock: Do not use the default service account (#22023) ([b69e5a7](https://github.com/bitnami/charts/commit/b69e5a732b972aaf1842a3363dfd92602db1fe13)), closes [#22023](https://github.com/bitnami/charts/issues/22023)
+
+## 7.2.1 (2024-01-06)
+
+* [bitnami/mongodb-sharded] Release 7.2.1 updating components versions (#21871) ([d7de0a0](https://github.com/bitnami/charts/commit/d7de0a02b961eab0e9bee99a0c4d6265abb5175c)), closes [#21871](https://github.com/bitnami/charts/issues/21871)
+
+## 7.2.0 (2024-01-02)
+
+* [bitnami/*] Update copyright: Year and company (#21815) ([6c4bf75](https://github.com/bitnami/charts/commit/6c4bf75dec58fc7c9aee9f089777b1a858c17d5b)), closes [#21815](https://github.com/bitnami/charts/issues/21815)
+* [bitnami/mongodb-sharded] Init retry configuration (#21819) ([359aaee](https://github.com/bitnami/charts/commit/359aaee671d15c45a58e67fe73c9f6d97fad21f4)), closes [#21819](https://github.com/bitnami/charts/issues/21819)
+
+## 7.1.6 (2023-12-07)
+
+* [bitnami/mongodb-sharded] Release 7.1.6 updating components versions (#21471) ([07cfc42](https://github.com/bitnami/charts/commit/07cfc42ebdd28d8ebf97804096da3fa855717d3d)), closes [#21471](https://github.com/bitnami/charts/issues/21471)
+
+## 7.1.5 (2023-11-27)
+
+* [bitnami/*] Rename solutions to "Bitnami package for ..." (#21038) ([b82f979](https://github.com/bitnami/charts/commit/b82f979e4fb63423fe6e2192c946d09d79c944fc)), closes [#21038](https://github.com/bitnami/charts/issues/21038)
+* [bitnami/mongodb-sharded] Release 7.1.5 updating components versions (#21275) ([bf72160](https://github.com/bitnami/charts/commit/bf7216007eaf1c5815b6e808801b14242c5e71d6)), closes [#21275](https://github.com/bitnami/charts/issues/21275)
+
+## 7.1.4 (2023-11-17)
+
+* [bitnami/mongodb-sharded] Release 7.1.4 updating components versions (#21042) ([e64e3ef](https://github.com/bitnami/charts/commit/e64e3ef535e75d19c6c18afe5dca3914abb12ac1)), closes [#21042](https://github.com/bitnami/charts/issues/21042)
+
+## 7.1.3 (2023-11-17)
+
+* [bitnami/*] Remove relative links to non-README sections, add verification for that and update TL;DR ([1103633](https://github.com/bitnami/charts/commit/11036334d82df0490aa4abdb591543cab6cf7d7f)), closes [#20967](https://github.com/bitnami/charts/issues/20967)
+* [bitnami/mongodb-sharded] Release 7.1.3 updating components versions (#21022) ([23dc892](https://github.com/bitnami/charts/commit/23dc892295b5ebbb674e322c33e8013ad3ea3334)), closes [#21022](https://github.com/bitnami/charts/issues/21022)
+
+## 7.1.2 (2023-11-10)
+
+* [bitnami/mongodb-sharded] Release 7.1.2 updating components versions (#20888) ([6b9c5f1](https://github.com/bitnami/charts/commit/6b9c5f1be91a0b062c8b3357c0c4185f981bb43e)), closes [#20888](https://github.com/bitnami/charts/issues/20888)
+
+## 7.1.1 (2023-11-08)
+
+* [bitnami/mongodb-sharded] Release 7.1.1 updating components versions (#20757) ([9214a08](https://github.com/bitnami/charts/commit/9214a086f0687f7b7ffb80aa666c59116af09b69)), closes [#20757](https://github.com/bitnami/charts/issues/20757)
+
+## 7.1.0 (2023-11-06)
+
+* [bitnami/*] Rename VMware Application Catalog (#20361) ([3acc734](https://github.com/bitnami/charts/commit/3acc73472beb6fb56c4d99f929061001205bc57e)), closes [#20361](https://github.com/bitnami/charts/issues/20361)
+* [bitnami/mongodb-sharded] feat: :sparkles: Add support for PSA restricted policy (#20508) ([85ff2e7](https://github.com/bitnami/charts/commit/85ff2e75abe705677f7d56ea2818e9197d44a9cb)), closes [#20508](https://github.com/bitnami/charts/issues/20508)
+
+## 7.0.5 (2023-10-21)
+
+* [bitnami/*] Skip image's tag in the README files of the Bitnami Charts (#19841) ([bb9a01b](https://github.com/bitnami/charts/commit/bb9a01b65911c87e48318db922cc05eb42785e42)), closes [#19841](https://github.com/bitnami/charts/issues/19841)
+* [bitnami/*] Standardize documentation (#19835) ([af5f753](https://github.com/bitnami/charts/commit/af5f7530c1bc8c5ded53a6c4f7b8f384ac1804f2)), closes [#19835](https://github.com/bitnami/charts/issues/19835)
+* [bitnami/mongodb-sharded] Release 7.0.5 updating components versions (#20343) ([785d8e9](https://github.com/bitnami/charts/commit/785d8e9c3b6760fe4e9c10dd726248c758beed70)), closes [#20343](https://github.com/bitnami/charts/issues/20343)
+
+## 7.0.4 (2023-10-12)
+
+* [bitnami/mongodb-sharded] Release 7.0.4 (#20153) ([a372460](https://github.com/bitnami/charts/commit/a372460144e5a6b1e325a2fdf30629f108bf56b9)), closes [#20153](https://github.com/bitnami/charts/issues/20153)
+
+## 7.0.3 (2023-10-09)
+
+* [bitnami/mongodb-sharded] Release 7.0.3 (#19895) ([baecaf8](https://github.com/bitnami/charts/commit/baecaf833a2549a83bae2b2bd8cedce9ee9dff64)), closes [#19895](https://github.com/bitnami/charts/issues/19895)
+
+## 7.0.2 (2023-10-09)
+
+* [bitnami/*] Update Helm charts prerequisites (#19745) ([eb755dd](https://github.com/bitnami/charts/commit/eb755dd36a4dd3cf6635be8e0598f9a7f4c4a554)), closes [#19745](https://github.com/bitnami/charts/issues/19745)
+* [bitnami/mongodb-sharded] Release 7.0.2 (#19868) ([ba821b3](https://github.com/bitnami/charts/commit/ba821b321a384927e4623ea739cdd172a5595586)), closes [#19868](https://github.com/bitnami/charts/issues/19868)
+
+## 7.0.1 (2023-09-30)
+
+* [bitnami/mongodb-sharded] Release 7.0.1 (#19659) ([fadf220](https://github.com/bitnami/charts/commit/fadf220d2eb6e0bbb66fd2f5ac8e732f6cbd909a)), closes [#19659](https://github.com/bitnami/charts/issues/19659)
+
+## 7.0.0 (2023-09-28)
+
+* [bitnami/mongodb-sharded] Bump major version not bumped at #19575 (#19591) ([d838a7f](https://github.com/bitnami/charts/commit/d838a7fa6fd8f1d45c458ada794a8c45e369a6f8)), closes [#19575](https://github.com/bitnami/charts/issues/19575) [#19591](https://github.com/bitnami/charts/issues/19591) [#19575](https://github.com/bitnami/charts/issues/19575)
+
+## 6.6.8 (2023-09-27)
+
+* [bitnami/mongodb-sharded] Release 6.6.8 (#19575) ([17b916e](https://github.com/bitnami/charts/commit/17b916ec07cdc523c68f23f465914e1a75b13e7b)), closes [#19575](https://github.com/bitnami/charts/issues/19575)
+
+## 6.6.7 (2023-09-21)
+
+* [bitnami/mongodb-sharded] Release 6.6.7 (#19459) ([ec882a7](https://github.com/bitnami/charts/commit/ec882a7cdb056d182d1aa8753f8fdbc2a21428a8)), closes [#19459](https://github.com/bitnami/charts/issues/19459)
+* Revert "Autogenerate schema files (#19194)" (#19335) ([73d80be](https://github.com/bitnami/charts/commit/73d80be525c88fb4b8a54451a55acd506e337062)), closes [#19194](https://github.com/bitnami/charts/issues/19194) [#19335](https://github.com/bitnami/charts/issues/19335)
+
+## 6.6.6 (2023-09-15)
+
+* [bitnami/mongodb-sharded] test: :white_check_mark: Bump timeouts (#19293) ([ba1f396](https://github.com/bitnami/charts/commit/ba1f396b415bdb3d6a8464f42fd5f462234663c3)), closes [#19293](https://github.com/bitnami/charts/issues/19293)
+
+## 6.6.5 (2023-09-14)
+
+* [bitnami/mongodb-sharded] Release 6.6.5 (#19270) ([989a8bc](https://github.com/bitnami/charts/commit/989a8bc7299ee0420e120c179b2a651d4ed25990)), closes [#19270](https://github.com/bitnami/charts/issues/19270)
+
+## 6.6.4 (2023-09-12)
+
+* [bitnami/mongodb-sharded] test: :construction_worker: Set serial verification (#19234) ([cddcbed](https://github.com/bitnami/charts/commit/cddcbede41404ae7717ce180280bd250702be82c)), closes [#19234](https://github.com/bitnami/charts/issues/19234)
+* Autogenerate schema files (#19194) ([a2c2090](https://github.com/bitnami/charts/commit/a2c2090b5ac97f47b745c8028c6452bf99739772)), closes [#19194](https://github.com/bitnami/charts/issues/19194)
+
+## 6.6.3 (2023-09-06)
+
+* [bitnami/mongodb-sharded]: Use merge helper (#19083) ([ba14a62](https://github.com/bitnami/charts/commit/ba14a625f6b3acf0aec9e79476e329e35b2d532c)), closes [#19083](https://github.com/bitnami/charts/issues/19083)
+
+## 6.6.2 (2023-08-25)
+
+* [bitnami/mongodb-sharded] Release 6.6.2 (#18864) ([1fd7628](https://github.com/bitnami/charts/commit/1fd76288015fcecd04b9c83ca43e7b35830f3df4)), closes [#18864](https://github.com/bitnami/charts/issues/18864)
+
+## 6.6.1 (2023-08-25)
+
+* [bitnami/mongodb-sharded] test: :white_check_mark: Add persistence tests (#18777) ([357b5a8](https://github.com/bitnami/charts/commit/357b5a8d7c831125bd7ec7d672ee74e139fee497)), closes [#18777](https://github.com/bitnami/charts/issues/18777)
+
+## 6.6.0 (2023-08-24)
+
+* [bitnami/mongodb-sharded] Support for customizing standard labels (#18353) ([7287c87](https://github.com/bitnami/charts/commit/7287c8766de50d61952594d00c79481bc5c0a61f)), closes [#18353](https://github.com/bitnami/charts/issues/18353)
+
+## 6.5.8 (2023-08-17)
+
+* [bitnami/mongodb-sharded] Release 6.5.8 (#18552) ([82e33b4](https://github.com/bitnami/charts/commit/82e33b4d774290197369896d5153cc27c319ed52)), closes [#18552](https://github.com/bitnami/charts/issues/18552)
+
+## 6.5.7 (2023-07-26)
+
+* [bitnami/mongodb-sharded] Release 6.5.7 (#17925) ([c3f288e](https://github.com/bitnami/charts/commit/c3f288edf80d1cc53d3fd42f08c535d048e82728)), closes [#17925](https://github.com/bitnami/charts/issues/17925)
+
+## 6.5.6 (2023-07-15)
+
+* [bitnami/mongodb-sharded] Release 6.5.6 (#17703) ([3e976e1](https://github.com/bitnami/charts/commit/3e976e1fcbe32b73644a7bfd304caf81a81cec4c)), closes [#17703](https://github.com/bitnami/charts/issues/17703)
+
+## 6.5.5 (2023-07-01)
+
+* [bitnami/mongodb-sharded] Release 6.5.5 (#17442) ([bebf9e1](https://github.com/bitnami/charts/commit/bebf9e1130b548ff69d3b7783e6d0f448833b867)), closes [#17442](https://github.com/bitnami/charts/issues/17442)
+* Add copyright header (#17300) ([da68be8](https://github.com/bitnami/charts/commit/da68be8e951225133c7dfb572d5101ca3d61c5ae)), closes [#17300](https://github.com/bitnami/charts/issues/17300)
+* Update charts readme (#17217) ([31b3c0a](https://github.com/bitnami/charts/commit/31b3c0afd968ff4429107e34101f7509e6a0e913)), closes [#17217](https://github.com/bitnami/charts/issues/17217)
+
+## 6.5.4 (2023-06-20)
+
+* [bitnami/*] Change copyright section in READMEs (#17006) ([ef986a1](https://github.com/bitnami/charts/commit/ef986a1605241102b3dcafe9fd8089e6fc1201ad)), closes [#17006](https://github.com/bitnami/charts/issues/17006)
+* [bitnami/mongodb-sharded] Release 6.5.4 (#17225) ([950b655](https://github.com/bitnami/charts/commit/950b65587046c30ad5cccdf0cf534bdf6b939fda)), closes [#17225](https://github.com/bitnami/charts/issues/17225)
+* [bitnami/several] Change copyright section in READMEs (#16989) ([5b6a5cf](https://github.com/bitnami/charts/commit/5b6a5cfb7625a751848a2e5cd796bd7278f406ca)), closes [#16989](https://github.com/bitnami/charts/issues/16989)
+
+## 6.5.3 (2023-05-21)
+
+* [bitnami/mongodb-sharded] Release 6.5.3 (#16802) ([c8642ab](https://github.com/bitnami/charts/commit/c8642abff4b44ad55d551b76950e2bab76254769)), closes [#16802](https://github.com/bitnami/charts/issues/16802)
+
+## 6.5.2 (2023-05-12)
+
+* [bitnami/mongodb-sharded] Release 6.5.2 (#16628) ([8a64717](https://github.com/bitnami/charts/commit/8a64717958134d1df7808cd61c1403c37e522e65)), closes [#16628](https://github.com/bitnami/charts/issues/16628)
+
+## 6.5.1 (2023-05-11)
+
+* fix: allow mongodb to template existing secret (#16564) ([224b0c6](https://github.com/bitnami/charts/commit/224b0c6353571b420af4b1d3e371a1ccaaafed83)), closes [#16564](https://github.com/bitnami/charts/issues/16564)
+* Add wording for enterprise page (#16560) ([8f22774](https://github.com/bitnami/charts/commit/8f2277440b976d52785ba9149762ad8620a73d1f)), closes [#16560](https://github.com/bitnami/charts/issues/16560)
+
+## 6.5.0 (2023-05-09)
+
+* [bitnami/several] Adapt Chart.yaml to set desired OCI annotations (#16546) ([fc9b18f](https://github.com/bitnami/charts/commit/fc9b18f2e98805d4df629acbcde696f44f973344)), closes [#16546](https://github.com/bitnami/charts/issues/16546)
+
+## 6.4.2 (2023-05-09)
+
+* [bitnami/mongodb-sharded] Release 6.4.2 (#16473) ([73f176c](https://github.com/bitnami/charts/commit/73f176cb4dbde5a6023ea53e0e94d18b5ceb7169)), closes [#16473](https://github.com/bitnami/charts/issues/16473)
+
+## 6.4.1 (2023-05-01)
+
+* [bitnami/mongodb-sharded] Release 6.4.1 (#16304) ([d01d7c6](https://github.com/bitnami/charts/commit/d01d7c6ae14479fe1ce5aedd80eca00e334f4b44)), closes [#16304](https://github.com/bitnami/charts/issues/16304)
+
+## 6.4.0 (2023-04-20)
+
+* [bitnami/*] Make Helm charts 100% OCI (#15998) ([8841510](https://github.com/bitnami/charts/commit/884151035efcbf2e1b3206e7def85511073fb57d)), closes [#15998](https://github.com/bitnami/charts/issues/15998)
+
+## 6.3.3 (2023-04-01)
+
+* [bitnami/mongodb-sharded] Release 6.3.3 (#15875) ([014328d](https://github.com/bitnami/charts/commit/014328dd40a7505b96c2a70b7361241d9b9417f5)), closes [#15875](https://github.com/bitnami/charts/issues/15875)
+
+## 6.3.2 (2023-03-21)
+
+* [bitnami/mongodb-sharded] Release 6.3.2 (#15651) ([ff8731f](https://github.com/bitnami/charts/commit/ff8731fb71ef4853dc3af4887ea016fd264ad952)), closes [#15651](https://github.com/bitnami/charts/issues/15651)
+
+## 6.3.1 (2023-03-14)
+
+* [bitnami/mongodb-sharded] Release 6.3.1 (#15485) ([5947cf1](https://github.com/bitnami/charts/commit/5947cf1cc31d8315e485e4f1ed369dccb9a51ec8)), closes [#15485](https://github.com/bitnami/charts/issues/15485)
+
+## 6.3.0 (2023-03-10)
+
+* [bitnami/charts] Apply linter to README files (#15357) ([0e29e60](https://github.com/bitnami/charts/commit/0e29e600d3adc8b1b46e506eccb3decfab3b4e63)), closes [#15357](https://github.com/bitnami/charts/issues/15357)
+* [bitnami/mongodb-sharded] Add support for service.headless.annotations (#15436) ([34a0322](https://github.com/bitnami/charts/commit/34a0322cfd661066df9e9c4f499ff457854a1c6a)), closes [#15436](https://github.com/bitnami/charts/issues/15436)
+* fix(mongodbshared): fixing doc comment (#15089) ([e979121](https://github.com/bitnami/charts/commit/e979121ef56fc02ea219d12961024d3dc086dbf6)), closes [#15089](https://github.com/bitnami/charts/issues/15089)
+
+## 6.2.5 (2023-03-01)
+
+* [bitnami/mongodb-sharded] Release 6.2.5 (#15263) ([983c6d9](https://github.com/bitnami/charts/commit/983c6d91d36a60bd1175a349d516416fdbec19b4)), closes [#15263](https://github.com/bitnami/charts/issues/15263)
+
+## 6.2.4 (2023-02-17)
+
+* [bitnami/*] Change copyright date (#14682) ([add4ec7](https://github.com/bitnami/charts/commit/add4ec701108ac36ed4de2dffbdf407a0d091067)), closes [#14682](https://github.com/bitnami/charts/issues/14682)
+* [bitnami/*] Fix markdown linter issues (#14874) ([a51e0e8](https://github.com/bitnami/charts/commit/a51e0e8d35495b907f3e70dd2f8e7c3bcbf4166a)), closes [#14874](https://github.com/bitnami/charts/issues/14874)
+* [bitnami/*] Fix markdown linter issues 2 (#14890) ([aa96572](https://github.com/bitnami/charts/commit/aa9657237ee8df4a46db0d7fdf8a23230dd6902a)), closes [#14890](https://github.com/bitnami/charts/issues/14890)
+* [bitnami/*] Unify READMEs (#14472) ([2064fb8](https://github.com/bitnami/charts/commit/2064fb8dcc78a845cdede8211af8c3cc52551161)), closes [#14472](https://github.com/bitnami/charts/issues/14472)
+* [bitnami/mongodb-sharded] Release 6.2.4 (#14994) ([8f8692f](https://github.com/bitnami/charts/commit/8f8692f1becb76e7732d1a83980ed821a029fcb3)), closes [#14994](https://github.com/bitnami/charts/issues/14994)
+
+## 6.2.3 (2023-01-19)
+
+* [bitnami/*] Change licenses annotation format (#14377) ([0ab7608](https://github.com/bitnami/charts/commit/0ab760862c660fcc78cffadf8e1d8cdd70881473)), closes [#14377](https://github.com/bitnami/charts/issues/14377)
+* [bitnami/mongodb-sharded] Release 6.2.3 (#14442) ([cce758c](https://github.com/bitnami/charts/commit/cce758c7135d488c8b3eebde7be8211d6b9a2a8a)), closes [#14442](https://github.com/bitnami/charts/issues/14442)
+
+## 6.2.2 (2023-01-14)
+
+* [bitnami/*] Add license annotation and remove obsolete engine parameter (#14293) ([da2a794](https://github.com/bitnami/charts/commit/da2a7943bae95b6e9b5b4ed972c15e990b69fdb0)), closes [#14293](https://github.com/bitnami/charts/issues/14293)
+* [bitnami/mongodb-sharded] Release 6.2.2 (#14361) ([d5f3fc9](https://github.com/bitnami/charts/commit/d5f3fc9acb97ed81936e4ef26d848b8badda0b2e)), closes [#14361](https://github.com/bitnami/charts/issues/14361)
+
+## 6.2.1 (2022-12-15)
+
+* [bitnami/mongodb-sharded] Release 6.2.1 (#13973) ([87efc77](https://github.com/bitnami/charts/commit/87efc771e8b5525ce85e8d0964b6eff223ad048c)), closes [#13973](https://github.com/bitnami/charts/issues/13973)
+
+## 6.2.0 (2022-11-29)
+
+* [bitnami/mongodb-sharded] Evaluate *.persistence.subPath as a template (#13584) ([d6610ae](https://github.com/bitnami/charts/commit/d6610ae391ac703ec2a737b424f83ac5eee8fc31)), closes [#13584](https://github.com/bitnami/charts/issues/13584)
+
+## 6.1.14 (2022-11-25)
+
+* [bitnami/mongodb-sharded] fix rendering topologySpreadConstraints (#13646) ([0964a40](https://github.com/bitnami/charts/commit/0964a401e6b4daef38330ceedfa445db412bc4ac)), closes [#13646](https://github.com/bitnami/charts/issues/13646)
+
+## 6.1.13 (2022-11-15)
+
+* [bitnami/mongodb-sharded] Release 6.1.13 updating components versions (#13526) ([21f4d51](https://github.com/bitnami/charts/commit/21f4d51b2661f0087f80f07a53dc482ca2644adc)), closes [#13526](https://github.com/bitnami/charts/issues/13526)
+
+## 6.1.12 (2022-11-14)
+
+* [bitnami/mongodb-sharded]Fixed a few errors in the templates that support monitoring, PDB, etc (#134 ([c2d5b43](https://github.com/bitnami/charts/commit/c2d5b434d5e4ab1c3feb4c4c7221b1cb2fdab578)), closes [#13482](https://github.com/bitnami/charts/issues/13482)
+
+## 6.1.11 (2022-11-09)
+
+* [bitnami/mongodb-sharded] enable all collectors in mongodb_exporter (#13385) ([35da722](https://github.com/bitnami/charts/commit/35da7227d9d8519cac7154ee5ab86b253eee7d88)), closes [#13385](https://github.com/bitnami/charts/issues/13385)
+
+## 6.1.10 (2022-10-31)
+
+* [bitnami/mongodb-sharded] Release 6.1.10 (#13257) ([0adb24d](https://github.com/bitnami/charts/commit/0adb24d5bbcdf5ffd83a882267962cd8c8605938)), closes [#13257](https://github.com/bitnami/charts/issues/13257)
+
+## 6.1.9 (2022-10-25)
+
+* fix render topologySpreadConstraints for shard data statefulset (#13109) ([ec572fa](https://github.com/bitnami/charts/commit/ec572fa8901116b689c8c5689831d7538e390526)), closes [#13109](https://github.com/bitnami/charts/issues/13109)
+
+## 6.1.8 (2022-10-24)
+
+* fix render topologySpreadConstraints (#13084) ([dd746d4](https://github.com/bitnami/charts/commit/dd746d494fba81c5d7a136e742e751bdb31ffb9d)), closes [#13084](https://github.com/bitnami/charts/issues/13084)
+
+## 6.1.7 (2022-10-17)
+
+* [bitnami/*] Use new default branch name in links (#12943) ([a529e02](https://github.com/bitnami/charts/commit/a529e02597d49d944eba1eb0f190713293247176)), closes [#12943](https://github.com/bitnami/charts/issues/12943)
+* [bitnami/mongodb-sharded] Fix missing $ in data StatefulSet (#12941) ([b8620a9](https://github.com/bitnami/charts/commit/b8620a94d9ca352217226547a9c5cdecc8877b14)), closes [#12941](https://github.com/bitnami/charts/issues/12941)
+* Generic README instructions related to the repo (#12792) ([3cf6b10](https://github.com/bitnami/charts/commit/3cf6b10e10e60df4b3e191d6b99aa99a9f597755)), closes [#12792](https://github.com/bitnami/charts/issues/12792)
+
+## 6.1.6 (2022-10-01)
+
+* [bitnami/mongodb-sharded] Release 6.1.6 (#12780) ([0b63445](https://github.com/bitnami/charts/commit/0b634450fff73723425700690c9507dd1bf134d7)), closes [#12780](https://github.com/bitnami/charts/issues/12780)
+
+## 6.1.5 (2022-09-30)
+
+* [bitnami/mongodb-sharded] Force new version publishing (#12774) ([e114fed](https://github.com/bitnami/charts/commit/e114fedb35a8a28055cb099b5c6b4865b0a82ee8)), closes [#12774](https://github.com/bitnami/charts/issues/12774)
+
+## 6.1.4 (2022-09-30)
+
+* [bitnami/mongodb-sharded] Release 6.1.4 (#12746) ([7e73521](https://github.com/bitnami/charts/commit/7e73521cbb6fd948a018f983125f5154157ed3c0)), closes [#12746](https://github.com/bitnami/charts/issues/12746)
+
+## 6.1.3 (2022-09-20)
+
+* [bitnami/mongodb-sharded] Use custom probes if given (#12529) ([b469868](https://github.com/bitnami/charts/commit/b469868e7f50591d50e5aef726aa4f5a7eec67d5)), closes [#12529](https://github.com/bitnami/charts/issues/12529) [#12354](https://github.com/bitnami/charts/issues/12354)
+
+## 6.1.2 (2022-09-19)
+
+* [bitnami/mongodb-sharded] Release 6.1.2 updating components versions ([b58bc0e](https://github.com/bitnami/charts/commit/b58bc0e52531d934e987ce6225fff2411d0e2a65))
+
+## 6.1.1 (2022-08-23)
+
+* [bitnami/mongodb-sharded] Update Chart.lock (#12044) ([5cf48d2](https://github.com/bitnami/charts/commit/5cf48d2698ca285e17d0e517a17092f9f56e9ad2)), closes [#12044](https://github.com/bitnami/charts/issues/12044)
+
+## 6.1.0 (2022-08-22)
+
+* [bitnami/mongodb-sharded] Add support for image digest apart from tag (#11913) ([31abd3a](https://github.com/bitnami/charts/commit/31abd3a9b8185298984e5f565936271fbf1908f7)), closes [#11913](https://github.com/bitnami/charts/issues/11913)
+
+## 6.0.4 (2022-08-20)
+
+* [bitnami/mongodb-sharded] Release 6.0.4 updating components versions ([8ea66e5](https://github.com/bitnami/charts/commit/8ea66e537fd26d94f065d8222c722d81a7088ae2))
+
+## 6.0.3 (2022-08-17)
+
+* [bitnami/mongodb-sharded] Fix incorrect references when setting shardsvr persistence configuration ( ([36f8647](https://github.com/bitnami/charts/commit/36f864759abe7ce8a0143ab719efc2348a39d705)), closes [#11455](https://github.com/bitnami/charts/issues/11455)
+
+## 6.0.2 (2022-08-16)
+
+* [bitnami/mongodb-sharded] Release 6.0.2 updating components versions ([604e277](https://github.com/bitnami/charts/commit/604e277d83314c9255b32029ecfff6a485ab14b4))
+
+## 6.0.1 (2022-08-05)
+
+* [bitnami/mongodb-sharded] Fixed incorrect permissions when using (#11452) ([8782ae0](https://github.com/bitnami/charts/commit/8782ae0c3c9d4cb679399d702bf900d6e058300c)), closes [#11452](https://github.com/bitnami/charts/issues/11452)
+
+## 6.0.0 (2022-08-05)
+
+* [bitnami/mongodb-sharded] Release 6.0.0 updating components versions ([fa05b70](https://github.com/bitnami/charts/commit/fa05b70378a7c494e4653ff7aafcdb31427a2da2))
+
+## 5.1.4 (2022-08-04)
+
+* [bitnami/mongodb-sharded] Release 5.1.4 updating components versions ([02e4139](https://github.com/bitnami/charts/commit/02e4139692332f3f9b7b7a6b3c826bfb0109f2be))
+
+## 5.1.3 (2022-08-02)
+
+* [bitnami/mongodb-sharded] Release 5.1.3 updating components versions ([25ed652](https://github.com/bitnami/charts/commit/25ed652526f8708692a9ab801e2067386f213fae))
+
+## 5.1.2 (2022-07-27)
+
+* [bitnami/*] Update URLs to point to the new bitnami/containers monorepo (#11352) ([d665af0](https://github.com/bitnami/charts/commit/d665af0c708846192d8d5fb2f5f9ea65dd464ab0)), closes [#11352](https://github.com/bitnami/charts/issues/11352)
+* [bitnami/mongodb-sharded] Release 5.1.2 updating components versions ([7854da8](https://github.com/bitnami/charts/commit/7854da8370c6f8c89cc4c67ada15f57427c18b63))
+
+## 5.1.1 (2022-07-20)
+
+* [bitnami/mongodb-sharded] Release 5.1.1 updating components versions ([03216f2](https://github.com/bitnami/charts/commit/03216f2404b54d7776423b5d3e17e83b463b33fd))
+
+## 5.1.0 (2022-07-14)
+
+* [bitnami/mongodb-sharded] Use common helper to manage app secrets (#10828) ([9892db1](https://github.com/bitnami/charts/commit/9892db1bda0af04af478562eba112acbedbad4f9)), closes [#10828](https://github.com/bitnami/charts/issues/10828)
+
+## 5.0.17 (2022-07-09)
+
+* [bitnami/mongodb-sharded] Release 5.0.17 updating components versions ([963e4f9](https://github.com/bitnami/charts/commit/963e4f996c9bb3d43a31c89e240ebe57db7eaa17))
+
+## 5.0.16 (2022-07-05)
+
+* [bitnami/mongodb-sharded] Release 5.0.16 updating components versions ([87d4cc0](https://github.com/bitnami/charts/commit/87d4cc08752d8fa305d391e7fead87e33f292931))
+
+## 5.0.15 (2022-07-04)
+
+* [bitnami/mongodb-sharded] Release 5.0.15 updating components versions ([b2d8f6a](https://github.com/bitnami/charts/commit/b2d8f6a2f74eb5c4c98ee0e75e7d5c0d8ac51417))
+
+## 5.0.14 (2022-06-30)
+
+* [bitnami/mongodb-sharded] Release 5.0.14 updating components versions ([12a6824](https://github.com/bitnami/charts/commit/12a6824ced6b2988580216f1274e5fcbb48d81eb))
+
+## 5.0.13 (2022-06-27)
+
+* [bitnami/mongodb-sharded] Fixed calls for render values and extraEnvVarsSecret calls (#10868) ([32282c8](https://github.com/bitnami/charts/commit/32282c823a92b2520e9ed8599822730c372f01be)), closes [#10868](https://github.com/bitnami/charts/issues/10868)
+
+## 5.0.12 (2022-06-15)
+
+* [bitnami/mongodb-sharded] Release 5.0.12 updating components versions ([8b7378d](https://github.com/bitnami/charts/commit/8b7378d1ddf1180365610a29ca244ca0e7d87246))
+
+## 5.0.11 (2022-06-08)
+
+* [bitnami/mongodb-sharded] Release 5.0.11 updating components versions ([1fc24cc](https://github.com/bitnami/charts/commit/1fc24cc0e2cc69645a43a62ca4636ecb915a647a))
+
+## 5.0.10 (2022-06-07)
+
+* [bitnami/*] Replace Kubeapps URL in READMEs (and kubeapps Chart.yaml) and remove BKPR references (#1 ([c6a7914](https://github.com/bitnami/charts/commit/c6a7914361e5aea6016fb45bf4d621edfd111d32)), closes [#10600](https://github.com/bitnami/charts/issues/10600)
+* Fix tolerations and topologySpreadConstraints default values (#10636) ([5df5573](https://github.com/bitnami/charts/commit/5df55739d6cd86459e8320cc48047646c6029add)), closes [#10636](https://github.com/bitnami/charts/issues/10636)
+
+## 5.0.9 (2022-06-06)
+
+* [bitnami/mongodb-sharded] Fixed typo for custom probes (#10571) ([5065a0a](https://github.com/bitnami/charts/commit/5065a0a3a457fe7c7a364c96d17cee9dc446aeac)), closes [#10571](https://github.com/bitnami/charts/issues/10571)
+
+## 5.0.8 (2022-06-01)
+
+* [bitnami/several] Replace maintainers email by url (#10523) ([ff3cf61](https://github.com/bitnami/charts/commit/ff3cf617a1680509b0f3855d17c4ccff7b29a0ff)), closes [#10523](https://github.com/bitnami/charts/issues/10523)
+
+## 5.0.7 (2022-05-30)
+
+* [bitnami/several] Replace base64 --decode with base64 -d (#10495) ([099286a](https://github.com/bitnami/charts/commit/099286ae7a87784cf809df0b64ab24f7ff0144c8)), closes [#10495](https://github.com/bitnami/charts/issues/10495)
+
+## 5.0.6 (2022-05-26)
+
+* [bitnami/mongodb-sharded] Release 5.0.6 updating components versions ([a4b5f42](https://github.com/bitnami/charts/commit/a4b5f420d81f806c1bc3df6cfd85098f32236bf2))
+
+## 5.0.5 (2022-05-22)
+
+* [bitnami/mongodb-sharded] Release 5.0.5 updating components versions ([efdf648](https://github.com/bitnami/charts/commit/efdf6481c2fd431291ca94346e0a1f03daf104e7))
+
+## 5.0.4 (2022-05-19)
+
+* [bitnami/mongodb-sharded] Release 5.0.4 updating components versions ([cba25d3](https://github.com/bitnami/charts/commit/cba25d3e18820e465419c31efb1565364a72da45))
+
+## 5.0.3 (2022-05-18)
+
+* [bitnami/mongodb-sharded] Fix bug in arbiter statefulset (#10068) ([d53cba2](https://github.com/bitnami/charts/commit/d53cba2be93997b8151cdf765270d5a5778a52ea)), closes [#10068](https://github.com/bitnami/charts/issues/10068)
+* [bitnami/mongodb-sharded] Release 5.0.3 updating components versions ([a2da8ac](https://github.com/bitnami/charts/commit/a2da8acac8b9452793d33855a9b5c8009bb2e98c))
+
+## 5.0.2 (2022-05-13)
+
+* [bitnami/*] Unify k8s directives separators (#10185) ([2650214](https://github.com/bitnami/charts/commit/26502141d146ca3bdfb3bf744fcdec8ca5cece44)), closes [#10185](https://github.com/bitnami/charts/issues/10185)
+
+## 5.0.1 (2022-05-05)
+
+* [bitnami/mongodb-sharded] Remove unused variables (again) (#10025) ([ae0c043](https://github.com/bitnami/charts/commit/ae0c043d0c520d1b2d6159f41e2dcca637cc8c32)), closes [#10025](https://github.com/bitnami/charts/issues/10025)
+
+## 5.0.0 (2022-04-29)
+
+* [bitnami/mongodb-sharded] MongoDB sharded standarization (#9829) ([88c4054](https://github.com/bitnami/charts/commit/88c4054537c38e0cb97adf13e877195947c4f2ec)), closes [#9829](https://github.com/bitnami/charts/issues/9829)
+
+## 4.1.1 (2022-04-27)
+
+* [bitnami/mongodb-sharded] Bump failureThresholds ([b4a2551](https://github.com/bitnami/charts/commit/b4a2551acc360df958a8a2f093b0129a2901072e))
+
+## 4.1.0 (2022-04-26)
+
+* [bitnami/mongodb-sharded] chore: :wastebasket: Remove reference to mongo command (#9917) ([74e7106](https://github.com/bitnami/charts/commit/74e71061844630ebd89901f9176987d18633af13)), closes [#9917](https://github.com/bitnami/charts/issues/9917)
+
+## 4.0.21 (2022-04-22)
+
+* [bitnami/mongodb-sharded] Release 4.0.21 updating components versions ([9fecca5](https://github.com/bitnami/charts/commit/9fecca57689556d807654aa091f9877c433b257f))
+
+## 4.0.20 (2022-04-20)
+
+* [bitnami/mongodb-sharded] Release 4.0.20 updating components versions ([dc13fd4](https://github.com/bitnami/charts/commit/dc13fd4f1f2a381765278faa8aa3002c62c75609))
+
+## 4.0.19 (2022-04-19)
+
+* [bitnami/mongodb-sharded] Release 4.0.19 updating components versions ([2dad215](https://github.com/bitnami/charts/commit/2dad2151cdbc13915c2adcd19a842426bdc25202))
+
+## 4.0.18 (2022-04-18)
+
+* [bitnami/mongodb-sharded] Release 4.0.18 updating components versions ([afff42f](https://github.com/bitnami/charts/commit/afff42f03300f118173ac9239aed43984b0dfbbd))
+
+## 4.0.17 (2022-04-02)
+
+* [bitnami/mongodb-sharded] Release 4.0.17 updating components versions ([f89ce77](https://github.com/bitnami/charts/commit/f89ce7727f39d4a76019c8eeedfee052dc9296b8))
+
+## 4.0.16 (2022-04-01)
+
+* [bitnami/mongodb-sharded] Fix typo in shard-data-poddisruptionbudget (#9578) ([68d0639](https://github.com/bitnami/charts/commit/68d0639142927dee63ad5e1f20da0ba3275734ae)), closes [#9578](https://github.com/bitnami/charts/issues/9578)
+
+## 4.0.15 (2022-03-28)
+
+* [bitnami/mongodb-sharded] Release 4.0.15 updating components versions ([902d8b7](https://github.com/bitnami/charts/commit/902d8b785905c70c16effc3c64351a49546f9117))
+
+## 4.0.14 (2022-03-27)
+
+* [bitnami/mongodb-sharded] Release 4.0.14 updating components versions ([203b733](https://github.com/bitnami/charts/commit/203b7332c7f284f84b6605a04264a1b54ec36e65))
+
+## 4.0.13 (2022-03-25)
+
+* [bitnami/mongodb-sharded] Allow externalIP on all service type (#9565) ([478715e](https://github.com/bitnami/charts/commit/478715e448f7ae082f3039150d96d048732561fc)), closes [#9565](https://github.com/bitnami/charts/issues/9565) [#9562](https://github.com/bitnami/charts/issues/9562)
+
+## 4.0.12 (2022-03-24)
+
+* [bitnami/mongodb-sharded] Add externalIP in mongos service (#9542) ([ea66cef](https://github.com/bitnami/charts/commit/ea66cef362033d0cdb7889ade863c4422e4a84af)), closes [#9542](https://github.com/bitnami/charts/issues/9542)
+
+## 4.0.11 (2022-03-16)
+
+* [bitnami/mongodb-sharded] Release 4.0.11 updating components versions ([3dbb1f5](https://github.com/bitnami/charts/commit/3dbb1f5107402d8030b98518bf4658d52ff04a58))
+
+## 4.0.10 (2022-03-07)
+
+* [bitnami/mongodb-sharded] Release 4.0.10 updating components versions ([42d2adc](https://github.com/bitnami/charts/commit/42d2adcd31729c8102fb5e32ef627b9d09a378ba))
+
+## 4.0.9 (2022-03-02)
+
+* [bitnami/mongodb-sharded] Release 4.0.9 updating components versions ([daeab7a](https://github.com/bitnami/charts/commit/daeab7a63dae9b6754ad19864bf123a603ad85e5))
+
+## 4.0.8 (2022-03-01)
+
+* [bitnami/mongodb-sharded] Release 4.0.8 updating components versions ([c663316](https://github.com/bitnami/charts/commit/c663316c03498a34dae614de937ff81d12a07ace))
+
+## 4.0.7 (2022-02-27)
+
+* [bitnami/mongodb-sharded] Release 4.0.7 updating components versions ([80fe14a](https://github.com/bitnami/charts/commit/80fe14a05456237a7e1365d92d9cdf655f103649))
+
+## 4.0.6 (2022-02-23)
+
+* Merge branch 'master' of https://github.com/bitnami/charts (#9163) ([7413cdb](https://github.com/bitnami/charts/commit/7413cdb88d22c2f158b6f47285c2ebdb653b9896))
+
+## 4.0.5 (2022-02-21)
+
+* [bitnami/mongodb-sharded] Do not hardcode PDB apiVersion (#9104) ([69de5c6](https://github.com/bitnami/charts/commit/69de5c60c493e70fad71abfabbc233c8170cdad0)), closes [#9104](https://github.com/bitnami/charts/issues/9104)
+
+## 4.0.4 (2022-02-20)
+
+* [bitnami/mongodb-sharded] Release 4.0.4 updating components versions ([7929fdf](https://github.com/bitnami/charts/commit/7929fdf551dcc3c071bcaacf851450c7a12ee273))
+
+## 4.0.3 (2022-02-01)
+
+* [bitnami/mongodb-sharded] Release 4.0.3 updating components versions ([1ecf077](https://github.com/bitnami/charts/commit/1ecf077bbfed67ef2b37996b6503827400ee15db))
+
+## 4.0.2 (2022-01-30)
+
+* [bitnami/*] Fix non-utf8 characters (#8826) ([aebe0ed](https://github.com/bitnami/charts/commit/aebe0ed63d845e1e2b38751103810adf200b18f5)), closes [#8826](https://github.com/bitnami/charts/issues/8826)
+* [bitnami/mongodb-sharded] Release 4.0.2 updating components versions ([58fb31b](https://github.com/bitnami/charts/commit/58fb31b0a0f118ff0be689eab24ce0ca1c79a1ff))
+
+## 4.0.1 (2022-01-28)
+
+* [bitnami/mongodb-sharded] Release 4.0.1 updating components versions ([2b86626](https://github.com/bitnami/charts/commit/2b8662601dd1cfc7e112edd4d2a856afad58ba7f))
+
+## 4.0.0 (2022-01-27)
+
+* [bitnami/mongodb*] New major version using 0.30.X for the exporter (#8818) ([282d315](https://github.com/bitnami/charts/commit/282d315386d6f7f20a65ea3b7a46bb26cc95fa15)), closes [#8818](https://github.com/bitnami/charts/issues/8818)
+
+## 3.12.0 (2022-01-24)
+
+* [bitnami/mongodb-sharded] add option to use tls for metrics exporter (#8733) ([19f67fe](https://github.com/bitnami/charts/commit/19f67fedcb5bbce4035572baef756f442721f659)), closes [#8733](https://github.com/bitnami/charts/issues/8733)
+
+## 3.11.2 (2022-01-20)
+
+* [bitnami/*] Readme automation (#8579) ([78d1938](https://github.com/bitnami/charts/commit/78d193831c900d178198491ffd08fa2217a64ecd)), closes [#8579](https://github.com/bitnami/charts/issues/8579)
+* [bitnami/*] Update READMEs (#8716) ([b9a9533](https://github.com/bitnami/charts/commit/b9a953337590eb2979453385874a267bacf50936)), closes [#8716](https://github.com/bitnami/charts/issues/8716)
+* [bitnami/several] Change prerequisites (#8725) ([8d740c5](https://github.com/bitnami/charts/commit/8d740c566cfdb7e2d933c40128b4e919fce953a5)), closes [#8725](https://github.com/bitnami/charts/issues/8725)
+
+## 3.11.1 (2022-01-14)
+
+* [bitnami/mongodb-sharded] Release 3.11.1 updating components versions ([1625f7b](https://github.com/bitnami/charts/commit/1625f7b8f9e9ae230d5f242abd62ef961c33dd4c))
+* Update README.md (#8621) ([626ac12](https://github.com/bitnami/charts/commit/626ac128ef8f57289c488084cc50384b83e16bdb)), closes [#8621](https://github.com/bitnami/charts/issues/8621)
+
+## 3.11.0 (2022-01-05)
+
+* [bitnami/several] Adapt templating format (#8562) ([8cad18a](https://github.com/bitnami/charts/commit/8cad18aed9966a6f0208e5ad6cee46cb217f47ab)), closes [#8562](https://github.com/bitnami/charts/issues/8562)
+
+## 3.10.2 (2022-01-04)
+
+* [bitnami/several] Add license to the README ([05f7633](https://github.com/bitnami/charts/commit/05f763372501d596e57db713dd53ff4ff3027cc4))
+* [bitnami/several] Add license to the README ([32fb238](https://github.com/bitnami/charts/commit/32fb238e60a0affc6debd3142eaa3c3d9089ec2a))
+* [bitnami/several] Add license to the README ([b87c2f7](https://github.com/bitnami/charts/commit/b87c2f7899d48a8b02c506765e6ae82937e9ba3f))
+* [bitnami/several] Fix issue with quote when followed by }} (#8561) ([58077af](https://github.com/bitnami/charts/commit/58077af58f40e74e7af41485bcca493e38523537)), closes [#8561](https://github.com/bitnami/charts/issues/8561)
+
+## 3.10.1 (2021-12-29)
+
+* [bitnami/mongodb-sharded] Release 3.10.1 updating components versions ([3fd0013](https://github.com/bitnami/charts/commit/3fd001334cbca94eb93ed81b69def8b1aeb2e93e))
+* [bitnami/several] Regenerate README tables ([8150149](https://github.com/bitnami/charts/commit/8150149f0bb746e86ff0029fc375d43775bdf15a))
+
+## 3.10.0 (2021-11-30)
+
+* [bitnami/mongodb-sharded] feat: :bug: Allow setting container ports (#8248) ([20c692f](https://github.com/bitnami/charts/commit/20c692fb8eb2cc59d69c7e0ac600f81ffd362cf1)), closes [#8248](https://github.com/bitnami/charts/issues/8248)
+
+## 3.9.18 (2021-11-29)
+
+* [bitnami/mongodb-sharded] Release 3.9.18 updating components versions ([4b72fd7](https://github.com/bitnami/charts/commit/4b72fd7d89de643dc3a6a65ce0dc57b122069e3f))
+
+## 3.9.17 (2021-11-29)
+
+* [bitnami/several] Replace HTTP by HTTPS when possible (#8259) ([eafb5bd](https://github.com/bitnami/charts/commit/eafb5bd5a2cc3aaf04fc1e8ebedd73f420d76864)), closes [#8259](https://github.com/bitnami/charts/issues/8259)
+
+## 3.9.16 (2021-11-28)
+
+* [bitnami/mongodb-sharded] Release 3.9.16 updating components versions ([fb4f3c6](https://github.com/bitnami/charts/commit/fb4f3c67f241a746a144278940ce385e0b6d8e8c))
+* [bitnami/several] Fix deadlinks in README.md (#8215) ([99e90d2](https://github.com/bitnami/charts/commit/99e90d244b3244e059a42f72dcbecd3cda2b66bb)), closes [#8215](https://github.com/bitnami/charts/issues/8215)
+
+## 3.9.15 (2021-11-17)
+
+* [bitnami/several] Add extraDeploy feature to the pending charts (#8164) ([d812a24](https://github.com/bitnami/charts/commit/d812a243cb1bba69c67ac22cfce1f7999848ef74)), closes [#8164](https://github.com/bitnami/charts/issues/8164)
+* [bitnami/several] Regenerate README tables ([3cefed3](https://github.com/bitnami/charts/commit/3cefed3ef961fbd7596242b1165bcfa229a9cadb))
+
+## 3.9.14 (2021-10-28)
+
+* [bitnami/mongodb-sharded] Release 3.9.14 updating components versions ([4a1d9ce](https://github.com/bitnami/charts/commit/4a1d9ce7bb5f0cd84ec73245bdd3fe8731c90d78))
+* [bitnami/several] Regenerate README tables ([412cf6a](https://github.com/bitnami/charts/commit/412cf6a513cb0c03444a6e7811c6f27193239a10))
+
+## 3.9.13 (2021-10-27)
+
+* [bitnami/mongodb-sharded] Release 3.9.13 updating components versions ([ddecda9](https://github.com/bitnami/charts/commit/ddecda9047db14997dac9147bf83a0f83095781b))
+
+## 3.9.12 (2021-10-22)
+
+* [bitnami/several] Add chart info to NOTES.txt (#7889) ([a6751cd](https://github.com/bitnami/charts/commit/a6751cdd33c461fabbc459fbea6f219ec64ab6b2)), closes [#7889](https://github.com/bitnami/charts/issues/7889)
+
+## 3.9.11 (2021-10-19)
+
+* [bitnami/several] Change pullPolicy for bitnami-shell image (#7852) ([9711a33](https://github.com/bitnami/charts/commit/9711a33c6eec72ea79143c4b7574dbe6a148d6b2)), closes [#7852](https://github.com/bitnami/charts/issues/7852)
+* [bitnami/several] Regenerate README tables ([dd25873](https://github.com/bitnami/charts/commit/dd2587368d006bcca6149be74d846752a15344b9))
+
+## 3.9.10 (2021-10-14)
+
+* [bitnami/*] Generate READMEs (#7790) ([0833a8c](https://github.com/bitnami/charts/commit/0833a8c16300d68abf6030639c3479d8fb031e25)), closes [#7790](https://github.com/bitnami/charts/issues/7790)
+* [bitnami/mongodb-sharded] Release 3.9.10 updating components versions ([f559caf](https://github.com/bitnami/charts/commit/f559cafd86cf5ede47033044e4971e9a56e72780))
+
+## 3.9.9 (2021-10-13)
+
+* [bitnami/mongodb-sharded] Release 3.9.9 updating components versions ([d61b18f](https://github.com/bitnami/charts/commit/d61b18f2bc01c7a08d677bf9d6f5d788d85d6ec6))
+
+## 3.9.8 (2021-10-01)
+
+* [bitnami/*] Generate READMEs with new generator version (#7614) ([e5ab2e6](https://github.com/bitnami/charts/commit/e5ab2e6ecdd6bce800863f154cda524ff9f6c117)), closes [#7614](https://github.com/bitnami/charts/issues/7614)
+* [bitnami/rabbitmq-cluster-operator & mongodb-sharded] Fix Chart.yaml format (#7672) ([732b749](https://github.com/bitnami/charts/commit/732b74986440835a93a75ef0fc93b105d0418cfe)), closes [#7672](https://github.com/bitnami/charts/issues/7672)
+* [bitnami/several] Regenerate README tables ([fa939b3](https://github.com/bitnami/charts/commit/fa939b373a54c01c20aa28cdd4e7cfb2953ce2a4))
+
+## 3.9.7 (2021-09-19)
+
+* [bitnami/mongodb-sharded] Release 3.9.7 updating components versions ([6561763](https://github.com/bitnami/charts/commit/6561763c3d87e2c04cd7bf968f242e19db8ae047))
+* [bitnami/several] Regenerate README tables ([5c79422](https://github.com/bitnami/charts/commit/5c7942235d3169332e8dadb380cd757416f28946))
+
+## 3.9.6 (2021-09-14)
+
+* [bitnami/mongodb-sharded] Release 3.9.6 updating components versions ([0b62bd2](https://github.com/bitnami/charts/commit/0b62bd23cb7875ec05f2c86b2c203eac935d0c6e))
+
+## 3.9.5 (2021-09-14)
+
+* [bitnami/mongodb-sharded] Release 3.9.5 updating components versions ([c6834e8](https://github.com/bitnami/charts/commit/c6834e8af77986ced610c1520bfae49b10883c94))
+
+## 3.9.4 (2021-09-14)
+
+* [bitnami/mongodb-sharded] Release 3.9.4 updating components versions ([41aba03](https://github.com/bitnami/charts/commit/41aba03f6cfe70cf8594e807833a1ba7aac22852))
+* [bitnami/several] Regenerate README tables ([9c82ba2](https://github.com/bitnami/charts/commit/9c82ba295d70b1cac50ab4d8d494fdbefc1ec0ac))
+
+## 3.9.3 (2021-09-02)
+
+* [bitnami/mongodb-sharded] Release 3.9.3 updating components versions ([62a828b](https://github.com/bitnami/charts/commit/62a828bf8e78b33ef84363d6f9c6e2424a53a8a1))
+* [bitnami/several] Regenerate README tables ([da2513b](https://github.com/bitnami/charts/commit/da2513bf0a33819f3b1151d387c631a9ffdb03e2))
+
+## 3.9.2 (2021-08-24)
+
+* [bitnami/mongodb-sharded] Release 3.9.2 updating components versions ([9484164](https://github.com/bitnami/charts/commit/9484164a859b1f15a4e198bf70f40d80fefc5316))
+* [bitnami/several] Regenerate README tables ([6c107e8](https://github.com/bitnami/charts/commit/6c107e835d6caf8db2e8b17dcd48c5971637e013))
+
+## 3.9.1 (2021-08-11)
+
+* [bitnami/mongodb-sharded] Release 3.9.1 updating components versions ([77f00cf](https://github.com/bitnami/charts/commit/77f00cf18e3ee515806434818b70c8c308f7a505))
+
+## 3.9.0 (2021-08-02)
+
+* [bitnami/mongodb-sharded] numactl flag for numa hardware (#7083) ([fab2792](https://github.com/bitnami/charts/commit/fab2792662969543bff3a616efb272c938fe7ff4)), closes [#7083](https://github.com/bitnami/charts/issues/7083)
+
+## 3.8.6 (2021-08-01)
+
+* [bitnami/mongodb-sharded] Release 3.8.6 updating components versions ([3515638](https://github.com/bitnami/charts/commit/35156388b3fb3722a517ab1f319ae05b60fd9917))
+* [bitnami/several] Update READMEs (#7108) ([44961d9](https://github.com/bitnami/charts/commit/44961d9cdfae1b0d06808124c4b47e8adc3de146)), closes [#7108](https://github.com/bitnami/charts/issues/7108)
+
+## 3.8.5 (2021-07-30)
+
+* [bitnami/mongodb-sharded] Release 3.8.5 updating components versions ([cff5375](https://github.com/bitnami/charts/commit/cff5375fad7b173a5de22c9094e60e84f030a43d))
+
+## 3.8.4 (2021-07-29)
+
+* [bitnami/mongodb-sharded] Fix helm error in arbiter statefulset (#7094) ([faf30c4](https://github.com/bitnami/charts/commit/faf30c45506b32d84a6764545232073b83257d00)), closes [#7094](https://github.com/bitnami/charts/issues/7094)
+
+## 3.8.3 (2021-07-28)
+
+* [bitnami/several] Fix default values and regenerate README (III) (#7000) ([4d4fe83](https://github.com/bitnami/charts/commit/4d4fe8320775922d17c88abc6e16d146a4dabdae)), closes [#7000](https://github.com/bitnami/charts/issues/7000)
+
+## 3.8.2 (2021-07-27)
+
+* [bitnami/several] Bump version and update READMEs (#7069) ([6340bff](https://github.com/bitnami/charts/commit/6340bff66f93c8c797bda3ca0842e4bf770059f1)), closes [#7069](https://github.com/bitnami/charts/issues/7069)
+
+## 3.8.1 (2021-07-27)
+
+* Replace strings with ™ in the README files (#7066) ([d298b49](https://github.com/bitnami/charts/commit/d298b4996da33c9580c2594e6dc8ad665dd0ebab)), closes [#7066](https://github.com/bitnami/charts/issues/7066)
+
+## 3.8.0 (2021-07-27)
+
+* [bitnami/several] Add diagnostic mode (#7012) ([f1344b0](https://github.com/bitnami/charts/commit/f1344b0361c5a93bf971d08f0fc64d3c8588cbf9)), closes [#7012](https://github.com/bitnami/charts/issues/7012)
+
+## 3.7.6 (2021-07-24)
+
+* [bitnami/mongodb-sharded] Release 3.7.6 updating components versions ([61c3eea](https://github.com/bitnami/charts/commit/61c3eea6e28ac463517ff43858f95759d30d6f37))
+
+## 3.7.5 (2021-07-22)
+
+* [bitnami/mongodb-sharded] Fix index in service per replicas context (#7033) ([59af7fd](https://github.com/bitnami/charts/commit/59af7fde250f37d713116563585b859eb9377a97)), closes [#7033](https://github.com/bitnami/charts/issues/7033)
+
+## 3.7.4 (2021-07-19)
+
+* [bitnami/mongodb-sharded] Release 3.7.4 updating components versions ([07c8e1f](https://github.com/bitnami/charts/commit/07c8e1f793bf2e664f1ab3db10822ccfd73e26fc))
+
+## 3.7.3 (2021-07-16)
+
+* [bitnami/*] Adapt values.yaml of MongoDB Sharded, Moodle and MXNet charts (#6901) ([7a0b468](https://github.com/bitnami/charts/commit/7a0b468e04a794695acc64510f1db9f850c4f866)), closes [#6901](https://github.com/bitnami/charts/issues/6901)
+
+## 3.7.2 (2021-07-15)
+
+* [bitnami/mongodb-sharded] Release 3.7.2 updating components versions ([c6915fe](https://github.com/bitnami/charts/commit/c6915fef08b3fb9da0e15a4247696719de8a68a6))
+
+## 3.7.1 (2021-07-07)
+
+* [bitnami/mongodb-sharded] Fix issue when setting a custom service name (#6829) ([ef3e26b](https://github.com/bitnami/charts/commit/ef3e26bf76738aecef55ee1edbd16d348f58e498)), closes [#6829](https://github.com/bitnami/charts/issues/6829)
+
+## 3.7.0 (2021-06-22)
+
+* [bitnami/mongodb-sharded] Enabled support for priorityClassName (#6706) ([a29650a](https://github.com/bitnami/charts/commit/a29650a8485bbfdfc5b584e1aea9e6ee3527b7d1)), closes [#6706](https://github.com/bitnami/charts/issues/6706)
+
+## 3.6.1 (2021-06-21)
+
+* [bitnami/mongodb-sharded] Release 3.6.1 updating components versions ([055f260](https://github.com/bitnami/charts/commit/055f26088070aefe4f4e6d128da4684f63b552aa))
+
+## 3.6.0 (2021-06-11)
+
+* [bitnami/mongodb-sharded] Added `dataNodeSelectorLoopId` and `dataNodeTolerationLoopId` to /shard/sh ([ccae74f](https://github.com/bitnami/charts/commit/ccae74f2316acf0fe879b10a914739047a874178)), closes [#6601](https://github.com/bitnami/charts/issues/6601)
+
+## 3.5.0 (2021-06-09)
+
+* [bitnami/mongodb-sharded] add per mongos replica service support (#6569) ([f1fb7ac](https://github.com/bitnami/charts/commit/f1fb7ac15e144a0ae2037898aabde943cbd678f0)), closes [#6569](https://github.com/bitnami/charts/issues/6569)
+
+## 3.4.7 (2021-05-28)
+
+* [bitnami/mongodb-sharded] Release 3.4.7 updating components versions ([3f352df](https://github.com/bitnami/charts/commit/3f352dff97d8d0de167c00a2b3efe5a543876e3a))
+
+## 3.4.6 (2021-05-07)
+
+* [bitnami/mongodb-sharded] Release 3.4.6 updating components versions ([08c37c7](https://github.com/bitnami/charts/commit/08c37c77b034c4f71d9a7486142faf91b5307cac))
+
+## 3.4.5 (2021-04-07)
+
+* [bitnami/mongodb-sharded] Release 3.4.5 updating components versions ([9aeb25d](https://github.com/bitnami/charts/commit/9aeb25df7738e51ab2843b36790fc656e9e9b0ac))
+
+## 3.4.4 (2021-03-19)
+
+* [bitnami/mongodb-sharded] Release 3.4.4 updating components versions ([02a3f8d](https://github.com/bitnami/charts/commit/02a3f8dc6f7d79008cba0d302f809271460013c0))
+
+## 3.4.3 (2021-03-14)
+
+* [bitnami/mongodb-sharded] Release 3.4.3 updating components versions ([ff9c87b](https://github.com/bitnami/charts/commit/ff9c87bc7323be139dd099d7b5953e7d5ac40e16))
+
+## 3.4.2 (2021-03-08)
+
+* [bitnami/mongodb-sharded] Add affinity option dataNodeLoopId to arbiter statefulset (#5680) ([c5001d3](https://github.com/bitnami/charts/commit/c5001d384329da27530054045427a56255bf4ee4)), closes [#5680](https://github.com/bitnami/charts/issues/5680)
+
+## 3.4.1 (2021-03-04)
+
+* [bitnami/*] Remove minideb mentions (#5677) ([870bc4d](https://github.com/bitnami/charts/commit/870bc4dba1fc3aa55dd157da6687b25e8d352206)), closes [#5677](https://github.com/bitnami/charts/issues/5677)
+
+## 3.4.0 (2021-02-12)
+
+* [bitnami/mongodb-sharded] Add metrics.containerPort (#5482) ([d99d0c8](https://github.com/bitnami/charts/commit/d99d0c88965769f11e1e2a08633181dee0ee1456)), closes [#5482](https://github.com/bitnami/charts/issues/5482)
+
+## 3.3.5 (2021-02-12)
+
+* [bitnami/mongodb-sharded] Release 3.3.5 updating components versions ([bdd6032](https://github.com/bitnami/charts/commit/bdd6032e353502d145e044afb877a0ba2afbd6b9))
+
+## 3.3.4 (2021-02-11)
+
+* [bitnami/sharded,fluentd,kibana] Unify global section in values (#5458) ([05bcf10](https://github.com/bitnami/charts/commit/05bcf103092567a3cfa5475fdd5ad8e5c874e564)), closes [#5458](https://github.com/bitnami/charts/issues/5458)
+
+## 3.3.3 (2021-02-09)
+
+* [bitnami/mongodb-sharded] Release 3.3.3 updating components versions ([a23f2d5](https://github.com/bitnami/charts/commit/a23f2d5ea5a566b0911e45e48dbd27d764b50473))
+
+## 3.3.2 (2021-02-09)
+
+* Add registered icon to all the MongoDB references (#5426) ([56f2088](https://github.com/bitnami/charts/commit/56f20884267e56175695b2917f7704b9510f4ba6)), closes [#5426](https://github.com/bitnami/charts/issues/5426)
+
+## 3.3.1 (2021-02-05)
+
+* [bitnami/mongodb-sharded] Release 3.3.1 updating components versions ([8408c4c](https://github.com/bitnami/charts/commit/8408c4cfc1c4cecc4f16b7ad6e75b506c38152f9))
+
+## 3.3.0 (2021-01-28)
+
+* [bitnami/mongodb-sharded] Add hostAliases (#5272) ([a632890](https://github.com/bitnami/charts/commit/a6328900b1ef664bc9bba51c1b46a5f589ff72dc)), closes [#5272](https://github.com/bitnami/charts/issues/5272)
+
+## 3.2.13 (2021-01-26)
+
+* [bitnami/mongodb-sharded] Release 3.2.13 updating components versions ([078235e](https://github.com/bitnami/charts/commit/078235e5a45897ee42f6854d187afbda60b359aa))
+
+## 3.2.12 (2021-01-22)
+
+* [bitnami/mongodb-sharded] Release 3.2.12 updating components versions ([da21d90](https://github.com/bitnami/charts/commit/da21d90ee1ac4cb1cf32e8de6780867b8280341e))
+
+## 3.2.11 (2021-01-19)
+
+* [bitnami/*] Change helm version in the prerequisites (#5090) ([c5e67a3](https://github.com/bitnami/charts/commit/c5e67a388743cbee28439d2cabca27884b9daf97)), closes [#5090](https://github.com/bitnami/charts/issues/5090)
+* [bitnami/mongodb-sharded] Drop values-production.yaml support (#5120) ([22e4ba3](https://github.com/bitnami/charts/commit/22e4ba34f76398ce9735e27299e1e037046dc445)), closes [#5120](https://github.com/bitnami/charts/issues/5120)
+
+## 3.2.10 (2021-01-11)
+
+* [bitnami/mongodb-sharded] Add again removed affinity option (dataNodeLoopId) (#4934) ([5d25492](https://github.com/bitnami/charts/commit/5d25492a7e1b78dc954c6a5e88914ffeb502d165)), closes [#4934](https://github.com/bitnami/charts/issues/4934)
+* [bitnami/mongodb-sharded] Release 3.2.10 updating components versions ([d504676](https://github.com/bitnami/charts/commit/d504676bbadaf70d21f41c6a0c45d869893fb542))
+
+## 3.2.9 (2021-01-11)
+
+* [bitnami/mongodb-sharded] Release 3.2.9 updating components versions ([c7291db](https://github.com/bitnami/charts/commit/c7291dbc6ecc3eed53cfb812aef63924cabb609d))
+
+## 3.2.8 (2021-01-10)
+
+* Fix probe error messages (#4876) ([79889dc](https://github.com/bitnami/charts/commit/79889dc9fd37828317d4dc1698bcd5e428510665)), closes [#4876](https://github.com/bitnami/charts/issues/4876)
+
+## 3.2.7 (2020-12-23)
+
+* [bitnami/mongodb-sharded] fix for #4536 (#4766) ([00927f0](https://github.com/bitnami/charts/commit/00927f0a12eca8e6f9b9379fc6944d56a568dc49)), closes [#4536](https://github.com/bitnami/charts/issues/4536) [#4766](https://github.com/bitnami/charts/issues/4766)
+* [bitnami/mongodb-sharded] Fix missing chart name & values in values-production.yaml (#4812) ([dd20da4](https://github.com/bitnami/charts/commit/dd20da4d4a939071c0acd9b57f0586ac51d5ac24)), closes [#4812](https://github.com/bitnami/charts/issues/4812)
+
+## 3.2.6 (2020-12-22)
+
+* [bitnami/mongodb-sharded] Release 3.2.6 updating components versions ([bd037e2](https://github.com/bitnami/charts/commit/bd037e2bcf01861b2e14521cf4c5e25bea98f585))
+
+## 3.2.5 (2020-12-16)
+
+* [bitnami/mongodb-sharded] Release 3.2.5 updating components versions ([6281d55](https://github.com/bitnami/charts/commit/6281d556884f2abe6ff377db928c28f6983a56c8))
+
+## 3.2.4 (2020-12-14)
+
+* [bitnami/*] fix typos (#4699) ([49adc63](https://github.com/bitnami/charts/commit/49adc63b672da976c55af2e077aa5648a357b77f)), closes [#4699](https://github.com/bitnami/charts/issues/4699)
+* [bitnami/mongodb-sharded] Changed mongos kind to statefulset (#4629) ([a3c4f5e](https://github.com/bitnami/charts/commit/a3c4f5ebc4db569a102e461274f57b60c1b5b856)), closes [#4629](https://github.com/bitnami/charts/issues/4629)
+
+## 3.2.3 (2020-12-11)
+
+* [bitnami/mongodb-sharded] fix for ConfigMaps (#4688) ([c9feab4](https://github.com/bitnami/charts/commit/c9feab4c1ed294412ae1a98e2d92a62930b007e5)), closes [#4688](https://github.com/bitnami/charts/issues/4688)
+
+## 3.2.2 (2020-12-11)
+
+* [bitnami/*] Update dependencies (#4694) ([2826c12](https://github.com/bitnami/charts/commit/2826c125b42505f28431301e3c1bbe5366e47a01)), closes [#4694](https://github.com/bitnami/charts/issues/4694)
+
+## 3.2.1 (2020-12-11)
+
+* [bitnami/mongodb-sharded] fix for #4684 (#4685) ([0a25172](https://github.com/bitnami/charts/commit/0a251728055c57025a5a642e964e989e7af21308)), closes [#4684](https://github.com/bitnami/charts/issues/4684) [#4685](https://github.com/bitnami/charts/issues/4685)
+
+## 3.2.0 (2020-12-09)
+
+* [bitnami/mongodb-sharded] Use PodMonitor instead of ServiceMonitor to configure Prom. Operator to sc ([80d2bee](https://github.com/bitnami/charts/commit/80d2beeb75436e21781257ab1107a3d9121277a7)), closes [#4662](https://github.com/bitnami/charts/issues/4662)
+
+## 3.1.1 (2020-12-02)
+
+* [bitnami/mongodb-sharded] Add missing extraEnvs to statefulsets (#4573) ([b51fb8a](https://github.com/bitnami/charts/commit/b51fb8aa512e0c9c2d6447b4fe1c52698259e811)), closes [#4573](https://github.com/bitnami/charts/issues/4573)
+
+## 3.1.0 (2020-11-26)
+
+* [bitnami/*] Affinity based on common presets (v) (#4494) ([f5abfb8](https://github.com/bitnami/charts/commit/f5abfb8e423872199518733bde449d57392eab0a)), closes [#4494](https://github.com/bitnami/charts/issues/4494)
+
+## 3.0.4 (2020-11-24)
+
+* [bitnami/mongodb-sharded] Delete initScripts from mongos deployment (#4458) ([be58a83](https://github.com/bitnami/charts/commit/be58a83cdc91b53d998a4deeda9fd3360db64053)), closes [#4458](https://github.com/bitnami/charts/issues/4458)
+* Update README.md ([c0555c1](https://github.com/bitnami/charts/commit/c0555c1c11728a930597af2fa10ba7682331c57b))
+
+## 3.0.3 (2020-11-17)
+
+* [bitnami/mongodb-sharded] Release 3.0.3 updating components versions ([1c60534](https://github.com/bitnami/charts/commit/1c60534e750fb1e849f419e884ceb79e3418170e))
+
+## 3.0.2 (2020-11-14)
+
+* [bitnami/mongodb-sharded] Release 3.0.2 updating components versions ([d144144](https://github.com/bitnami/charts/commit/d14414463732130f804620ceb085459d0597baec))
+
+## 3.0.1 (2020-11-13)
+
+* [bitnami/mongodb-sharded] Release 3.0.1 updating components versions ([ec78a6f](https://github.com/bitnami/charts/commit/ec78a6fa86b3bc3959e1aa3d170c817fd2764842))
+
+## 3.0.0 (2020-11-11)
+
+* [bitnami/*] Include link to Troubleshootin guide on README.md (#4136) ([c08a20e](https://github.com/bitnami/charts/commit/c08a20e3db004215383004ff023a73fcc2522e72)), closes [#4136](https://github.com/bitnami/charts/issues/4136)
+* [bitnami/mongodb-sharded] Major version. Adapt Chart to apiVersion: v2 (#4268) ([a72cfea](https://github.com/bitnami/charts/commit/a72cfea4a298c4d107c3cefd4f30eb0346e88892)), closes [#4268](https://github.com/bitnami/charts/issues/4268)
+
+## 2.1.5 (2020-10-27)
+
+* [bitnami/mongodb-sharded] fix: do not create secret when existingSecret (#4084) ([c4e157c](https://github.com/bitnami/charts/commit/c4e157c06017bbd47ea40172881bf1cf1db31941)), closes [#4084](https://github.com/bitnami/charts/issues/4084)
+
+## 2.1.4 (2020-10-21)
+
+* [bitnami/mongodb-sharded] Release 2.1.4 updating components versions ([3f96b12](https://github.com/bitnami/charts/commit/3f96b120eb4bb7c6792231f2da30c8eb3e47a165))
+
+## 2.1.3 (2020-10-01)
+
+* [bitnami/mongodb-sharded] Add annotation to service (#3709) ([97c3ca4](https://github.com/bitnami/charts/commit/97c3ca4fc9a197d88fb0b6fed16c53302b7a2a71)), closes [#3709](https://github.com/bitnami/charts/issues/3709) [#3695](https://github.com/bitnami/charts/issues/3695)
+* bump chart version number (#3828) ([ad31ac7](https://github.com/bitnami/charts/commit/ad31ac720ebc10e7b3b17f84b0b5813cdb90110f)), closes [#3828](https://github.com/bitnami/charts/issues/3828)
+
+## 2.1.2 (2020-09-21)
+
+* [bitnami/mongodb-sharded] Release 2.1.2 updating components versions ([3b91082](https://github.com/bitnami/charts/commit/3b910825b044d69ddb8438d0bc1793c421de10c1))
+
+## 2.1.1 (2020-09-09)
+
+* [bitnami/metrics-server] Add source repo (#3577) ([1ed12f9](https://github.com/bitnami/charts/commit/1ed12f96af75322b46afdb2b3d9907c11b13f765)), closes [#3577](https://github.com/bitnami/charts/issues/3577)
+* [bitnami/mongodb-sharded] Release 2.1.1 updating components versions ([186df7a](https://github.com/bitnami/charts/commit/186df7ad5855ddd65ac6e8f55dadfc2e158ab08f))
+
+## 2.1.0 (2020-09-01)
+
+* [bitnami/mongodb-sharded] Add ServiceAccount (#3432) (#3442) ([32bf844](https://github.com/bitnami/charts/commit/32bf8448baa08c14b80b834efa58b071d1a21963)), closes [#3432](https://github.com/bitnami/charts/issues/3432) [#3442](https://github.com/bitnami/charts/issues/3442)
+
+## 2.0.0 (2020-08-28)
+
+* Update Chart.yaml (#3541) ([6b8bff3](https://github.com/bitnami/charts/commit/6b8bff3ddf2e4fdba6fafdf095750cc351edd79f)), closes [#3541](https://github.com/bitnami/charts/issues/3541)
+
+## 1.6.7 (2020-08-27)
+
+* [bitnami/mongodb-sharded] Add notes to upgrade to 2.0.0 (#3512) ([614949f](https://github.com/bitnami/charts/commit/614949fff2e5a2fa96ca20c9a02dbff7498f0476)), closes [#3512](https://github.com/bitnami/charts/issues/3512)
+* [bitnami/mongodb-sharded] Release 1.6.7 updating components versions ([1831136](https://github.com/bitnami/charts/commit/18311369fa24d3c220ba1d4386d023cd2dd1f923))
+
+## 1.6.6 (2020-08-26)
+
+* [bitnami/mongodb-sharded] Update example for multiple variables in --set (#3500) ([b0d78f1](https://github.com/bitnami/charts/commit/b0d78f1c93c8d459e21757652b30eac7fdaeb9f0)), closes [#3500](https://github.com/bitnami/charts/issues/3500)
+
+## 1.6.5 (2020-08-21)
+
+* [bitnami/mongodb-sharded] Release 1.6.5 updating components versions ([a3f7a07](https://github.com/bitnami/charts/commit/a3f7a078a4d19878e0837d406d59939671307708))
+
+## 1.6.4 (2020-08-19)
+
+* update ReadME by correcting configs parms (#3458) ([16aa05a](https://github.com/bitnami/charts/commit/16aa05a3f3d7c238cdf1254061caeeb482f4dd0c)), closes [#3458](https://github.com/bitnami/charts/issues/3458)
+
+## 1.6.3 (2020-08-07)
+
+* [bitnami/mongodb-sharded] Release 1.6.3 updating components versions ([72250e1](https://github.com/bitnami/charts/commit/72250e13a3f409d876144ff5b0182b4ae7debc1d))
+
+## 1.6.2 (2020-08-05)
+
+* [bitnami/*] Fix TL;DR typo in READMEs (#3280) ([3d7ab40](https://github.com/bitnami/charts/commit/3d7ab406fecd64f1af25f53e7d27f03ec95b29a4)), closes [#3280](https://github.com/bitnami/charts/issues/3280)
+* [bitnami/mongodb-sharded] Release 1.6.2 updating components versions ([32b5be3](https://github.com/bitnami/charts/commit/32b5be3e66cc15bb33e0309394efaac7a530bb3f))
+
+## 1.6.1 (2020-07-28)
+
+* [bitnami/mongodb-sharded] Fix default image and tag in README.md. (#3184) ([06ffb6e](https://github.com/bitnami/charts/commit/06ffb6ec8ddbaecaf782dcf5e5ca22c5e9936266)), closes [#3184](https://github.com/bitnami/charts/issues/3184)
+
+## 1.6.0 (2020-07-27)
+
+* [bitnami/mongodb-sharded] add podManagementPolicy config for statefulsets to enable parallel startup ([80fdb51](https://github.com/bitnami/charts/commit/80fdb51b501324c284955d7a5a23635d57da2ce3)), closes [#3234](https://github.com/bitnami/charts/issues/3234)
+
+## 1.5.9 (2020-07-27)
+
+* Fix bad scope (#3215) ([4b2fb6a](https://github.com/bitnami/charts/commit/4b2fb6a7c246699060f3950a8163421f3b4fe18e)), closes [#3215](https://github.com/bitnami/charts/issues/3215)
+* Fix missing templating to generate initcontainers for mongodb-sharded components (#3211) ([75b1877](https://github.com/bitnami/charts/commit/75b1877e0e85daf8ed09216e43cf723a3cdae270)), closes [#3211](https://github.com/bitnami/charts/issues/3211)
+
+## 1.5.8 (2020-07-27)
+
+* Fix bad cm name ref (#3229) ([ab3367a](https://github.com/bitnami/charts/commit/ab3367a104538acc7be2d15d44724af6f2b6d6cf)), closes [#3229](https://github.com/bitnami/charts/issues/3229)
+
+## 1.5.7 (2020-07-22)
+
+* [bitnami/mongodb-sharded] Release 1.5.7 updating components versions ([442635c](https://github.com/bitnami/charts/commit/442635c30773d0c9d56cf3cc01a011266cb97680))
+
+## 1.5.6 (2020-07-21)
+
+* [bitnami/all] Add categories (#3075) ([63bde06](https://github.com/bitnami/charts/commit/63bde066b87a140fab52264d0522401ab3d63509)), closes [#3075](https://github.com/bitnami/charts/issues/3075)
+* [bitnami/mongodb-sharded] Fix initscriptsCM and initScriptsSecret usage (#3002) ([b44b082](https://github.com/bitnami/charts/commit/b44b08288e1f94c43b07dc60c0d608c0cfbce93a)), closes [#3002](https://github.com/bitnami/charts/issues/3002)
+
+## 1.5.5 (2020-07-03)
+
+* [bitnami/mongodb-sharded] Release 1.5.5 updating components versions ([2e34c04](https://github.com/bitnami/charts/commit/2e34c04b3099c905c32758a0cb9da9680e864337))
+
+## 1.5.4 (2020-07-03)
+
+* fix PPRIMARY in ENV VARS (#3022) ([a9a2b64](https://github.com/bitnami/charts/commit/a9a2b64a358b0b78b92e52d4a5947ecacbd49506)), closes [#3022](https://github.com/bitnami/charts/issues/3022)
+
+## 1.5.3 (2020-06-30)
+
+* [bitnami/mongodb-sharded] Release 1.5.3 updating components versions ([b8faa7f](https://github.com/bitnami/charts/commit/b8faa7ffd32fd5286808999dc2509f10c6a52624))
+
+## 1.5.2 (2020-06-30)
+
+* [bitnami/mongodb-sharded] Adapt env. variables (#2969) ([00f8fce](https://github.com/bitnami/charts/commit/00f8fcea69a0fa357ac63a6cc9b52b3776303bf5)), closes [#2969](https://github.com/bitnami/charts/issues/2969)
+
+## 1.5.1 (2020-06-24)
+
+* [bitnami/mongodb-sharded] Release 1.5.1 updating components versions ([bf88b0b](https://github.com/bitnami/charts/commit/bf88b0beb7b1d57f8c56f167727488cac5953af0))
+
+## 1.5.0 (2020-06-24)
+
+* [bitnami/mongodb-sharded] Allow only deploying mongos. (#2901) ([ea945f2](https://github.com/bitnami/charts/commit/ea945f2f5ccfcecb62ae26c88944246ff3c0ed21)), closes [#2901](https://github.com/bitnami/charts/issues/2901)
+
+## 1.4.4 (2020-06-15)
+
+* [bitnami/mongodb-sharded] Release 1.4.4 updating components versions ([d917f8f](https://github.com/bitnami/charts/commit/d917f8fecdc357cb686b439e13c79fcefaadac2b))
+
+## 1.4.3 (2020-06-15)
+
+* [bitnami/mongodb-sharded] Fix metric collection when using a password file (#2800) ([896208e](https://github.com/bitnami/charts/commit/896208ea4fd121c7b01be79cefb30c3e3f9cdc08)), closes [#2800](https://github.com/bitnami/charts/issues/2800)
+
+## 1.4.2 (2020-06-11)
+
+* [bitnami/mongodb-sharded] Release 1.4.2 updating components versions ([cdaf6b1](https://github.com/bitnami/charts/commit/cdaf6b123d05aca3b5dca82618e786711948b97b))
+* [bitnami/several] Add instructions about how to use different branches (#2785) ([c315cb0](https://github.com/bitnami/charts/commit/c315cb078a4cef97ff53cf2066b34add3f2926ba)), closes [#2785](https://github.com/bitnami/charts/issues/2785)
+
+## 1.4.1 (2020-06-04)
+
+* [bitnami/mongodb-sharded] Release 1.4.1 updating components versions ([dc4ad22](https://github.com/bitnami/charts/commit/dc4ad223c68c87f066a498f72f1b1c6a22802519))
+
+## 1.4.0 (2020-06-04)
+
+* mongodb-sharded: Add pod disruption budgets (#2663) ([071c4df](https://github.com/bitnami/charts/commit/071c4dfe66f060306595ba6e3e68be24a401f290)), closes [#2663](https://github.com/bitnami/charts/issues/2663)
+
+## 1.3.3 (2020-06-02)
+
+* [bitnami/mongodb-sharded] Release 1.3.3 updating components versions ([980b6c8](https://github.com/bitnami/charts/commit/980b6c8e2b8376680ce1c5ffa68fcd013950ce9b))
+
+## 1.3.2 (2020-05-21)
+
+* [bitnami/mongodb-sharded] Release 1.3.2 updating components versions ([409ad4d](https://github.com/bitnami/charts/commit/409ad4d10fa150d0f5c8563ecf8e746f533fecf7))
+* update bitnami/common to be compatible with helm v2.12+ (#2615) ([c7751eb](https://github.com/bitnami/charts/commit/c7751eb5764e468e1854b58a1b8491d2b13e0a4a)), closes [#2615](https://github.com/bitnami/charts/issues/2615)
+
+## 1.3.1 (2020-04-29)
+
+* [bitnami/mongodb-sharded] Release 1.3.1 updating components versions ([a0f9f97](https://github.com/bitnami/charts/commit/a0f9f97ed0a05ad6e26ee6ad492326830afb9f67))
+
+## 1.3.0 (2020-04-29)
+
+* [bitnami/mongodb-sharded] Add metrics exporter for shard arbiter (#2424) ([ad91d98](https://github.com/bitnami/charts/commit/ad91d9802bb79e835308e0c172a23aba7a383fd4)), closes [#2424](https://github.com/bitnami/charts/issues/2424)
+
+## 1.2.0 (2020-04-24)
+
+* [bitnami/mongodb-sharded] add sessionAffinity setting for k8s service (#2375) ([105b955](https://github.com/bitnami/charts/commit/105b955611cd3098eda0c40bc860daac87acab5a)), closes [#2375](https://github.com/bitnami/charts/issues/2375)
+
+## 1.1.6 (2020-04-23)
+
+* [bitnami/mongodb-sharded] Release 1.1.6 updating components versions ([5e268b3](https://github.com/bitnami/charts/commit/5e268b3cb3c6daa31b5fd83c73eb0f2618e6d8ec))
+
+## 1.1.5 (2020-04-22)
+
+* [bitnami/mongodb-sharded] Release 1.1.5 updating components versions ([8832a7f](https://github.com/bitnami/charts/commit/8832a7fb471a44c0d1e3b725dd9118c7adc2e697))
+
+## 1.1.4 (2020-04-17)
+
+* [bitnami/mongodb-sharded] Release 1.1.4 updating components versions ([7f2ad96](https://github.com/bitnami/charts/commit/7f2ad96c41d2819ad943f73d9b1f2d4fd4ce12ea))
+
+## 1.1.3 (2020-04-16)
+
+* [bitnami/mongodb-sharded] Release 1.1.3 updating components versions ([49d0bef](https://github.com/bitnami/charts/commit/49d0befe2d9631d1a479eb83edb3be9ff90ce066))
+
+## 1.1.2 (2020-04-14)
+
+* [bitnami/mongodb-sharded ]- Add full support of sidecar containers. (#2229) ([75aa09a](https://github.com/bitnami/charts/commit/75aa09ab6c444431e98398482870f48445edf17f)), closes [#2229](https://github.com/bitnami/charts/issues/2229)
+
+## 1.1.1 (2020-04-06)
+
+* [bitnami/mongodb-sharded] Release 1.1.1 updating components versions ([4781a8c](https://github.com/bitnami/charts/commit/4781a8c12e8ee04e2da925e1f07cccf59f04010f))
+
+## 1.1.0 (2020-04-06)
+
+* [bitnami/mongodb-sharded] add shard index as a label (#2166) ([8d676ab](https://github.com/bitnami/charts/commit/8d676ab2873639be8593a6e4cc75e7c63c48bbdd)), closes [#2166](https://github.com/bitnami/charts/issues/2166)
+
+## 1.0.17 (2020-04-03)
+
+* [bitnami/mongodb-sharded] Release 1.0.17 updating components versions ([283256b](https://github.com/bitnami/charts/commit/283256b2173d649b117de18d22968230b87d9f34))
+
+## 1.0.16 (2020-03-26)
+
+* [bitnami/mongodb-sharded] Release 1.0.16 updating components versions ([bb28a54](https://github.com/bitnami/charts/commit/bb28a547637d99c1c621659ed78331028f0422d5))
+
+## 1.0.15 (2020-03-24)
+
+* [bitnami/mongodb-sharded] Release 1.0.15 updating components versions ([e0bfee9](https://github.com/bitnami/charts/commit/e0bfee916c9294cf8228dd62ed07f5fdb675db3e))
+* [bitnami/mongodb] Issue 2096. Encode @ : in username / password when connect to mongo (#2099) ([39ec8d6](https://github.com/bitnami/charts/commit/39ec8d6dec88339da666abf036c78e7fdd41a3cd)), closes [#2099](https://github.com/bitnami/charts/issues/2099)
+
+## 1.0.14 (2020-03-12)
+
+* [bitnami/mongodb-sharded] Release 1.0.14 updating components versions ([20ecfbd](https://github.com/bitnami/charts/commit/20ecfbd4de30b473d91059d409830c0fc705074a))
+
+## 1.0.13 (2020-03-11)
+
+* Move charts from upstreamed folder to bitnami (#2032) ([a0e44f7](https://github.com/bitnami/charts/commit/a0e44f7d6a10b8b5643186130ea420887cb72c7c)), closes [#2032](https://github.com/bitnami/charts/issues/2032)
+
+## 1.0.12 (2020-03-10)
+
+* [bitnami/mongodb-sharded] Release 1.0.12 updating components versions ([82fb046](https://github.com/bitnami/charts/commit/82fb0462333fe5ee5fd7ecceb4d95bde731f6828))
+
+## 1.0.11 (2020-02-26)
+
+* [bitnami/mongodb-sharded] Release 1.0.11 updating components versions ([394a1a5](https://github.com/bitnami/charts/commit/394a1a5fef8d05b10dc1e7507ac393e0667f2930))
+
+## 1.0.10 (2020-02-25)
+
+* [bitnami/mongodb-sharded] Fix port for service type LoadBalancer in NOTES.txt (#1972) ([3d0fcb8](https://github.com/bitnami/charts/commit/3d0fcb89530bb752018e8c74ea996109b66adf1a)), closes [#1972](https://github.com/bitnami/charts/issues/1972)
+
+## 1.0.9 (2020-02-25)
+
+* [bitnami/mongodb-sharded] Template kubectl run in NOTES.txt to take registry/repo overrides into acc ([4ca5d7c](https://github.com/bitnami/charts/commit/4ca5d7caa6e4250902660b84d5728da14698fa1b)), closes [#1967](https://github.com/bitnami/charts/issues/1967)
+
+## 1.0.8 (2020-02-18)
+
+* [bitnami/mongodb-sharded] Release 1.0.8 updating components versions ([3bae98b](https://github.com/bitnami/charts/commit/3bae98b46af8d0534a7f1aefff0a08b5be06152b))
+* [bitnami/several] Adapt READMEs and helpers to Helm 3 (#1911) ([40ee57c](https://github.com/bitnami/charts/commit/40ee57cf5164717357e1627b55bf25f59c40fbd1)), closes [#1911](https://github.com/bitnami/charts/issues/1911)
+
+## 1.0.7 (2020-02-10)
+
+* [bitnami/several] Replace stretch by buster in minideb secondary containers (#1900) ([678febc](https://github.com/bitnami/charts/commit/678febc237594606f2505ba98c651a8ab8f484ab)), closes [#1900](https://github.com/bitnami/charts/issues/1900)
+
+## 1.0.6 (2020-02-06)
+
+* [bitnami/mongodb-sharded] Remove unused vars (#1883) ([9697e3d](https://github.com/bitnami/charts/commit/9697e3d4488a962f9ba548bc9f8696cd93e040e3)), closes [#1883](https://github.com/bitnami/charts/issues/1883)
+
+## 1.0.5 (2020-01-24)
+
+* [bitnami/mongodb-sharded] Release 1.0.5 updating components versions ([119236e](https://github.com/bitnami/charts/commit/119236ef7e239d23d76c7ecbe8599bd634e6620e))
+* Update README.md ([c6ee209](https://github.com/bitnami/charts/commit/c6ee209d14c3eb9048e888a1c98df8274ca493e5))
+
+## 1.0.4 (2020-01-15)
+
+* Fix install instructions for mongodb-sharded ([266f3dd](https://github.com/bitnami/charts/commit/266f3dd6dacef52751c19ccb56c30d6356f3aeb8))
+
+## 1.0.3 (2020-01-15)
+
+* [bitnami/mongodb-sharded] Release 1.0.3 updating components versions ([cae86bc](https://github.com/bitnami/charts/commit/cae86bcffe5c8ad89b0fb6c79c958007c3c48b57))
+
+## 1.0.2 (2019-12-17)
+
+* [bitnami/mongodb-sharded] Release 1.0.2 updating components versions ([f9c8264](https://github.com/bitnami/charts/commit/f9c8264c1ed4722e1d4f09664951ee14423f543a))
+
+## 1.0.1 (2019-12-06)
+
+* [bitnami/mongodb-sharded] Release 1.0.1 updating components versions ([91d26b4](https://github.com/bitnami/charts/commit/91d26b4be5db93c8ef82de0cb8627239085970aa))
+
+## 1.0.0 (2019-12-03)
+
+* [bitnami/mongodb-sharded] Set persistence settings separate in data nodes and config servers ([8d89bbe](https://github.com/bitnami/charts/commit/8d89bbe37309b02d1664cc70f9cd73b901f82f47))
+
+## 0.1.4 (2019-12-03)
+
+* [bitnami/mongodb-sharded] Fix incorrect resource allocation in data nodes ([738d6fb](https://github.com/bitnami/charts/commit/738d6fbc8ae2ad801a4200849840780c8caa150f))
+
+## 0.1.3 (2019-11-26)
+
+* [bitnami/mongodb-sharded] Fix system log verbosity ([47740e7](https://github.com/bitnami/charts/commit/47740e7226bc67910f04fd98f770d6ee04aec789))
+
+## 0.1.2 (2019-11-26)
+
+* [bitnami/mongodb-sharded] 0.1.1 -> 0.1.2 ([6d7c776](https://github.com/bitnami/charts/commit/6d7c77698f7f51602b45b539c4f560a5fdfdbbde))
+* Use named port for mongodb-sharded ServiceMonitor ([80e1c4d](https://github.com/bitnami/charts/commit/80e1c4d2ff93973dcd8a4c6241cf55a8de4cfa3d))
+
+## 0.1.1 (2019-11-08)
+
+* [bitnami/mongodb-sharded] Fix incorrect nindent in volumePermissions ([8982222](https://github.com/bitnami/charts/commit/89822223131e020690d250bd4c2c0959051058b5))
+* Add image pull secrets ([2fdf854](https://github.com/bitnami/charts/commit/2fdf854d1b87a2493d4d7be694c388cb6c0e0ec9))
+* Add runAsNonRoot ([0e28779](https://github.com/bitnami/charts/commit/0e287798f4c276c8db2c00ab12a0dffd60d5503e))
+* change tag ([a07c313](https://github.com/bitnami/charts/commit/a07c313f0433bf1a7227e2a2f61a55e4f7a514ef))
+* Typo ([ba7d2df](https://github.com/bitnami/charts/commit/ba7d2df3a9dbc14d7dbf5160475b737414288255))
+* Update values-production.yaml ([174b16a](https://github.com/bitnami/charts/commit/174b16a97ed69762316b7f558b43170cbfb4839e))
+* Update values.yaml ([a384f62](https://github.com/bitnami/charts/commit/a384f6280e471493a0c6e4c675a73514b52a1586))
+* Use 4.0 branch to be consistent ([f5d5ab3](https://github.com/bitnami/charts/commit/f5d5ab374999c351fb2065150b42bc4e2166ccfd))
+
+## 0.1.0 (2019-10-31)
+
+* Apply suggestions ([b97e655](https://github.com/bitnami/charts/commit/b97e655946c6d1b938e1ceace5f2bbc486f4817a))
+* Fix notes ([e0924cc](https://github.com/bitnami/charts/commit/e0924cc5d5f93e14ec9183bccf9831661411df20))
+* Production conf explanation ([6b3310b](https://github.com/bitnami/charts/commit/6b3310b1f5cf2ebfff73c4212445a894836bef0a))
+* values prod ([e921362](https://github.com/bitnami/charts/commit/e921362977983da54a23cb80d1dc7a49b3ecd215))
+
+## 0.0.1 (2019-10-30)
+
+* [bitnami/mongodb-sharded] Add MongoDB Sharded chart ([99c45a7](https://github.com/bitnami/charts/commit/99c45a7d3940d7b5cabb38b21a6a61b2e911f9aa))
diff --git a/solution-base/mongodb/charts/mongodb-sharded/Chart.yaml b/solution-base/mongodb/charts/mongodb-sharded/Chart.yaml
index 2a02d3f9bb..57ec1e5052 100644
--- a/solution-base/mongodb/charts/mongodb-sharded/Chart.yaml
+++ b/solution-base/mongodb/charts/mongodb-sharded/Chart.yaml
@@ -1,3 +1,6 @@
+# Copyright Broadcom, Inc. All Rights Reserved.
+# SPDX-License-Identifier: APACHE-2.0
+
annotations:
category: Database
images: |
diff --git a/solution-base/mongodb/how_to_upgrade.md b/solution-base/mongodb/how_to_upgrade.md
index 7778e33b7a..ac3717bd2b 100644
--- a/solution-base/mongodb/how_to_upgrade.md
+++ b/solution-base/mongodb/how_to_upgrade.md
@@ -2,49 +2,65 @@
## Overview
-Upgrading MongoDB sharded involves several steps to ensure a smooth transition
-to the new version. Below is a structured guide to follow for a successful
-upgrade (note that all along we will be taking as an example the upgrade from
-MongoDB 8.0.10 to 9.3.6):
+The `mongodb-sharded` Helm chart is vendored from the `bitnami/charts`
+GitHub repository via `git subtree`. Bitnami stopped publishing
+`mongodb-sharded` OCI chart artifacts in August 2025 (see
+[bitnami/charts#35164](https://github.com/bitnami/charts/issues/35164));
+the chart source on GitHub is still updated and tagged for every
+release, and is now the authoritative source for new versions.
+
+Our local modifications live as **ordinary git commits on top of the
+subtree merge**, not as separate `.patch` files. Future upgrades merge
+the new upstream via `git subtree merge --squash`, which produces real
+three-way merge conflicts where upstream has touched lines our local
+commits modified.
## Upgrade steps
-1. Update your local view of the helm charts: `helm repo update bitnami`.
-You may also reinstall it with
-`helm repo remove bitnami && helm repo add bitnami https://charts.bitnami.com/bitnami`.
-
-2. Check for all available versions of the chart using
-`helm search repo bitnami/mongodb-sharded --versions` to check the
-configuration values for a specified version:
-`helm show values --version 9.3.6 bitnami/mongodb-sharded`.
-
-3. Bump mongo version in `solution-base/deps.yaml` files. The current version
-can be found in
-`https://github.com/bitnami/charts/blob/main/bitnami/mongodb-sharded/Chart.yaml`.
-
-4. Bump mongodb-sharded chart version : `CHART_MONGO_SHARDED_VERSION` in the
-`solution-base/mongodb/Makefile` file (e.g. `CHART_MONGO_SHARDED_VERSION:="9.3.6"`).
-This version can be found from the output of the above `helm search` command.
-
-5. Upgrade charts to the version targetted: `make fetch-mongodb-sharded`, from
-the `solution-base/mongodb` directory.
-
-6. Manually update the patches by applying the changes manually in the new
-upgraded charts:
-`git diff -- solution-base/mongodb/charts/mongodb-sharded/values.yaml > solution-base/mongodb/patches/secret-name.patch`
-(this operation needs to be done for every patch).
-**Note**: This step is only necessary if the patch does not apply
-automatically. Do it from the root of the repository.
-
-7. Once the patches are updated, apply them to the charts with the command
-`make patch`.
-
-8. After upgrading, you may need to apply additional changes that are not
-directly handled by the charts or patches. Please carefully review the new
-logic added by the new chart version, and ensure they remain compatible with
-our use case.
-
-9. Passing CI tests is not enough, you must also perform an upgrade check with
-the product(s) using this Zenko version, before merging the upgrade PR. Some
-changes may be required at upper-levels (e.g., update mongosh commands, or add
-new logic in the upgrade).
+1. Browse available versions at
+ (filter for `mongodb-sharded/*`). To inspect values or templates for
+ a specific version, view the source at
+ `https://github.com/bitnami/charts/tree/mongodb-sharded%2F/bitnami/mongodb-sharded`
+ (the `%2F` is the URL-encoded `/` in the tag name).
+
+2. Bump image tags in `solution-base/deps.yaml` if needed. The image
+ tags shipped with the chart can be found under `annotations.images`
+ in the upstream `Chart.yaml` at the same tag.
+
+3. Bump `CHART_VERSION` in `solution-base/mongodb/Makefile` to the
+ target version.
+
+4. Run `make -C solution-base/mongodb vendor-sync`. This:
+ - Ensures the `bitnami-charts` remote is configured.
+ - Fetches upstream `main` and the new chart tag.
+ - Runs `git subtree split` to synthesize the chart's history (slow:
+ ~4 minutes on a warm clone, longer on a fresh fetch).
+ - Runs `git subtree merge --squash` to merge upstream into our
+ prefix.
+ - Re-resolves the `common` library dependency via
+ `helm dependency build`, then extracts the resulting tarball into
+ a directory under `charts/common/` so `solution-base/build.sh`'s
+ `helm template` finds it as a sub-chart.
+
+5. Resolve any merge conflicts that arise where upstream touched lines
+ our local commits modified. If new local tweaks are needed
+ (entrypoint changes, security-context adjustments, …), make them as
+ **explicit follow-up commits**, not by amending the subtree merge.
+ History should look like:
+
+ ```
+ Merge upstream mongodb-sharded/X.Y.Z
+ mongodb:
+ mongodb:
+ Merge upstream mongodb-sharded/X.Y.Z+1
+ mongodb:
+ ```
+
+6. Sanity-check by running `solution-base/build.sh` (which calls
+ `helm template`) and reviewing the merge commit's diff for
+ unexpected upstream changes.
+
+7. Passing CI tests is not enough — perform an upgrade check against
+ the product(s) using this Zenko version (e.g. Artesca) before
+ merging the upgrade PR. Some upper-level changes may be required
+ (mongosh commands, upgrade flow tweaks).
diff --git a/solution-base/mongodb/patches/mongodb-exporter-configuration.patch b/solution-base/mongodb/patches/mongodb-exporter-configuration.patch
deleted file mode 100644
index 1a59895f69..0000000000
--- a/solution-base/mongodb/patches/mongodb-exporter-configuration.patch
+++ /dev/null
@@ -1,121 +0,0 @@
-diff --git a/solution-base/mongodb/charts/mongodb-sharded/values.yaml b/solution-base/mongodb/charts/mongodb-sharded/values.yaml
-index cac7dba1..3480a9b9 100644
---- a/solution-base/mongodb/charts/mongodb-sharded/values.yaml
-+++ b/solution-base/mongodb/charts/mongodb-sharded/values.yaml
-@@ -132,7 +132,7 @@ auth:
- existingSecret: ""
- ## @param auth.usePasswordFiles Mount credentials as files instead of using environment variables
- ##
-- usePasswordFiles: true
-+ usePasswordFiles: false
- ## @param shards Number of shards to be created
- ## ref: https://docs.mongodb.com/manual/core/sharded-cluster-shards/
- ##
-@@ -273,7 +273,7 @@ volumePermissions:
- ## @param volumePermissions.resourcesPreset Set container resources according to one common preset (allowed values: none, nano, micro, small, medium, large, xlarge, 2xlarge). This is ignored if volumePermissions.resources is set (volumePermissions.resources is recommended for production).
- ## More information: https://github.com/bitnami/charts/blob/main/bitnami/common/templates/_resources.tpl#L15
- ##
-- resourcesPreset: "nano"
-+ resourcesPreset: "none"
- ## @param volumePermissions.resources Set container requests and limits for different resources like CPU or memory (essential for production workloads)
- ## Example:
- ## resources:
-@@ -421,7 +421,7 @@ configsvr:
- ## @param configsvr.resourcesPreset Set container resources according to one common preset (allowed values: none, nano, micro, small, medium, large, xlarge, 2xlarge). This is ignored if configsvr.resources is set (configsvr.resources is recommended for production).
- ## More information: https://github.com/bitnami/charts/blob/main/bitnami/common/templates/_resources.tpl#L15
- ##
-- resourcesPreset: "small"
-+ resourcesPreset: "none"
- ## @param configsvr.resources Set container requests and limits for different resources like CPU or memory (essential for production workloads)
- ## Example:
- ## resources:
-@@ -688,7 +688,7 @@ configsvr:
- enabled: true
- seLinuxOptions: {}
- runAsUser: 1001
-- runAsGroup: 1001
-+ runAsGroup: 0
- runAsNonRoot: true
- privileged: false
- readOnlyRootFilesystem: true
-@@ -782,7 +782,7 @@ mongos:
- ## @param mongos.resourcesPreset Set container resources according to one common preset (allowed values: none, nano, micro, small, medium, large, xlarge, 2xlarge). This is ignored if mongos.resources is set (mongos.resources is recommended for production).
- ## More information: https://github.com/bitnami/charts/blob/main/bitnami/common/templates/_resources.tpl#L15
- ##
-- resourcesPreset: "small"
-+ resourcesPreset: "none"
- ## @param mongos.resources Set container requests and limits for different resources like CPU or memory (essential for production workloads)
- ## Example:
- ## resources:
-@@ -1044,7 +1044,7 @@ mongos:
- enabled: true
- seLinuxOptions: {}
- runAsUser: 1001
-- runAsGroup: 1001
-+ runAsGroup: 0
- runAsNonRoot: true
- privileged: false
- readOnlyRootFilesystem: true
-@@ -1139,7 +1139,7 @@ shardsvr:
- ## @param shardsvr.dataNode.resourcesPreset Set container resources according to one common preset (allowed values: none, nano, micro, small, medium, large, xlarge, 2xlarge). This is ignored if shardsvr.dataNode.resources is set (shardsvr.dataNode.resources is recommended for production).
- ## More information: https://github.com/bitnami/charts/blob/main/bitnami/common/templates/_resources.tpl#L15
- ##
-- resourcesPreset: "medium"
-+ resourcesPreset: "none"
- ## @param shardsvr.dataNode.resources Set container requests and limits for different resources like CPU or memory (essential for production workloads)
- ## Example:
- ## resources:
-@@ -1353,7 +1353,7 @@ shardsvr:
- enabled: true
- seLinuxOptions: {}
- runAsUser: 1001
-- runAsGroup: 1001
-+ runAsGroup: 0
- runAsNonRoot: true
- privileged: false
- readOnlyRootFilesystem: true
-@@ -1515,7 +1515,7 @@ shardsvr:
- ## @param shardsvr.arbiter.resourcesPreset Set container resources according to one common preset (allowed values: none, nano, micro, small, medium, large, xlarge, 2xlarge). This is ignored if shardsvr.arbiter.resources is set (shardsvr.arbiter.resources is recommended for production).
- ## More information: https://github.com/bitnami/charts/blob/main/bitnami/common/templates/_resources.tpl#L15
- ##
-- resourcesPreset: "small"
-+ resourcesPreset: "none"
- ## @param shardsvr.arbiter.resources Set container requests and limits for different resources like CPU or memory (essential for production workloads)
- ## Example:
- ## resources:
-@@ -1702,7 +1702,7 @@ shardsvr:
- enabled: true
- seLinuxOptions: {}
- runAsUser: 1001
-- runAsGroup: 1001
-+ runAsGroup: 0
- runAsNonRoot: true
- privileged: false
- readOnlyRootFilesystem: true
-@@ -1815,11 +1815,11 @@ metrics:
- ## @param metrics.extraArgs String with extra arguments to the metrics exporter
- ## ref: https://github.com/percona/mongodb_exporter/blob/main/main.go
- ##
-- extraArgs: ""
-+ extraArgs: "--collector.diagnosticdata --collector.replicasetstatus --collector.dbstats --collector.topmetrics --compatible-mode"
- ## @param metrics.resourcesPreset Set container resources according to one common preset (allowed values: none, nano, micro, small, medium, large, xlarge, 2xlarge). This is ignored if metrics.resources is set (metrics.resources is recommended for production).
- ## More information: https://github.com/bitnami/charts/blob/main/bitnami/common/templates/_resources.tpl#L15
- ##
-- resourcesPreset: "nano"
-+ resourcesPreset: "none"
- ## @param metrics.resources Set container requests and limits for different resources like CPU or memory (essential for production workloads)
- ## Example:
- ## resources:
-@@ -1849,10 +1849,10 @@ metrics:
- enabled: true
- seLinuxOptions: {}
- runAsUser: 1001
-- runAsGroup: 1001
-+ runAsGroup: 0
- runAsNonRoot: true
- privileged: false
-- readOnlyRootFilesystem: true
-+ readOnlyRootFilesystem: false
- allowPrivilegeEscalation: false
- capabilities:
- drop: ["ALL"]
diff --git a/solution-base/mongodb/patches/mongodb-exporter-disable-collect-all.patch b/solution-base/mongodb/patches/mongodb-exporter-disable-collect-all.patch
deleted file mode 100644
index 65be09ac9e..0000000000
--- a/solution-base/mongodb/patches/mongodb-exporter-disable-collect-all.patch
+++ /dev/null
@@ -1,39 +0,0 @@
-diff --git a/solution-base/mongodb/charts/mongodb-sharded/templates/config-server/config-server-statefulset.yaml b/solution-base/mongodb/charts/mongodb-sharded/templates/config-server/config-server-statefulset.yaml
-index 067acaa1..8700d119 100644
---- a/solution-base/mongodb/charts/mongodb-sharded/templates/config-server/config-server-statefulset.yaml
-+++ b/solution-base/mongodb/charts/mongodb-sharded/templates/config-server/config-server-statefulset.yaml
-@@ -332,7 +332,7 @@ spec:
- {{- if .Values.auth.usePasswordFiles }}
- export MONGODB_ROOT_PASSWORD="$(cat "${MONGODB_ROOT_PASSWORD_FILE}")"
- {{- end }}
-- /bin/mongodb_exporter --collect-all --compatible-mode --web.listen-address ":{{ .Values.metrics.containerPorts.metrics }}" --mongodb.uri mongodb://$(echo $MONGODB_ROOT_USER):$(echo $MONGODB_ROOT_PASSWORD | sed -r "s/@/%40/g;s/:/%3A/g")@localhost:{{ .Values.common.containerPorts.mongodb }}/admin{{ ternary "?ssl=true" "" $.Values.metrics.useTLS }} {{ .Values.metrics.extraArgs }}
-+ /bin/mongodb_exporter --compatible-mode --web.listen-address ":{{ .Values.metrics.containerPorts.metrics }}" --mongodb.uri mongodb://$(echo $MONGODB_ROOT_USER):$(echo $MONGODB_ROOT_PASSWORD | sed -r "s/@/%40/g;s/:/%3A/g")@localhost:{{ .Values.common.containerPorts.mongodb }}/admin{{ ternary "?ssl=true" "" $.Values.metrics.useTLS }} {{ .Values.metrics.extraArgs }}
- {{- end }}
- volumeMounts:
- - name: empty-dir
-diff --git a/solution-base/mongodb/charts/mongodb-sharded/templates/mongos/mongos-dep-sts.yaml b/solution-base/mongodb/charts/mongodb-sharded/templates/mongos/mongos-dep-sts.yaml
-index 8ed0c05d..84ec89e3 100644
---- a/solution-base/mongodb/charts/mongodb-sharded/templates/mongos/mongos-dep-sts.yaml
-+++ b/solution-base/mongodb/charts/mongodb-sharded/templates/mongos/mongos-dep-sts.yaml
-@@ -306,7 +306,7 @@ spec:
- {{- if .Values.auth.usePasswordFiles }}
- export MONGODB_ROOT_PASSWORD="$(cat "${MONGODB_ROOT_PASSWORD_FILE}")"
- {{- end }}
-- /bin/mongodb_exporter --collect-all --compatible-mode --web.listen-address ":{{ .Values.metrics.containerPorts.metrics }}" --mongodb.uri mongodb://$(echo $MONGODB_ROOT_USER):$(echo $MONGODB_ROOT_PASSWORD | sed -r "s/@/%40/g;s/:/%3A/g")@localhost:{{ .Values.common.containerPorts.mongodb }}/admin{{ ternary "?ssl=true" "" $.Values.metrics.useTLS }} {{ .Values.metrics.extraArgs }}
-+ /bin/mongodb_exporter --compatible-mode --web.listen-address ":{{ .Values.metrics.containerPorts.metrics }}" --mongodb.uri mongodb://$(echo $MONGODB_ROOT_USER):$(echo $MONGODB_ROOT_PASSWORD | sed -r "s/@/%40/g;s/:/%3A/g")@localhost:{{ .Values.common.containerPorts.mongodb }}/admin{{ ternary "?ssl=true" "" $.Values.metrics.useTLS }} {{ .Values.metrics.extraArgs }}
- {{- end }}
- volumeMounts:
- - name: empty-dir
-diff --git a/solution-base/mongodb/charts/mongodb-sharded/templates/shard/shard-data-statefulset.yaml b/solution-base/mongodb/charts/mongodb-sharded/templates/shard/shard-data-statefulset.yaml
-index d0339061..0be27f4a 100644
---- a/solution-base/mongodb/charts/mongodb-sharded/templates/shard/shard-data-statefulset.yaml
-+++ b/solution-base/mongodb/charts/mongodb-sharded/templates/shard/shard-data-statefulset.yaml
-@@ -339,7 +339,7 @@ spec:
- {{- if $.Values.auth.usePasswordFiles }}
- export MONGODB_ROOT_PASSWORD="$(cat "${MONGODB_ROOT_PASSWORD_FILE}")"
- {{- end }}
-- /bin/mongodb_exporter --collect-all --compatible-mode --web.listen-address ":{{ $.Values.metrics.containerPorts.metrics }}" --mongodb.uri mongodb://$(echo $MONGODB_ROOT_USER):$(echo $MONGODB_ROOT_PASSWORD | sed -r "s/@/%40/g;s/:/%3A/g")@localhost:{{ $.Values.common.containerPorts.mongodb }}/admin{{ ternary "?ssl=true" "" $.Values.metrics.useTLS }} {{ $.Values.metrics.extraArgs }}
-+ /bin/mongodb_exporter --compatible-mode --web.listen-address ":{{ $.Values.metrics.containerPorts.metrics }}" --mongodb.uri mongodb://$(echo $MONGODB_ROOT_USER):$(echo $MONGODB_ROOT_PASSWORD | sed -r "s/@/%40/g;s/:/%3A/g")@localhost:{{ $.Values.common.containerPorts.mongodb }}/admin{{ ternary "?ssl=true" "" $.Values.metrics.useTLS }} {{ $.Values.metrics.extraArgs }}
- {{- end }}
- volumeMounts:
- - name: empty-dir
diff --git a/solution-base/mongodb/patches/mongodb-sharded-add-configsvr-service-file.patch b/solution-base/mongodb/patches/mongodb-sharded-add-configsvr-service-file.patch
deleted file mode 100644
index 86a1406b15..0000000000
--- a/solution-base/mongodb/patches/mongodb-sharded-add-configsvr-service-file.patch
+++ /dev/null
@@ -1,53 +0,0 @@
-diff --git a/solution-base/mongodb/charts/mongodb-sharded/templates/config-server/config-server-service.yaml b/solution-base/mongodb/charts/mongodb-sharded/templates/config-server/config-server-service.yaml
-new file mode 100644
-index 00000000..fad94092
---- /dev/null
-+++ b/solution-base/mongodb/charts/mongodb-sharded/templates/config-server/config-server-service.yaml
-@@ -0,0 +1,47 @@
-+apiVersion: v1
-+kind: Service
-+metadata:
-+ name: {{ printf "%s-configsvr" (include "common.names.fullname" .) }}
-+ namespace: {{ include "common.names.namespace" . | quote }}
-+ labels: {{ include "common.labels.standard" . | nindent 4 }}
-+ app.kubernetes.io/component: configsvr
-+ {{- if .Values.commonLabels }}
-+ {{- include "common.tplvalues.render" ( dict "value" .Values.commonLabels "context" $ ) | nindent 4 }}
-+ {{- end }}
-+ {{- if .Values.commonAnnotations }}
-+ annotations: {{- include "common.tplvalues.render" ( dict "value" .Values.commonAnnotations "context" $ ) | nindent 4 }}
-+ {{- end }}
-+spec:
-+ type: {{ .Values.service.type }}
-+ {{- if and .Values.service.loadBalancerIP (eq .Values.service.type "LoadBalancer") }}
-+ loadBalancerIP: {{ .Values.service.loadBalancerIP }}
-+ {{- end }}
-+ {{- if and (eq .Values.service.type "LoadBalancer") .Values.service.loadBalancerSourceRanges }}
-+ loadBalancerSourceRanges:
-+ {{ with .Values.service.loadBalancerSourceRanges }}
-+{{ toYaml . | indent 4 }}
-+ {{- end }}
-+ {{- end }}
-+ {{- if and (eq .Values.service.type "ClusterIP") .Values.service.clusterIP }}
-+ clusterIP: {{ .Values.service.clusterIP }}
-+ {{- end }}
-+ ports:
-+ - name: mongodb
-+ port: {{ .Values.service.ports.mongodb }}
-+ targetPort: mongodb
-+ {{- if .Values.service.nodePorts.mongodb }}
-+ nodePort: {{ .Values.service.nodePorts.mongodb }}
-+ {{- else if eq .Values.service.type "ClusterIP" }}
-+ nodePort: null
-+ {{- end }}
-+ {{- if .Values.metrics.enabled }}
-+ - name: metrics
-+ port: 9216
-+ targetPort: metrics
-+ {{- end }}
-+ {{- if .Values.service.extraPorts }}
-+ {{- include "common.tplvalues.render" (dict "value" .Values.service.extraPorts "context" $) | nindent 4 }}
-+ {{- end }}
-+ selector: {{ include "common.labels.matchLabels" . | nindent 4 }}
-+ app.kubernetes.io/component: configsvr
-+ sessionAffinity: {{ default "None" .Values.service.sessionAffinity }}
diff --git a/solution-base/mongodb/patches/mongodb-sharded-add-configsvr-service.patch b/solution-base/mongodb/patches/mongodb-sharded-add-configsvr-service.patch
deleted file mode 100644
index 6518882306..0000000000
--- a/solution-base/mongodb/patches/mongodb-sharded-add-configsvr-service.patch
+++ /dev/null
@@ -1,15 +0,0 @@
-diff --git a/solution-base/mongodb/charts/mongodb-sharded/templates/_helpers.tpl b/solution-base/mongodb/charts/mongodb-sharded/templates/_helpers.tpl
-index cb923aaa..8f9587d7 100644
---- a/solution-base/mongodb/charts/mongodb-sharded/templates/_helpers.tpl
-+++ b/solution-base/mongodb/charts/mongodb-sharded/templates/_helpers.tpl
-@@ -37,6 +37,10 @@ Usage:
- {{- end -}}
- {{- end -}}
-
-+{{- define "mongodb-sharded.configServer.serviceName" -}}
-+ {{- printf "%s-configsvr.%s.svc.%s" (include "common.names.fullname" .) .Release.Namespace .Values.clusterDomain -}}
-+{{- end -}}
-+
- {{- define "mongodb-sharded.configServer.rsName" -}}
- {{- if .Values.configsvr.external.replicasetName -}}
- {{- .Values.configsvr.external.replicasetName }}
diff --git a/solution-base/mongodb/patches/mongodb-sharded-add-pv-selector.patch b/solution-base/mongodb/patches/mongodb-sharded-add-pv-selector.patch
deleted file mode 100644
index 948b69c4aa..0000000000
--- a/solution-base/mongodb/patches/mongodb-sharded-add-pv-selector.patch
+++ /dev/null
@@ -1,36 +0,0 @@
-diff --git a/solution-base/mongodb/charts/mongodb-sharded/templates/config-server/config-server-statefulset.yaml b/solution-base/mongodb/charts/mongodb-sharded/templates/config-server/config-server-statefulset.yaml
-index 3083dfed..ba92e7ec 100644
---- a/solution-base/mongodb/charts/mongodb-sharded/templates/config-server/config-server-statefulset.yaml
-+++ b/solution-base/mongodb/charts/mongodb-sharded/templates/config-server/config-server-statefulset.yaml
-@@ -456,7 +456,7 @@ spec:
- storage: {{ .Values.configsvr.persistence.size | quote }}
- {{- with .Values.configsvr.persistence.selector }}
- selector:
-- {{- include "common.tplvalues.render" (dict "value" .Values.configsvr.persistence.selector "context" $) | nindent 10 }}
-+{{ toYaml $.Values.configsvr.persistence.selector | indent 10 }}
- {{- end }}
- {{- include "common.storage.class" (dict "persistence" .Values.configsvr.persistence "global" .Values.global) | nindent 8 }}
- {{- end }}
-diff --git a/solution-base/mongodb/charts/mongodb-sharded/templates/shard/shard-data-statefulset.yaml b/solution-base/mongodb/charts/mongodb-sharded/templates/shard/shard-data-statefulset.yaml
-index 46fbe695..886139bc 100644
---- a/solution-base/mongodb/charts/mongodb-sharded/templates/shard/shard-data-statefulset.yaml
-+++ b/solution-base/mongodb/charts/mongodb-sharded/templates/shard/shard-data-statefulset.yaml
-@@ -463,7 +463,17 @@ spec:
- storage: {{ $.Values.shardsvr.persistence.size | quote }}
- {{- with $.Values.shardsvr.persistence.selector }}
- selector:
-- {{- include "common.tplvalues.render" (dict "value" $.Values.shardsvr.persistence.selector "context" (merge $ (dict "Index" $i))) | nindent 10 }}
-+ matchLabels:
-+ {{- if gt $i 0 }}
-+ app.kubernetes.io/name: {{ printf "mongodb-shard%d" $i }}
-+ {{- else }}
-+ app.kubernetes.io/name: mongodb
-+ {{- end }}
-+ {{- range $key, $value := $.Values.shardsvr.persistence.selector.matchLabels }}
-+ {{- if ne $key "app.kubernetes.io/name" }}
-+ {{ $key }}: {{ $value | quote }}
-+ {{- end }}
-+ {{- end }}
- {{- end }}
- {{- include "common.storage.class" (dict "persistence" $.Values.shardsvr.persistence "global" $.Values.global) | nindent 8 }}
- {{- end }}
diff --git a/solution-base/mongodb/patches/mongodb-sharded-fix-podmonitor.patch b/solution-base/mongodb/patches/mongodb-sharded-fix-podmonitor.patch
deleted file mode 100644
index 0df2eb45ce..0000000000
--- a/solution-base/mongodb/patches/mongodb-sharded-fix-podmonitor.patch
+++ /dev/null
@@ -1,22 +0,0 @@
-diff --git a/solution-base/mongodb/charts/mongodb-sharded/templates/shard/shard-data-podmonitor.yaml b/solution-base/mongodb/charts/mongodb-sharded/templates/shard/shard-data-podmonitor.yaml
-index d3642ca2..dd3afaad 100644
---- a/solution-base/mongodb/charts/mongodb-sharded/templates/shard/shard-data-podmonitor.yaml
-+++ b/solution-base/mongodb/charts/mongodb-sharded/templates/shard/shard-data-podmonitor.yaml
-@@ -4,8 +4,7 @@ SPDX-License-Identifier: APACHE-2.0
- */}}
-
- {{- if and .Values.shards .Values.metrics.enabled .Values.metrics.podMonitor.enabled }}
--{{- $replicas := .Values.shards | int }}
--{{- range $i, $e := until $replicas }}
-+{{- $i := 0 }}
- apiVersion: monitoring.coreos.com/v1
- kind: PodMonitor
- metadata:
-@@ -36,7 +35,4 @@ spec:
- selector:
- matchLabels: {{- include "common.labels.matchLabels" ( dict "customLabels" $podLabels "context" $ ) | nindent 6 }}
- app.kubernetes.io/component: shardsvr
-- shard: {{ $i | quote }}
-----
--{{- end }}
- {{- end }}
diff --git a/solution-base/mongodb/patches/mongos-dep-sts.patch b/solution-base/mongodb/patches/mongos-dep-sts.patch
deleted file mode 100644
index 26039adeb9..0000000000
--- a/solution-base/mongodb/patches/mongos-dep-sts.patch
+++ /dev/null
@@ -1,42 +0,0 @@
-diff --git a/solution-base/mongodb/charts/mongodb-sharded/templates/mongos/mongos-dep-sts.yaml b/solution-base/mongodb/charts/mongodb-sharded/templates/mongos/mongos-dep-sts.yaml
-index 3d6a01cd..941642b4 100644
---- a/solution-base/mongodb/charts/mongodb-sharded/templates/mongos/mongos-dep-sts.yaml
-+++ b/solution-base/mongodb/charts/mongodb-sharded/templates/mongos/mongos-dep-sts.yaml
-@@ -93,6 +93,9 @@ spec:
- {{- if .Values.mongos.containerSecurityContext.enabled }}
- securityContext: {{- include "common.compatibility.renderSecurityContext" (dict "secContext" .Values.mongos.containerSecurityContext "context" $) | nindent 12 }}
- {{- end }}
-+ command:
-+ - /bin/bash
-+ - /entrypoint/mongos-entrypoint.sh
- env:
- - name: MONGODB_ENABLE_NUMACTL
- value: {{ ternary "yes" "no" $.Values.common.mongodbEnableNumactl | quote }}
-@@ -136,7 +139,7 @@ spec:
- - name: MONGODB_PORT_NUMBER
- value: {{ $.Values.common.containerPorts.mongodb | quote }}
- - name: MONGODB_CFG_PRIMARY_HOST
-- value: {{ include "mongodb-sharded.configServer.primaryHost" . }}
-+ value: {{ include "mongodb-sharded.configServer.serviceName" . }}
- - name: MONGODB_CFG_REPLICA_SET_NAME
- value: {{ include "mongodb-sharded.configServer.rsName" . }}
- - name: MONGODB_SYSTEM_LOG_VERBOSITY
-@@ -232,6 +235,8 @@ spec:
- lifecycle: {{- include "common.tplvalues.render" (dict "value" .Values.mongos.lifecycleHooks "context" $) | nindent 12 }}
- {{- end }}
- volumeMounts:
-+ - name: replicaset-entrypoint-configmap
-+ mountPath: /entrypoint
- - name: empty-dir
- mountPath: /tmp
- subPath: tmp-dir
-@@ -350,6 +355,9 @@ spec:
- {{- include "common.tplvalues.render" ( dict "value" . "context" $ ) | nindent 8 }}
- {{- end }}
- volumes:
-+ - name: replicaset-entrypoint-configmap
-+ configMap:
-+ name: {{ include "common.names.fullname" . }}-replicaset-entrypoint
- - name: empty-dir
- emptyDir: {}
- {{- if .Values.auth.usePasswordFiles }}
diff --git a/solution-base/mongodb/patches/redirect-logs-to-stdout.patch b/solution-base/mongodb/patches/redirect-logs-to-stdout.patch
deleted file mode 100644
index 68e6e64b29..0000000000
--- a/solution-base/mongodb/patches/redirect-logs-to-stdout.patch
+++ /dev/null
@@ -1,97 +0,0 @@
-diff --git a/solution-base/mongodb/charts/mongodb-sharded/templates/_helpers.tpl b/solution-base/mongodb/charts/mongodb-sharded/templates/_helpers.tpl
-index cb923aaa..69e915ea 100644
---- a/solution-base/mongodb/charts/mongodb-sharded/templates/_helpers.tpl
-+++ b/solution-base/mongodb/charts/mongodb-sharded/templates/_helpers.tpl
-@@ -29,6 +29,33 @@ Usage:
- {{- end }}
- {{- end -}}
-
-+{{/*
-+Init container definition to recover log dir.
-+*/}}
-+{{- define "mongodb-sharded.initContainer.prepareLogDir" }}
-+- name: log-dir
-+ image: {{ include "mongodb-sharded.image" $ }}
-+ imagePullPolicy: {{ $.Values.image.pullPolicy | quote }}
-+ command:
-+ - /bin/bash
-+ args:
-+ - -ec
-+ - |
-+ ln -sf /dev/stdout "/opt/bitnami/mongodb/logs/mongodb.log"
-+ {{- if and $.Values.volumePermissions $.Values.volumePermissions.containerSecurityContext $.Values.volumePermissions.containerSecurityContext.enabled }}
-+ securityContext: {{- include "common.compatibility.renderSecurityContext" (dict "secContext" $.Values.volumePermissions.containerSecurityContext "context" $) | nindent 4 }}
-+ {{- end }}
-+ {{- if and $.Values.volumePermissions $.Values.volumePermissions.resources }}
-+ resources: {{- toYaml $.Values.volumePermissions.resources | nindent 4 }}
-+ {{- else if and $.Values.volumePermissions $.Values.volumePermissions.resourcesPreset (ne $.Values.volumePermissions.resourcesPreset "none") }}
-+ resources: {{- include "common.resources.preset" (dict "type" $.Values.volumePermissions.resourcesPreset) | nindent 4 }}
-+ {{- end }}
-+ volumeMounts:
-+ - name: empty-dir
-+ mountPath: /opt/bitnami/mongodb/logs
-+ subPath: app-logs-dir
-+{{- end -}}
-+
- {{- define "mongodb-sharded.configServer.primaryHost" -}}
- {{- if .Values.configsvr.external.host -}}
- {{- .Values.configsvr.external.host }}
-diff --git a/solution-base/mongodb/charts/mongodb-sharded/templates/config-server/config-server-statefulset.yaml b/solution-base/mongodb/charts/mongodb-sharded/templates/config-server/config-server-statefulset.yaml
-index 3083dfed..f8ba683f 100644
---- a/solution-base/mongodb/charts/mongodb-sharded/templates/config-server/config-server-statefulset.yaml
-+++ b/solution-base/mongodb/charts/mongodb-sharded/templates/config-server/config-server-statefulset.yaml
-@@ -109,6 +109,7 @@ spec:
- {{- with .Values.common.initContainers }}
- {{- include "common.tplvalues.render" ( dict "value" . "context" $ ) | nindent 8 }}
- {{- end }}
-+ {{- include "mongodb-sharded.initContainer.prepareLogDir" $ | nindent 8 }}
- containers:
- - name: mongodb
- image: {{ include "mongodb-sharded.image" . }}
-diff --git a/solution-base/mongodb/charts/mongodb-sharded/templates/mongos/mongos-dep-sts.yaml b/solution-base/mongodb/charts/mongodb-sharded/templates/mongos/mongos-dep-sts.yaml
-index 3d6a01cd..2ad766f3 100644
---- a/solution-base/mongodb/charts/mongodb-sharded/templates/mongos/mongos-dep-sts.yaml
-+++ b/solution-base/mongodb/charts/mongodb-sharded/templates/mongos/mongos-dep-sts.yaml
-@@ -77,15 +77,16 @@ spec:
- terminationGracePeriodSeconds: {{ .Values.mongos.terminationGracePeriodSeconds }}
- {{- end }}
- {{- include "mongodb-sharded.imagePullSecrets" . | nindent 6 }}
-- {{- if or $.Values.mongos.initContainers $.Values.common.initContainers }}
- initContainers:
-+ {{- if or $.Values.mongos.initContainers $.Values.common.initContainers }}
- {{- with $.Values.mongos.initContainers }}
- {{- include "common.tplvalues.render" ( dict "value" . "context" $ ) | nindent 8 }}
- {{- end }}
- {{- with $.Values.common.initContainers }}
- {{- include "common.tplvalues.render" ( dict "value" . "context" $ ) | nindent 8 }}
- {{- end }}
-- {{- end }}
-+ {{- end }}
-+ {{- include "mongodb-sharded.initContainer.prepareLogDir" $ | nindent 8 }}
- containers:
- - name: mongos
- image: {{ include "mongodb-sharded.image" . }}
-diff --git a/solution-base/mongodb/charts/mongodb-sharded/templates/shard/shard-arbiter-statefulset.yaml b/solution-base/mongodb/charts/mongodb-sharded/templates/shard/shard-arbiter-statefulset.yaml
-index d5df317d..6ebc9b3c 100644
---- a/solution-base/mongodb/charts/mongodb-sharded/templates/shard/shard-arbiter-statefulset.yaml
-+++ b/solution-base/mongodb/charts/mongodb-sharded/templates/shard/shard-arbiter-statefulset.yaml
-@@ -84,6 +84,7 @@ spec:
- {{- with $.Values.common.initContainers }}
- {{- include "common.tplvalues.render" ( dict "value" . "context" $ ) | nindent 8 }}
- {{- end }}
-+ {{- include "mongodb-sharded.initContainer.prepareLogDir" $ | nindent 8 }}
- {{- end }}
- containers:
- - name: {{ printf "%s-arbiter" (include "common.names.fullname" $) }}
-diff --git a/solution-base/mongodb/charts/mongodb-sharded/templates/shard/shard-data-statefulset.yaml b/solution-base/mongodb/charts/mongodb-sharded/templates/shard/shard-data-statefulset.yaml
-index 46fbe695..4a161c8b 100644
---- a/solution-base/mongodb/charts/mongodb-sharded/templates/shard/shard-data-statefulset.yaml
-+++ b/solution-base/mongodb/charts/mongodb-sharded/templates/shard/shard-data-statefulset.yaml
-@@ -112,6 +112,7 @@ spec:
- {{- with $.Values.common.initContainers }}
- {{- include "common.tplvalues.render" ( dict "value" . "context" $ ) | nindent 8 }}
- {{- end }}
-+ {{- include "mongodb-sharded.initContainer.prepareLogDir" $ | nindent 8 }}
- containers:
- - name: mongodb
- image: {{ include "mongodb-sharded.image" $ }}
diff --git a/solution-base/mongodb/patches/replicaset-entrypoint-configmap.patch b/solution-base/mongodb/patches/replicaset-entrypoint-configmap.patch
deleted file mode 100644
index 2646020332..0000000000
--- a/solution-base/mongodb/patches/replicaset-entrypoint-configmap.patch
+++ /dev/null
@@ -1,27 +0,0 @@
-diff --git a/solution-base/mongodb/charts/mongodb-sharded/templates/replicaset-entrypoint-configmap.yaml b/solution-base/mongodb/charts/mongodb-sharded/templates/replicaset-entrypoint-configmap.yaml
-index 29a3ca2c..efc39f08 100644
---- a/solution-base/mongodb/charts/mongodb-sharded/templates/replicaset-entrypoint-configmap.yaml
-+++ b/solution-base/mongodb/charts/mongodb-sharded/templates/replicaset-entrypoint-configmap.yaml
-@@ -13,6 +13,13 @@ metadata:
- annotations: {{- include "common.tplvalues.render" ( dict "value" .Values.commonAnnotations "context" $ ) | nindent 4 }}
- {{- end }}
- data:
-+ mongos-entrypoint.sh: |-
-+ #!/bin/bash
-+ . /liblog.sh
-+ # Disable MongoSH telemetry to support offline deployments
-+ mongosh --nodb --eval "disableTelemetry()"
-+ info "MongoDB Telemetry is now disabled."
-+ exec /entrypoint.sh /run.sh
- replicaset-entrypoint.sh: |-
- #!/bin/bash
-
-@@ -36,4 +43,8 @@ data:
- {{- end }}
- fi
-
-+ # Disable MongoSH telemetry to support offline deployments
-+ mongosh --nodb --eval "disableTelemetry()"
-+ info "MongoDB Telemetry is now disabled."
-+
- exec /entrypoint.sh /run.sh
diff --git a/solution-base/mongodb/patches/statefulset-permissions.patch b/solution-base/mongodb/patches/statefulset-permissions.patch
deleted file mode 100644
index c82f5e78bd..0000000000
--- a/solution-base/mongodb/patches/statefulset-permissions.patch
+++ /dev/null
@@ -1,40 +0,0 @@
-diff --git a/solution-base/mongodb/charts/mongodb-sharded/templates/config-server/config-server-statefulset.yaml b/solution-base/mongodb/charts/mongodb-sharded/templates/config-server/config-server-statefulset.yaml
-index 3083dfed..da71ec47 100644
---- a/solution-base/mongodb/charts/mongodb-sharded/templates/config-server/config-server-statefulset.yaml
-+++ b/solution-base/mongodb/charts/mongodb-sharded/templates/config-server/config-server-statefulset.yaml
-@@ -78,14 +78,7 @@ spec:
- - name: volume-permissions
- image: {{ include "mongodb-sharded.volumePermissions.image" . }}
- imagePullPolicy: {{ .Values.volumePermissions.image.pullPolicy | quote }}
-- command:
-- - /bin/bash
-- args:
-- - -ec
-- - |
-- mkdir -p {{ .Values.configsvr.persistence.mountPath }}{{- if .Values.configsvr.persistence.subPath }}/{{ include "common.tplvalues.render" (dict "value" .Values.configsvr.persistence.subPath "context" $) }}{{- end }}
-- chown {{ .Values.configsvr.containerSecurityContext.runAsUser }}:{{ .Values.configsvr.podSecurityContext.fsGroup }} {{ .Values.configsvr.persistence.mountPath }}{{- if .Values.configsvr.persistence.subPath }}/{{ include "common.tplvalues.render" (dict "value" .Values.configsvr.persistence.subPath "context" $) }}{{- end }}
-- find {{ .Values.configsvr.persistence.mountPath }} -mindepth 1 -maxdepth 1 -not -name ".snapshot" -not -name "lost+found" | xargs -r chown -R {{ .Values.configsvr.containerSecurityContext.runAsUser }}:{{ .Values.configsvr.podSecurityContext.fsGroup }}
-+ command: ["chown", "-R", "{{ .Values.configsvr.containerSecurityContext.runAsUser }}:{{ .Values.configsvr.podSecurityContext.fsGroup }}", "{{ .Values.configsvr.persistence.mountPath }}"]
- securityContext:
- runAsUser: 0
- {{- if .Values.volumePermissions.resources }}
-diff --git a/solution-base/mongodb/charts/mongodb-sharded/templates/shard/shard-data-statefulset.yaml b/solution-base/mongodb/charts/mongodb-sharded/templates/shard/shard-data-statefulset.yaml
-index 46fbe695..72265b3d 100644
---- a/solution-base/mongodb/charts/mongodb-sharded/templates/shard/shard-data-statefulset.yaml
-+++ b/solution-base/mongodb/charts/mongodb-sharded/templates/shard/shard-data-statefulset.yaml
-@@ -81,14 +81,7 @@ spec:
- - name: volume-permissions
- image: {{ include "mongodb-sharded.volumePermissions.image" $ }}
- imagePullPolicy: {{ $.Values.volumePermissions.image.pullPolicy | quote }}
-- command:
-- - /bin/bash
-- args:
-- - -ec
-- - |
-- mkdir -p {{ $.Values.shardsvr.persistence.mountPath }}{{- if $.Values.shardsvr.persistence.subPath }}/{{ include "common.tplvalues.render" (dict "value" $.Values.shardsvr.persistence.subPath "context" $) }}{{- end }}
-- chown {{ $.Values.shardsvr.dataNode.containerSecurityContext.runAsUser }}:{{ $.Values.shardsvr.dataNode.podSecurityContext.fsGroup }} {{ $.Values.shardsvr.persistence.mountPath }}{{- if $.Values.shardsvr.persistence.subPath }}/{{ include "common.tplvalues.render" (dict "value" $.Values.shardsvr.persistence.subPath "context" $) }}{{- end }}
-- find {{ $.Values.shardsvr.persistence.mountPath }} -mindepth 1 -maxdepth 1 -not -name ".snapshot" -not -name "lost+found" | xargs -r chown -R {{ $.Values.shardsvr.dataNode.containerSecurityContext.runAsUser }}:{{ $.Values.shardsvr.dataNode.podSecurityContext.fsGroup }}
-+ command: ["chown", "-R", "{{ $.Values.shardsvr.dataNode.containerSecurityContext.runAsUser }}:{{ $.Values.shardsvr.dataNode.podSecurityContext.fsGroup }}", "{{ $.Values.shardsvr.persistence.mountPath }}"]
- securityContext:
- runAsUser: 0
- {{- if $.Values.volumePermissions.resources }}
diff --git a/solution-base/mongodb/patches/update-default-values.patch b/solution-base/mongodb/patches/update-default-values.patch
deleted file mode 100644
index f98cb383a6..0000000000
--- a/solution-base/mongodb/patches/update-default-values.patch
+++ /dev/null
@@ -1,32 +0,0 @@
-diff --git a/solution-base/mongodb/charts/mongodb-sharded/templates/initialization-configmap.yaml b/solution-base/mongodb/charts/mongodb-sharded/templates/initialization-configmap.yaml
-new file mode 100644
-index 00000000..353971f6
---- /dev/null
-+++ b/solution-base/mongodb/charts/mongodb-sharded/templates/initialization-configmap.yaml
-@@ -0,0 +1,9 @@
-+{{ if (.Files.Glob "files/docker-entrypoint-initdb.d/*[sh|js|json]") }}
-+apiVersion: v1
-+kind: ConfigMap
-+metadata:
-+ name: mongodb-sharded-init-scripts
-+ labels: {{- include "common.labels.standard" . | nindent 4 }}
-+data:
-+{{ tpl (.Files.Glob "files/docker-entrypoint-initdb.d/*[sh|js|json]").AsConfig . | indent 2 }}
-+{{ end }}
-\ No newline at end of file
-diff --git a/solution-base/mongodb/charts/mongodb-sharded/files/docker-entrypoint-initdb.d/create-app-user-sharded.sh b/solution-base/mongodb/charts/mongodb-sharded/files/docker-entrypoint-initdb.d/create-app-user-sharded.sh
-new file mode 120000
-index 00000000..61f367cb
---- /dev/null
-+++ b/solution-base/mongodb/charts/mongodb-sharded/files/docker-entrypoint-initdb.d/create-app-user-sharded.sh
-@@ -0,0 +1 @@
-+../../../../scripts/create-app-user.sh
-\ No newline at end of file
-diff --git a/solution-base/mongodb/charts/mongodb-sharded/files/docker-entrypoint-initdb.d/set-default-write-concern-majority-sharded.sh b/solution-base/mongodb/charts/mongodb-sharded/files/docker-entrypoint-initdb.d/set-default-write-concern-majority-sharded.sh
-new file mode 120000
-index 00000000..9d7ca4a1
---- /dev/null
-+++ b/solution-base/mongodb/charts/mongodb-sharded/files/docker-entrypoint-initdb.d/set-default-write-concern-majority-sharded.sh
-@@ -0,0 +1 @@
-+../../../../scripts/set-default-write-concern-majority.sh
-\ No newline at end of file
\ No newline at end of file