From 9c33472c3e91f22b6285efc3170b4fe4012a1db9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carlos=20Rodr=C3=ADguez=20Hern=C3=A1ndez?= Date: Wed, 11 Mar 2020 17:21:56 +0100 Subject: [PATCH] [stable/mongodb] Move chart to distributed bitnami repository (#21398) Signed-off-by: Carlos Rodriguez Hernandez --- stable/mongodb/Chart.yaml | 10 +++++----- stable/mongodb/README.md | 21 +++++++++++++++++++++ stable/mongodb/templates/NOTES.txt | 21 +++++++++++++++++++++ 3 files changed, 47 insertions(+), 5 deletions(-) diff --git a/stable/mongodb/Chart.yaml b/stable/mongodb/Chart.yaml index 4c7571fffb13..e0460dca4604 100644 --- a/stable/mongodb/Chart.yaml +++ b/stable/mongodb/Chart.yaml @@ -1,8 +1,10 @@ apiVersion: v1 name: mongodb -version: 7.8.8 +version: 7.8.9 appVersion: 4.2.4 -description: NoSQL document-oriented database that stores JSON-like documents with dynamic schemas, simplifying the integration of data in content-driven applications. +# The redis chart is deprecated and no longer maintained. For details deprecation, see the PROCESSES.md file. +deprecated: true +description: DEPRECATED NoSQL document-oriented database that stores JSON-like documents with dynamic schemas, simplifying the integration of data in content-driven applications. keywords: - mongodb - database @@ -14,7 +16,5 @@ home: https://mongodb.org icon: https://bitnami.com/assets/stacks/mongodb/img/mongodb-stack-220x234.png sources: - https://github.com/bitnami/bitnami-docker-mongodb -maintainers: -- name: Bitnami - email: containers@bitnami.com +maintainers: [] engine: gotpl diff --git a/stable/mongodb/README.md b/stable/mongodb/README.md index 8daf9ff2dc17..0d592d55db3a 100644 --- a/stable/mongodb/README.md +++ b/stable/mongodb/README.md @@ -2,6 +2,27 @@ [MongoDB](https://www.mongodb.com/) is a cross-platform document-oriented database. Classified as a NoSQL database, MongoDB eschews the traditional table-based relational database structure in favor of JSON-like documents with dynamic schemas, making the integration of data in certain types of applications easier and faster. +## This Helm chart is deprecated + +Given the [`stable` deprecation timeline](https://github.com/helm/charts#deprecation-timeline), the Bitnami maintained MongoDB Helm chart is now located at [bitnami/charts](https://github.com/bitnami/charts/). + +The Bitnami repository is already included in the Hubs and we will continue providing the same cadence of updates, support, etc that we've been keeping here these years. Installation instructions are very similar, just adding the _bitnami_ repo and using it during the installation (`bitnami/` instead of `stable/`) + +```bash +$ helm repo add bitnami https://charts.bitnami.com/bitnami +$ helm install my-release bitnami/ # Helm 3 +$ helm install --name my-release bitnami/ # Helm 2 +``` + +To update an exisiting _stable_ deployment with a chart hosted in the bitnami repository you can execute + +```bash +$ helm repo add bitnami https://charts.bitnami.com/bitnami +$ helm upgrade my-release bitnami/ +``` + +Issues and PRs related to the chart itself will be redirected to `bitnami/charts` GitHub repository. In the same way, we'll be happy to answer questions related to this migration process in [this issue](https://github.com/helm/charts/issues/20969) created as a common place for discussion. + ## TL;DR; ```bash diff --git a/stable/mongodb/templates/NOTES.txt b/stable/mongodb/templates/NOTES.txt index 294828b6d6e8..7145f731d067 100644 --- a/stable/mongodb/templates/NOTES.txt +++ b/stable/mongodb/templates/NOTES.txt @@ -1,3 +1,24 @@ +This Helm chart is deprecated + +Given the `stable` deprecation timeline (https://github.com/helm/charts#deprecation-timeline), the Bitnami maintained Helm chart is now located at bitnami/charts (https://github.com/bitnami/charts/). + +The Bitnami repository is already included in the Hubs and we will continue providing the same cadence of updates, support, etc that we've been keeping here these years. Installation instructions are very similar, just adding the _bitnami_ repo and using it during the installation (`bitnami/` instead of `stable/`) + +```bash +$ helm repo add bitnami https://charts.bitnami.com/bitnami +$ helm install my-release bitnami/ # Helm 3 +$ helm install --name my-release bitnami/ # Helm 2 +``` + +To update an exisiting _stable_ deployment with a chart hosted in the bitnami repository you can execute + +```bash +$ helm repo add bitnami https://charts.bitnami.com/bitnami +$ helm upgrade my-release bitnami/ +``` + +Issues and PRs related to the chart itself will be redirected to `bitnami/charts` GitHub repository. In the same way, we'll be happy to answer questions related to this migration process in this issue (https://github.com/helm/charts/issues/20969) created as a common place for discussion. + {{- if contains .Values.service.type "LoadBalancer" }} {{- if not .Values.mongodbRootPassword }} -------------------------------------------------------------------------------