* [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>
* [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>
* 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>
* [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>
* [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>