Skip to content

Commit a35320e

Browse files
committed
Fixing OpsManager configuration settings
1 parent e9cc668 commit a35320e

File tree

3 files changed

+20
-22
lines changed

3 files changed

+20
-22
lines changed

charts/ent-operator-opsmanager/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
apiVersion: v2
22
name: mongodb-enterprise-opsmanager
33
description: MongoDB Kubernetes Enterprise Operator - Ops Manager Chart
4-
version: 0.2.0
4+
version: 0.2.1
55
kubeVersion: '>=1.15-0'
66
keywords:
77
- opsManager

charts/ent-operator-opsmanager/templates/ops-manager.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ metadata:
1010

1111
spec:
1212
replicas: {{ .Values.replicas | default 1 }}
13-
version: {{ .Values.version | default "4.4.2" }}
13+
version: {{ .Values.version | default "4.4.6" }}
1414
adminCredentials: {{ .Values.name }}-global-admin
1515
persistent: true
1616

@@ -19,8 +19,8 @@ spec:
1919
{{- toYaml .Values.configuration | nindent 4 }}
2020

2121
statefulSet:
22-
spec:
23-
{{- if eq .Values.configuration.automation.versions.source "local" }}
22+
spec:
23+
{{- if .Values.installerVolumeSize }}
2424
# the Persistent Volume Claim will be created for each Ops Manager Pod
2525
volumeClaimTemplates:
2626
- metadata:

charts/ent-operator-opsmanager/values.yaml

Lines changed: 16 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
name: ops-manager
33
replicas: 1
4-
version: "4.4.2"
4+
version: "4.4.6"
55

66

77
# Set this to true if your cluster is managing SecurityContext for you.
@@ -30,33 +30,31 @@ deployValidationWebhooks: true # Optional configuration.
3030
# Deploy Ops Manager backup daemon and set it up.
3131
# Note: OpLogs DB needs to be provisioned separately
3232
deployBackupInfrastructure: true
33-
installerVolumeSize: "20G"
33+
# Provision Volume that will store MongoDB installers. Use with Version.source: local
34+
provisionInstallersVolumeSize: "20G"
3435
# Ops Manager configuration option. For a complete list of options please visit
3536
# https://docs.opsmanager.mongodb.com/current/reference/configuration
37+
3638
configuration:
3739
# for fully air-gapped environemnts choose "local"
3840
# to proxy mongodb installers download via Ops Manager choose "remote"
39-
automation:
40-
versions:
41-
source: "mongodb" # [ mongodb| local| remote ]
42-
mms:
41+
"automation.versions.source": "remote" # [ local| hybrid| remote ]
42+
4343
# passing mms.ignoreInitialUiSetup=true allows to avoid the setup wizard in Ops Manager. Note, that
4444
# this requires to set some mandatory configuration properties, see
4545
# https://docs.opsmanager.mongodb.com/current/reference/configuration/index.html#mms.ignoreInitialUiSetup
46-
ignoreInitialUiSetup: "true"
46+
mms.ignoreInitialUiSetup: "true"
4747

48-
adminEmailAddr: "[email protected]"
49-
fromEmailAddr: "[email protected]"
48+
mms.adminEmailAddr: "[email protected]"
49+
mms.fromEmailAddr: "[email protected]"
5050

51-
replyToEmailAddr: "[email protected]"
52-
mail:
53-
hostname: email-smtp.us-east-1.amazonaws.com"
54-
port: "465"
55-
ssl: "true"
56-
transport: "smtp"
57-
minimumTLSVersion: "TLSv1.2"
58-
publicApi:
59-
whitelistEnabled: "false"
51+
mms.replyToEmailAddr: "[email protected]"
52+
mms.mail.hostname: "email-smtp.us-east-1.amazonaws.com"
53+
mms.mail.port: "465"
54+
mms.mail.ssl: "true"
55+
mms.mail.transport: "smtp"
56+
mms.minimumTLSVersion: "TLSv1.2"
57+
mms.publicApi.whitelistEnabled: "false"
6058

6159
# Ops Manager Global Admin user name and password.
6260
# Ensure it complies with OpsManager password format

0 commit comments

Comments
 (0)