Skip to content

Commit f73cc81

Browse files
Kubernetes Enterprise Operator Release 1.17.0 (#230)
1 parent fcaced1 commit f73cc81

File tree

26 files changed

+427
-225
lines changed

26 files changed

+427
-225
lines changed

crds.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2116,6 +2116,8 @@ spec:
21162116
type: string
21172117
s3BucketName:
21182118
type: string
2119+
s3RegionOverride:
2120+
type: string
21192121
s3SecretRef:
21202122
properties:
21212123
name:
@@ -2167,6 +2169,8 @@ spec:
21672169
type: string
21682170
s3BucketName:
21692171
type: string
2172+
s3RegionOverride:
2173+
type: string
21702174
s3SecretRef:
21712175
properties:
21722176
name:

dockerfiles/mongodb-enterprise-appdb/10.2.15.5958-1_4.2.11-ent/ubuntu/Dockerfile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
ARG imagebase
22
FROM ${imagebase} as base
33

4-
FROM ubuntu:xenial-20210416
4+
FROM ubuntu:xenial-20210114
5+
6+
57

68

79
LABEL name="MongoDB Enterprise AppDB" \

dockerfiles/mongodb-enterprise-database/2.0.0/ubuntu/Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
ARG imagebase
22
FROM ${imagebase} as base
33

4-
FROM ubuntu:xenial-20210416
4+
FROM ubuntu:xenial-20210114
5+
56

67

78

dockerfiles/mongodb-enterprise-operator/1.10.0/ubi/Dockerfile

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -9,19 +9,19 @@ FROM registry.access.redhat.com/ubi8/ubi
99

1010

1111
LABEL name="MongoDB Enterprise Operator" \
12-
maintainer="support@mongodb.com" \
13-
vendor="MongoDB" \
14-
version="1.10.0" \
15-
release="1" \
16-
summary="MongoDB Enterprise Operator Image" \
17-
description="MongoDB Enterprise Operator Image"
12+
maintainer="support@mongodb.com" \
13+
vendor="MongoDB" \
14+
version="1.10.0" \
15+
release="1" \
16+
summary="MongoDB Enterprise Operator Image" \
17+
description="MongoDB Enterprise Operator Image"
1818

1919

2020
# Building an UBI-based image: https://red.ht/3n6b9y0
2121
RUN yum update \
22-
--disableplugin=subscription-manager \
23-
--disablerepo=* --enablerepo=ubi-8-appstream --enablerepo=ubi-8-baseos -y \
24-
&& rm -rf /var/cache/yum
22+
--disableplugin=subscription-manager \
23+
--disablerepo=* --enablerepo=ubi-8-appstream-rpms --enablerepo=ubi-8-baseos-rpms -y \
24+
&& rm -rf /var/cache/yum
2525

2626

2727

dockerfiles/mongodb-enterprise-operator/1.10.0/ubuntu/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
ARG imagebase
66
FROM ${imagebase} as base
77

8-
FROM ubuntu:xenial-20210416
8+
FROM ubuntu:xenial-20210114
99

1010

1111
LABEL name="MongoDB Enterprise Operator" \

dockerfiles/mongodb-enterprise-operator/1.11.0/ubi/Dockerfile

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -9,19 +9,19 @@ FROM registry.access.redhat.com/ubi8/ubi
99

1010

1111
LABEL name="MongoDB Enterprise Operator" \
12-
maintainer="support@mongodb.com" \
13-
vendor="MongoDB" \
14-
version="1.11.0" \
15-
release="1" \
16-
summary="MongoDB Enterprise Operator Image" \
17-
description="MongoDB Enterprise Operator Image"
12+
maintainer="support@mongodb.com" \
13+
vendor="MongoDB" \
14+
version="1.11.0" \
15+
release="1" \
16+
summary="MongoDB Enterprise Operator Image" \
17+
description="MongoDB Enterprise Operator Image"
1818

1919

2020
# Building an UBI-based image: https://red.ht/3n6b9y0
2121
RUN yum update \
22-
--disableplugin=subscription-manager \
23-
--disablerepo=* --enablerepo=ubi-8-appstream --enablerepo=ubi-8-baseos -y \
24-
&& rm -rf /var/cache/yum
22+
--disableplugin=subscription-manager \
23+
--disablerepo=* --enablerepo=ubi-8-appstream-rpms --enablerepo=ubi-8-baseos-rpms -y \
24+
&& rm -rf /var/cache/yum
2525

2626

2727

dockerfiles/mongodb-enterprise-operator/1.12.0/ubi/Dockerfile

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -9,19 +9,19 @@ FROM registry.access.redhat.com/ubi8/ubi-minimal
99

1010

1111
LABEL name="MongoDB Enterprise Operator" \
12-
maintainer="support@mongodb.com" \
13-
vendor="MongoDB" \
14-
version="1.12.0" \
15-
release="1" \
16-
summary="MongoDB Enterprise Operator Image" \
17-
description="MongoDB Enterprise Operator Image"
12+
maintainer="support@mongodb.com" \
13+
vendor="MongoDB" \
14+
version="1.12.0" \
15+
release="1" \
16+
summary="MongoDB Enterprise Operator Image" \
17+
description="MongoDB Enterprise Operator Image"
1818

1919

2020
# Building an UBI-based image: https://red.ht/3n6b9y0
2121
RUN microdnf update \
22-
--disableplugin=subscription-manager \
23-
--disablerepo=* --enablerepo=ubi-8-appstream --enablerepo=ubi-8-baseos -y \
24-
&& rm -rf /var/cache/yum
22+
--disableplugin=subscription-manager \
23+
--disablerepo=* --enablerepo=ubi-8-appstream-rpms --enablerepo=ubi-8-baseos-rpms -y \
24+
&& rm -rf /var/cache/yum
2525

2626

2727

dockerfiles/mongodb-enterprise-operator/1.13.0/ubi/Dockerfile

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -9,19 +9,19 @@ FROM registry.access.redhat.com/ubi8/ubi-minimal
99

1010

1111
LABEL name="MongoDB Enterprise Operator" \
12-
maintainer="support@mongodb.com" \
13-
vendor="MongoDB" \
14-
version="1.13.0" \
15-
release="1" \
16-
summary="MongoDB Enterprise Operator Image" \
17-
description="MongoDB Enterprise Operator Image"
12+
maintainer="support@mongodb.com" \
13+
vendor="MongoDB" \
14+
version="1.13.0" \
15+
release="1" \
16+
summary="MongoDB Enterprise Operator Image" \
17+
description="MongoDB Enterprise Operator Image"
1818

1919

2020
# Building an UBI-based image: https://red.ht/3n6b9y0
2121
RUN microdnf update \
22-
--disableplugin=subscription-manager \
23-
--disablerepo=* --enablerepo=ubi-8-appstream --enablerepo=ubi-8-baseos -y \
24-
&& rm -rf /var/cache/yum
22+
--disableplugin=subscription-manager \
23+
--disablerepo=* --enablerepo=ubi-8-appstream-rpms --enablerepo=ubi-8-baseos-rpms -y \
24+
&& rm -rf /var/cache/yum
2525

2626

2727

dockerfiles/mongodb-enterprise-operator/1.14.0/ubi/Dockerfile

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -9,19 +9,19 @@ FROM registry.access.redhat.com/ubi8/ubi-minimal
99

1010

1111
LABEL name="MongoDB Enterprise Operator" \
12-
maintainer="support@mongodb.com" \
13-
vendor="MongoDB" \
14-
version="1.14.0" \
15-
release="1" \
16-
summary="MongoDB Enterprise Operator Image" \
17-
description="MongoDB Enterprise Operator Image"
12+
maintainer="support@mongodb.com" \
13+
vendor="MongoDB" \
14+
version="1.14.0" \
15+
release="1" \
16+
summary="MongoDB Enterprise Operator Image" \
17+
description="MongoDB Enterprise Operator Image"
1818

1919

2020
# Building an UBI-based image: https://red.ht/3n6b9y0
2121
RUN microdnf update \
22-
--disableplugin=subscription-manager \
23-
--disablerepo=* --enablerepo=ubi-8-appstream --enablerepo=ubi-8-baseos -y \
24-
&& rm -rf /var/cache/yum
22+
--disableplugin=subscription-manager \
23+
--disablerepo=* --enablerepo=ubi-8-appstream-rpms --enablerepo=ubi-8-baseos-rpms -y \
24+
&& rm -rf /var/cache/yum
2525

2626

2727

dockerfiles/mongodb-enterprise-operator/1.15.0/ubi/Dockerfile

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -9,19 +9,19 @@ FROM registry.access.redhat.com/ubi8/ubi-minimal
99

1010

1111
LABEL name="MongoDB Enterprise Operator" \
12-
maintainer="support@mongodb.com" \
13-
vendor="MongoDB" \
14-
version="1.15.0" \
15-
release="1" \
16-
summary="MongoDB Enterprise Operator Image" \
17-
description="MongoDB Enterprise Operator Image"
12+
maintainer="support@mongodb.com" \
13+
vendor="MongoDB" \
14+
version="1.15.0" \
15+
release="1" \
16+
summary="MongoDB Enterprise Operator Image" \
17+
description="MongoDB Enterprise Operator Image"
1818

1919

2020
# Building an UBI-based image: https://red.ht/3n6b9y0
2121
RUN microdnf update \
22-
--disableplugin=subscription-manager \
23-
--disablerepo=* --enablerepo=ubi-8-appstream --enablerepo=ubi-8-baseos -y \
24-
&& rm -rf /var/cache/yum
22+
--disableplugin=subscription-manager \
23+
--disablerepo=* --enablerepo=ubi-8-appstream-rpms --enablerepo=ubi-8-baseos-rpms -y \
24+
&& rm -rf /var/cache/yum
2525

2626

2727

0 commit comments

Comments
 (0)