mirror of
https://github.com/helm/charts.git
synced 2026-08-23 22:37:45 +00:00
[stable/mongodb] Add mongodbSystemLogVerbosity configuration option (#10501)
Signed-off-by: tompizmor <tompizmor@gmail.com>
This commit is contained in:
committed by
Kubernetes Prow Robot
parent
12efcd90d7
commit
aaf51886eb
@@ -1,5 +1,5 @@
|
||||
name: mongodb
|
||||
version: 5.0.2
|
||||
version: 5.1.0
|
||||
appVersion: 4.0.3
|
||||
description: NoSQL document-oriented database that stores JSON-like documents with dynamic schemas, simplifying the integration of data in content-driven applications.
|
||||
keywords:
|
||||
|
||||
@@ -60,6 +60,7 @@ The following table lists the configurable parameters of the MongoDB chart and t
|
||||
| `mongodbPassword` | MongoDB custom user password | `random alhpanumeric string (10)` |
|
||||
| `mongodbDatabase` | Database to create | `nil` |
|
||||
| `mongodbEnableIPv6` | Switch to enable/disable IPv6 on MongoDB | `true` |
|
||||
| `mongodbSystemLogVerbosity` | MongoDB systen log verbosity level | `0` |
|
||||
| `mongodbExtraFlags` | MongoDB additional command line flags | [] |
|
||||
| `service.annotations` | Kubernetes service annotations | `{}` |
|
||||
| `service.type` | Kubernetes Service type | `ClusterIP` |
|
||||
|
||||
@@ -76,6 +76,8 @@ spec:
|
||||
name: {{ if .Values.existingSecret }}{{ .Values.existingSecret }}{{- else }}{{ template "mongodb.fullname" . }}{{- end }}
|
||||
key: mongodb-password
|
||||
{{- end }}
|
||||
- name: MONGODB_SYSTEM_LOG_VERBOSITY
|
||||
value: {{ .Values.mongodbSystemLogVerbosity | quote}}
|
||||
- name: MONGODB_DATABASE
|
||||
value: {{ default "" .Values.mongodbDatabase | quote }}
|
||||
- name: MONGODB_ENABLE_IPV6
|
||||
|
||||
@@ -62,6 +62,8 @@ spec:
|
||||
- containerPort: {{ .Values.service.port }}
|
||||
name: mongodb
|
||||
env:
|
||||
- name: MONGODB_SYSTEM_LOG_VERBOSITY
|
||||
value: {{ .Values.mongodbSystemLogVerbosity | quote}}
|
||||
- name: MONGODB_POD_NAME
|
||||
valueFrom:
|
||||
fieldRef:
|
||||
|
||||
@@ -67,6 +67,8 @@ spec:
|
||||
- containerPort: {{ .Values.service.port }}
|
||||
name: mongodb
|
||||
env:
|
||||
- name: MONGODB_SYSTEM_LOG_VERBOSITY
|
||||
value: {{ .Values.mongodbSystemLogVerbosity | quote}}
|
||||
- name: MONGODB_POD_NAME
|
||||
valueFrom:
|
||||
fieldRef:
|
||||
|
||||
@@ -68,6 +68,8 @@ spec:
|
||||
- containerPort: {{ .Values.service.port }}
|
||||
name: mongodb
|
||||
env:
|
||||
- name: MONGODB_SYSTEM_LOG_VERBOSITY
|
||||
value: {{ .Values.mongodbSystemLogVerbosity | quote}}
|
||||
- name: MONGODB_POD_NAME
|
||||
valueFrom:
|
||||
fieldRef:
|
||||
|
||||
@@ -50,6 +50,11 @@ usePassword: true
|
||||
##
|
||||
mongodbEnableIPv6: true
|
||||
|
||||
## MongoDB System Log Verbosity Level
|
||||
## ref: https://github.com/bitnami/bitnami-docker-mongodb#increase-system-log-verbosity-level
|
||||
##
|
||||
mongodbSystemLogVerbosity: 0
|
||||
|
||||
## MongoDB additional command line flags
|
||||
##
|
||||
## Can be used to specify command line flags, for example:
|
||||
|
||||
@@ -51,6 +51,11 @@ usePassword: true
|
||||
##
|
||||
mongodbEnableIPv6: true
|
||||
|
||||
## MongoDB System Log Verbosity Level
|
||||
## ref: https://github.com/bitnami/bitnami-docker-mongodb#increase-system-log-verbosity-level
|
||||
##
|
||||
mongodbSystemLogVerbosity: 0
|
||||
|
||||
## MongoDB additional command line flags
|
||||
##
|
||||
## Can be used to specify command line flags, for example:
|
||||
|
||||
Reference in New Issue
Block a user