Commit Graph

29 Commits

Author SHA1 Message Date
cking-vonix
d30368c298 [bitnami/mongodb] Corrected conditional check for clusterDomain and revert defaults (#2477)
* [bitnami/mongodb] Corrected conditional check for clusterDomain

In PR #2340 a conditional was added for the clusterDomain but it
incorrectly references replicaSet.clusterDomain in the conditional
when the documentation and existing value was simply clusterDomain.

Previous default restored, if no clusterDomain is desired you can
simply set to false.

* Update Chart.yaml

* [bitnami/mongodb] Update components versions

Signed-off-by: Bitnami Containers <containers@bitnami.com>

Co-authored-by: Carlos Rodríguez Hernández <carlosrh@vmware.com>
Co-authored-by: Bitnami Containers <containers@bitnami.com>
2020-05-01 12:56:14 +02:00
Bitnami Containers
a0b7f1f237 [bitnami/mongodb] Release 7.13.1 updating components versions
Signed-off-by: Bitnami Containers <containers@bitnami.com>
2020-05-01 08:34:38 +00:00
Antonio B
49858447ae [bitnami/mongodb] clusterDomain values forces to use only FQDN (#2340)
* [bitnami/mongodb] Allow dns resolution by service name and namespace

* Update documentation and values

* Update value in readme

* Upgrade chart version

* [bitnami/mongodb] Update components versions

Signed-off-by: Bitnami Containers <containers@bitnami.com>

Co-authored-by: Antonio Berben <antonio.berben@pan-net.eu>
Co-authored-by: Daniel Arteaga <darteaga@bitnami.com>
Co-authored-by: Bitnami Containers <containers@bitnami.com>
2020-04-23 17:22:30 +02:00
golgoth31
be173dc85d [bitnami/mongodb] add nodeSelector option for secondary statefulset (#2398)
* [bitnami/mongodb] add nodeSelector option for secondary statefulset

* [bitnami/mongodb] Update components versions

Signed-off-by: Bitnami Containers <containers@bitnami.com>

Co-authored-by: Bitnami Containers <containers@bitnami.com>
2020-04-23 12:14:12 +02:00
Bitnami Containers
6c96a04247 [bitnami/mongodb] Release 7.12.1 updating components versions
Signed-off-by: Bitnami Containers <containers@bitnami.com>
2020-04-23 07:45:02 +00:00
golgoth31
01cb35c8b1 [bitnami/mongodb] allow arbiter to run on a different nodeSelector (#2370)
* [bitnami/mongodb] add nodeselector option for Arbiter

* [bitnami/mongodb] add entry to README

* update after review

* [bitnami/mongodb] use nindent for nodeSelectorArbiter

* [bitnami/mongodb] bump chart version

* [bitnami/mongodb] Update components versions

Signed-off-by: Bitnami Containers <containers@bitnami.com>

Co-authored-by: Bitnami Containers <containers@bitnami.com>
2020-04-23 09:12:19 +02:00
Bitnami Containers
59c8ec8ab6 [bitnami/mongodb] Release 7.11.1 updating components versions
Signed-off-by: Bitnami Containers <containers@bitnami.com>
2020-04-22 09:29:15 +00:00
benjamin-wright
055679aac7 [bitnami/mongodb] adding local and global namespace overrides for mongodb (#2351)
* update to allow parent charts to override the namespace in the mongodb chart

* correct readme mistake

* add global namespace overrides

* reuse mongodb.namespace template

* add global namespace override to production values.yaml

* first of the review updates

* minor version bump

* remove redundant local namespaceOverride, can just use the global with fewer edge-cases

* typo in .values

* [bitnami/mongodb] Update components versions

Signed-off-by: Bitnami Containers <containers@bitnami.com>

Co-authored-by: Ben Wright <benjamin.wright@nielsen.com>
Co-authored-by: Bitnami Containers <containers@bitnami.com>
Co-authored-by: Miguel Ángel Cabrera Miñagorri <macabrera@bitnami.com>
2020-04-22 09:49:49 +02:00
Bitnami Containers
dd78f46cf4 [bitnami/mongodb] Release 7.10.13 updating components versions
Signed-off-by: Bitnami Containers <containers@bitnami.com>
2020-04-22 05:17:42 +00:00
Bitnami Containers
aa69bdd399 [bitnami/mongodb] Release 7.10.12 updating components versions
Signed-off-by: Bitnami Containers <containers@bitnami.com>
2020-04-17 10:53:33 +00:00
Bitnami Containers
3bbac20572 [bitnami/mongodb] Release 7.10.11 updating components versions
Signed-off-by: Bitnami Containers <containers@bitnami.com>
2020-04-17 00:17:01 +00:00
Bitnami Containers
f44ec9461d [bitnami/mongodb] Release 7.10.10 updating components versions
Signed-off-by: Bitnami Containers <containers@bitnami.com>
2020-04-06 15:03:46 +00:00
Daniel Arteaga
ff1db9d426 [bitnami/mongodb] add ALLOW_EMPTY_PASSWORD=yes when usePassword=false (#2091)
* fix(mongodb): add ALLOW_EMPTY_PASSWORD=yes when usePassword=false

* [bitnami/mongodb] Update components versions

Signed-off-by: Bitnami Containers <containers@bitnami.com>

Co-authored-by: Bitnami Containers <containers@bitnami.com>
2020-04-06 16:33:42 +02:00
Andy Lintner
26ba8a0c8b [bitnami/mongodb] Fix indentation of metrics.resources (#2224)
* Fix indentation of metrics.resources

* [bitnami/mongodb] Update components versions

Signed-off-by: Bitnami Containers <containers@bitnami.com>

Co-authored-by: Bitnami Containers <containers@bitnami.com>
2020-04-06 09:37:05 +02:00
Charles
fe5485523a [bitnami/mongodb]: Fix indentation on extraVolumeMounts in deployment-standalone.yaml (#2201)
* [bitnami/mongodb]: Fix indentation on extraVolumeMounts in deployment-standalone.yaml

The indentation rendered for the extra volume mounts was incorrect, and
would produce a result similar to;

```
          volumeMounts:
            - name: data
              mountPath: /bitnami/mongodb
              subPath:
            - name: config
              mountPath: /opt/bitnami/mongodb/conf/mongodb.conf
              subPath: mongodb.conf
          - mountPath: /volume/mount/path
          name: volume-name
          readOnly: true
```

this is invalid Yaml, and would cause problems during deployment

this fix uses nindent to ensure that indentation is considered from column
0, and uses the correct indentation value; producing a value such as;
```
          volumeMounts:
            - name: data
              mountPath: /bitnami/mongodb
              subPath:
            - name: config
              mountPath: /opt/bitnami/mongodb/conf/mongodb.conf
              subPath: mongodb.conf
            - mountPath: /volume/mount/path
              name: volume-name
              readOnly: true
```

* [bitnami/mongodb] Update components versions

Signed-off-by: Bitnami Containers <containers@bitnami.com>

Co-authored-by: Bitnami Containers <containers@bitnami.com>
2020-04-03 11:15:11 +02:00
Alex SZAKALY
420efdd0e3 [bitnami/mongodb] fix indent error in resources (#2164)
* [bitnami/mongodb] fix indent error in resources

Fix #2163

Signed-off-by: Alex Szakaly <alex.szakaly@gmail.com>

* [bitnami/mongodb] bump Chart version

Fix #2163

Signed-off-by: Alex Szakaly <alex.szakaly@gmail.com>

* [bitnami/mongodb] Update components versions

Signed-off-by: Bitnami Containers <containers@bitnami.com>

Co-authored-by: Bitnami Containers <containers@bitnami.com>
2020-03-31 12:42:02 +02:00
Ween Jiann
0b9ea37ac2 [bitnami/mongodb] Fix indentation error (#2149)
* [bitnami/mongodb] Fix indentation error

* [bitnami/mongodb] Update components versions

Signed-off-by: Bitnami Containers <containers@bitnami.com>
2020-03-27 16:55:04 +01:00
Bitnami Containers
a922609db1 [bitnami/mongodb] Release 7.10.5 updating components versions
Signed-off-by: Bitnami Containers <containers@bitnami.com>
2020-03-27 14:54:27 +00:00
Bitnami Containers
c5538a86ba [bitnami/mongodb] Release 7.10.4 updating components versions
Signed-off-by: Bitnami Containers <containers@bitnami.com>
2020-03-26 03:33:36 +00:00
Miguel Ángel Cabrera Miñagorri
886a2c0a58 [bitnami/mongodb] Fix indentation error (#2139)
* [bitnami/mongodb] Fix indentation error

* [bitnami/mongodb] Update components versions

Signed-off-by: Bitnami Containers <containers@bitnami.com>

Co-authored-by: Bitnami Containers <containers@bitnami.com>
2020-03-25 19:01:38 +01:00
Bitnami Containers
15b463d570 [bitnami/mongodb] Release 7.10.2 updating components versions
Signed-off-by: Bitnami Containers <containers@bitnami.com>
2020-03-25 11:25:08 +00:00
Jeroen Overschie
be41ed7ee9 [bitnami/mongodb] Fix minor spelling error 'enalbed' (#2129)
* Fix minor spelling error 'enalbed'

Cheers! ✌

* Bump chart version 🚀

Co-authored-by: Carlos Rodríguez Hernández <carlosrh@vmware.com>
2020-03-25 10:12:30 +01:00
Bitnami Containers
caba123859 [bitnami/mongodb] Release 7.10.1 updating components versions
Signed-off-by: Bitnami Containers <containers@bitnami.com>
2020-03-25 07:57:51 +00:00
Javier J. Salmerón-García
d9fcba3a3d [bitnami/mongodb] Allow using existingClaim in the cluster primary node (#2101)
* [bitnami/mongodb] Allow using existingClaim in the cluster primary node

Signed-off-by: Javier J. Salmeron Garcia <jsalmeron@vmware.com>

* Small fix

Signed-off-by: Javier J. Salmeron Garcia <jsalmeron@vmware.com>
2020-03-24 10:33:15 +01:00
Liu Feifei
39ec8d6dec [bitnami/mongodb] Issue 2096. Encode @ : in username / password when connect to mongo (#2099)
* Issue 2096. Encode @ : in username / password when connect to mongo

* Issue 2096. Issue 2096. Encode @ : in username / password when connect
to mongo

* Issue 2096. Bump mongodb chart version : 7.8.10 -> 7.8.11

Co-authored-by: feifei-liu <feifei.liu@telepathy.ai>
Co-authored-by: Andrés Bono <andresbono@vmware.com>
2020-03-23 10:10:26 +01:00
Sven
20312fc012 Add serviceAccount.create and serviceAccount.name to mongodb chart (#2106)
* [bitnami/mongodb] Add serviceAccount.create and serviceAccount.name to mongodb chart 

Signed-off-by: Sven Tschui <sventschui@gmail.com>
2020-03-23 09:35:00 +01:00
Miguel Ángel Cabrera Miñagorri
301bb18b0f [bitnami/mongodb] Fix svc name in arbitrer (#2076)
* [bitnami/mongodb] Fix svc name in arbitrer

* Fix templates indentation

* Update Chart.yaml

Co-authored-by: Carlos Rodríguez Hernández <crhernandez@bitnami.com>
2020-03-18 15:49:10 +01:00
Bitnami Containers
9601c816aa [bitnami/mongodb] Release 7.8.10 updating components versions
Signed-off-by: Bitnami Containers <containers@bitnami.com>
2020-03-11 19:46:14 +00:00
Carlos Rodríguez Hernández
a0e44f7d6a Move charts from upstreamed folder to bitnami (#2032)
* Move charts from upstreamed folder to bitnami

Signed-off-by: Carlos Rodriguez Hernandez <crhernandez@bitnami.com>

* Remove root .helmignore

Signed-off-by: Carlos Rodriguez Hernandez <crhernandez@bitnami.com>

* Bump charts version

Signed-off-by: Carlos Rodriguez Hernandez <crhernandez@bitnami.com>

* Remove file added by error

Signed-off-by: Carlos Rodriguez Hernandez <crhernandez@bitnami.com>

* Update Chart.yaml
2020-03-11 17:11:37 +01:00