Files
charts/bitnami/mongodb/templates/secrets-ca.yaml
Fran Mulero fdd8b69129 [bitnami/mongodb] Standarize mongodb (#9648)
* MongoDB standarization

Signed-off-by: Fran Mulero <fmulero@vmware.com>

* Update README.md with readme-generator-for-helm

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

* Service review

Signed-off-by: Fran Mulero <fmulero@vmware.com>

* Amend hidden.service.portName metadata

Signed-off-by: Fran Mulero <fmulero@vmware.com>

* revert changes in values-replicaset-with-rbac

Signed-off-by: Fran Mulero <fmulero@vmware.com>

* Add upgrade codumentation

Signed-off-by: Fran Mulero <fmulero@vmware.com>

* Recover passwords from previous secrets during upgrades

Signed-off-by: Fran Mulero <fmulero@vmware.com>

* Update README.md with readme-generator-for-helm

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

* Amend labeels in service monitor

Signed-off-by: Fran Mulero <fmulero@vmware.com>

* Include tempplate render for extraVolumes and extraVolumeMounts

Signed-off-by: Fran Mulero <fmulero@vmware.com>

* Review PR and apply comments/suggestions

Signed-off-by: Fran Mulero <fmulero@vmware.com>

* avoid changing ownership of '.snapshot' and 'lost+found'

Signed-off-by: Fran Mulero <fmulero@vmware.com>

* Amend readme

Signed-off-by: Fran Mulero <fmulero@vmware.com>

* Amend certificate autogeneration to keep previous behavior

Signed-off-by: Fran Mulero <fmulero@vmware.com>

* Implement changes requested in PR

Signed-off-by: Fran Mulero <fmulero@vmware.com>

* Update README.md with readme-generator-for-helm

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

* Update VIB values

Signed-off-by: Fran Mulero <fmulero@vmware.com>

* Add sessionAffinity and fix typo in prometheus rules

Signed-off-by: Fran Mulero <fmulero@vmware.com>

* Update README.md with readme-generator-for-helm

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

* Apply suggestions

Signed-off-by: Fran Mulero <fmulero@vmware.com>

* Bump image version

Signed-off-by: Fran Mulero <fmulero@vmware.com>

* Review tiemouts after mongosh inclusion

Signed-off-by: Fran Mulero <fmulero@vmware.com>

* [bitnami/mongodb] Update components versions

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

Co-authored-by: Bitnami Containers <containers@bitnami.com>
2022-04-29 15:37:24 +02:00

38 lines
1.6 KiB
YAML

{{- if (include "mongodb.createTlsSecret" .) }}
{{- $fullname := include "mongodb.fullname" . }}
{{- $releaseNamespace := .Release.Namespace }}
{{- $clusterDomain := .Values.clusterDomain }}
{{- $cn := printf "%s.%s.svc.%s" $fullname .Release.Namespace $clusterDomain }}
apiVersion: v1
kind: Secret
metadata:
name: {{ template "mongodb.tlsSecretName" . }}
namespace: {{ template "mongodb.namespace" . }}
labels:
{{- include "common.labels.standard" . | nindent 4 }}
app.kubernetes.io/component: mongodb
{{- 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 }}
type: Opaque
data:
{{- if or .Values.tls.caCert .Values.tls.caKey (not .Values.tls.autoGenerated) }}
{{- $ca := buildCustomCert (required "A valid .Values.tls.caCert is required!" .Values.tls.caCert) (required "A valid .Values.tls.caKey is required!" .Values.tls.caKey) }}
{{- $cert := genSignedCert $cn nil nil 3650 $ca }}
{{- $pem := printf "%s%s" $cert.Cert $cert.Key }}
mongodb-ca-cert: {{ b64enc $ca.Cert }}
mongodb-ca-key: {{ b64enc $ca.Key }}
client-pem: {{ b64enc $pem }}
{{- else }}
{{- $ca:= genCA "myMongo-ca" 3650 }}
{{- $cert := genSignedCert $cn nil nil 3650 $ca }}
{{- $pem := printf "%s%s" $cert.Cert $cert.Key }}
mongodb-ca-cert: {{ b64enc $ca.Cert }}
mongodb-ca-key: {{ b64enc $ca.Key }}
client-pem: {{ b64enc $pem }}
{{- end }}
{{- end }}