Skip to content

Commit 0f68551

Browse files
Kubernetes Enterprise Operator Release 1.15.2 (#218)
1 parent f0cc0be commit 0f68551

File tree

3 files changed

+59
-4
lines changed

3 files changed

+59
-4
lines changed

crds.yaml

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -402,6 +402,53 @@ spec:
402402
type: object
403403
x-kubernetes-preserve-unknown-fields: true
404404
type: object
405+
prometheus:
406+
description: Prometheus configurations.
407+
properties:
408+
metricsPath:
409+
description: Indicates path to the metrics endpoint.
410+
pattern: ^\/[a-z0-9]+$
411+
type: string
412+
passwordSecretRef:
413+
description: Name of a Secret containing a HTTP Basic Auth Password.
414+
properties:
415+
key:
416+
description: Key is the key in the secret storing this password.
417+
Defaults to "password"
418+
type: string
419+
name:
420+
description: Name is the name of the secret storing this user's
421+
password
422+
type: string
423+
required:
424+
- name
425+
type: object
426+
port:
427+
description: Port where metrics endpoint will bind to. Defaults
428+
to 9216.
429+
type: integer
430+
tlsSecretKeyRef:
431+
description: Name of a Secret (type kubernetes.io/tls) holding
432+
the certificates to use in the Prometheus endpoint.
433+
properties:
434+
key:
435+
description: Key is the key in the secret storing this password.
436+
Defaults to "password"
437+
type: string
438+
name:
439+
description: Name is the name of the secret storing this user's
440+
password
441+
type: string
442+
required:
443+
- name
444+
type: object
445+
username:
446+
description: HTTP Basic Auth Username for metrics endpoint.
447+
type: string
448+
required:
449+
- passwordSecretRef
450+
- username
451+
type: object
405452
security:
406453
properties:
407454
authentication:
@@ -2089,6 +2136,10 @@ spec:
20892136
store configs used for backup.
20902137
items:
20912138
properties:
2139+
customCertificate:
2140+
description: Set this to "true" when you have custom certificates
2141+
for your S3 buckets
2142+
type: boolean
20922143
irsaEnabled:
20932144
description: 'This is only set to "true" when user is running
20942145
in EKS and is using AWS IRSA to configure S3 snapshot
@@ -2136,6 +2187,10 @@ spec:
21362187
s3Stores:
21372188
items:
21382189
properties:
2190+
customCertificate:
2191+
description: Set this to "true" when you have custom certificates
2192+
for your S3 buckets
2193+
type: boolean
21392194
irsaEnabled:
21402195
description: 'This is only set to "true" when user is running
21412196
in EKS and is using AWS IRSA to configure S3 snapshot

mongodb-enterprise-openshift.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ spec:
189189
serviceAccountName: mongodb-enterprise-operator
190190
containers:
191191
- name: mongodb-enterprise-operator
192-
image: registry.connect.redhat.com/mongodb/enterprise-operator:1.15.1
192+
image: registry.connect.redhat.com/mongodb/enterprise-operator:1.15.2
193193
imagePullPolicy: Always
194194
args:
195195
- -watch-resource=mongodb
@@ -225,7 +225,7 @@ spec:
225225
- name: INIT_DATABASE_IMAGE_REPOSITORY
226226
value: registry.connect.redhat.com/mongodb/mongodb-enterprise-init-database
227227
- name: INIT_DATABASE_VERSION
228-
value: 1.0.8
228+
value: 1.0.9
229229
- name: DATABASE_VERSION
230230
value: 2.0.2
231231
# Ops Manager

mongodb-enterprise.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ spec:
192192
runAsUser: 2000
193193
containers:
194194
- name: mongodb-enterprise-operator
195-
image: quay.io/mongodb/mongodb-enterprise-operator:1.15.1
195+
image: quay.io/mongodb/mongodb-enterprise-operator:1.15.2
196196
imagePullPolicy: Always
197197
args:
198198
- -watch-resource=mongodb
@@ -226,7 +226,7 @@ spec:
226226
- name: INIT_DATABASE_IMAGE_REPOSITORY
227227
value: quay.io/mongodb/mongodb-enterprise-init-database
228228
- name: INIT_DATABASE_VERSION
229-
value: 1.0.8
229+
value: 1.0.9
230230
- name: DATABASE_VERSION
231231
value: 2.0.2
232232
# Ops Manager

0 commit comments

Comments
 (0)