Skip to content

Commit 157d9a5

Browse files
author
Nikolas De Giorgis
committedJun 25, 2021
Updated public repo
1 parent 2b06c4b commit 157d9a5

File tree

8 files changed

+58
-16
lines changed

8 files changed

+58
-16
lines changed
 

‎dockerfiles/mongodb-enterprise-init-ops-manager/1.0.3/ubi/Dockerfile

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,7 @@ LABEL name="MongoDB Enterprise Ops Manager Init" \
1515
COPY --from=base /data/scripts /scripts
1616
COPY --from=base /data/licenses /licenses
1717

18-
19-
RUN microdnf update --nodocs \
20-
&& microdnf clean all
21-
22-
2318
USER 2000
24-
ENTRYPOINT [ "/bin/cp", "-f", "/scripts/docker-entry-point.sh", "/scripts/backup-daemon-liveness-probe.sh", "/scripts/mmsconfiguration", "/scripts/backup-daemon-readiness-probe", "/opt/scripts/" ]
19+
ENTRYPOINT [ "/bin/cp", "-f", "/scripts/docker-entry-point.sh", "/scripts/mmsconfiguration", "/opt/scripts/" ]
2520

2621

‎dockerfiles/mongodb-enterprise-init-ops-manager/1.0.3/ubuntu/Dockerfile

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,7 @@ LABEL name="MongoDB Enterprise Ops Manager Init" \
1515
COPY --from=base /data/scripts /scripts
1616
COPY --from=base /data/licenses /licenses
1717

18-
19-
20-
2118
USER 2000
22-
ENTRYPOINT [ "/bin/cp", "-f", "/scripts/docker-entry-point.sh", "/scripts/backup-daemon-liveness-probe.sh", "/scripts/mmsconfiguration", "/scripts/backup-daemon-readiness-probe", "/opt/scripts/" ]
19+
ENTRYPOINT [ "/bin/cp", "-f", "/scripts/docker-entry-point.sh", "/scripts/mmsconfiguration", "/opt/scripts/" ]
2320

2421

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
ARG imagebase
2+
FROM ${imagebase} as base
3+
4+
FROM registry.access.redhat.com/ubi8/ubi-minimal
5+
6+
LABEL name="MongoDB Enterprise Ops Manager Init" \
7+
maintainer="support@mongodb.com" \
8+
vendor="MongoDB" \
9+
version="mongodb-enterprise-init-ops-manager-1.0.4" \
10+
release="1" \
11+
summary="MongoDB Enterprise Ops Manager Init Image" \
12+
description="Startup Scripts for MongoDB Enterprise Ops Manager"
13+
14+
15+
COPY --from=base /data/scripts /scripts
16+
COPY --from=base /data/licenses /licenses
17+
18+
19+
RUN microdnf update --nodocs \
20+
&& microdnf clean all
21+
22+
23+
USER 2000
24+
ENTRYPOINT [ "/bin/cp", "-f", "/scripts/docker-entry-point.sh", "/scripts/backup-daemon-liveness-probe.sh", "/scripts/mmsconfiguration", "/scripts/backup-daemon-readiness-probe", "/opt/scripts/" ]
25+
26+
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
ARG imagebase
2+
FROM ${imagebase} as base
3+
4+
FROM busybox
5+
6+
LABEL name="MongoDB Enterprise Ops Manager Init" \
7+
maintainer="support@mongodb.com" \
8+
vendor="MongoDB" \
9+
version="mongodb-enterprise-init-ops-manager-1.0.4" \
10+
release="1" \
11+
summary="MongoDB Enterprise Ops Manager Init Image" \
12+
description="Startup Scripts for MongoDB Enterprise Ops Manager"
13+
14+
15+
COPY --from=base /data/scripts /scripts
16+
COPY --from=base /data/licenses /licenses
17+
18+
19+
20+
21+
USER 2000
22+
ENTRYPOINT [ "/bin/cp", "-f", "/scripts/docker-entry-point.sh", "/scripts/backup-daemon-liveness-probe.sh", "/scripts/mmsconfiguration", "/scripts/backup-daemon-readiness-probe", "/opt/scripts/" ]
23+
24+

‎helm_chart/values-openshift.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ operator:
1717
# Name of the deployment of the operator pod
1818
deployment_name: mongodb-enterprise-operator
1919

20-
# Version of mongodb-enterprise-operator and mongodb-enterprise-database images
20+
# Version of mongodb-enterprise-operator
2121
version: 1.11.0
2222

2323
# The Custom Resources that will be watched by the Operator. Needs to be changed if only some of the CRDs are installed
@@ -41,7 +41,7 @@ opsManager:
4141

4242
initOpsManager:
4343
name: mongodb-enterprise-init-ops-manager
44-
version: 1.0.3
44+
version: 1.0.4
4545

4646
## Application Database
4747
appDb:

‎helm_chart/values.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ operator:
2020
# Name of the deployment of the operator pod
2121
deployment_name: mongodb-enterprise-operator
2222

23-
# Version of mongodb-enterprise-operator and mongodb-enterprise-database images
23+
# Version of mongodb-enterprise-operator
2424
version: 1.11.0
2525

2626
# The Custom Resources that will be watched by the Operator. Needs to be changed if only some of the CRDs are installed
@@ -44,7 +44,7 @@ opsManager:
4444

4545
initOpsManager:
4646
name: mongodb-enterprise-init-ops-manager
47-
version: 1.0.3
47+
version: 1.0.4
4848

4949
## Application Database
5050
initAppDb:

‎mongodb-enterprise-openshift.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,7 @@ spec:
262262
- name: INIT_OPS_MANAGER_IMAGE_REPOSITORY
263263
value: registry.connect.redhat.com/mongodb/mongodb-enterprise-init-ops-manager
264264
- name: INIT_OPS_MANAGER_VERSION
265-
value: 1.0.3
265+
value: 1.0.4
266266
# AppDB
267267
- name: INIT_APPDB_IMAGE_REPOSITORY
268268
value: registry.connect.redhat.com/mongodb/mongodb-enterprise-init-appdb

‎mongodb-enterprise.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,7 @@ spec:
263263
- name: INIT_OPS_MANAGER_IMAGE_REPOSITORY
264264
value: quay.io/mongodb/mongodb-enterprise-init-ops-manager
265265
- name: INIT_OPS_MANAGER_VERSION
266-
value: 1.0.3
266+
value: 1.0.4
267267
# AppDB
268268
- name: INIT_APPDB_IMAGE_REPOSITORY
269269
value: quay.io/mongodb/mongodb-enterprise-init-appdb

0 commit comments

Comments
 (0)