Skip to content

Commit 64fbd8e

Browse files
committed
Merge branch 'multi-arch-pipeline-combined' of github.com:mongodb/mongodb-kubernetes into multi-arch-pipeline-combined
2 parents d5590e9 + 94be784 commit 64fbd8e

File tree

22 files changed

+110
-362
lines changed

22 files changed

+110
-362
lines changed

build_info.json

Lines changed: 4 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -200,9 +200,7 @@
200200
"repositories": ["268558157000.dkr.ecr.us-east-1.amazonaws.com/staging/mongodb-kubernetes-readinessprobe"],
201201
"platforms": [
202202
"linux/arm64",
203-
"linux/amd64",
204-
"linux/s390x",
205-
"linux/ppc64le"
203+
"linux/amd64"
206204
]
207205
},
208206
"release": {
@@ -213,9 +211,7 @@
213211
],
214212
"platforms": [
215213
"linux/arm64",
216-
"linux/amd64",
217-
"linux/s390x",
218-
"linux/ppc64le"
214+
"linux/amd64"
219215
]
220216
}
221217
},
@@ -232,9 +228,7 @@
232228
"repositories": ["268558157000.dkr.ecr.us-east-1.amazonaws.com/staging/mongodb-kubernetes-operator-version-upgrade-post-start-hook"],
233229
"platforms": [
234230
"linux/arm64",
235-
"linux/amd64",
236-
"linux/s390x",
237-
"linux/ppc64le"
231+
"linux/amd64"
238232
]
239233
},
240234
"release": {
@@ -243,9 +237,7 @@
243237
"repositories": ["quay.io/mongodb/mongodb-kubernetes-operator-version-upgrade-post-start-hook"],
244238
"platforms": [
245239
"linux/arm64",
246-
"linux/amd64",
247-
"linux/s390x",
248-
"linux/ppc64le"
240+
"linux/amd64"
249241
]
250242
}
251243
},

docker/mongodb-agent/Dockerfile.atomic

Lines changed: 9 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM registry.access.redhat.com/ubi9/ubi-minimal AS tools_downloader
1+
FROM --platform=${BUILDPLATFORM} registry.access.redhat.com/ubi9/ubi-minimal AS tools_downloader
22

33
ARG TARGETPLATFORM
44
ARG mongodb_tools_url
@@ -23,7 +23,7 @@ RUN case ${TARGETPLATFORM} in \
2323
RUN tar xfz /tools/mongodb_tools.tgz --directory /tools \
2424
&& rm /tools/mongodb_tools.tgz
2525

26-
FROM registry.access.redhat.com/ubi9/ubi-minimal AS agent_downloader
26+
FROM --platform=${BUILDPLATFORM} registry.access.redhat.com/ubi9/ubi-minimal AS agent_downloader
2727

2828
ARG TARGETPLATFORM
2929
ARG mongodb_agent_url
@@ -53,15 +53,6 @@ RUN tar xfz /agent/mongodb_agent.tgz \
5353

5454
FROM registry.access.redhat.com/ubi9/ubi-minimal
5555

56-
ARG TARGETARCH
57-
58-
# Create directories first
59-
RUN mkdir -p /tools /agent
60-
61-
# Copy the extracted tools and agent from the downloader stages
62-
COPY --from=tools_downloader "/tools/" /tools/
63-
COPY --from=agent_downloader "/agent/" /agent/
64-
6556
# Replace libcurl-minimal and curl-minimal with the full versions
6657
# https://bugzilla.redhat.com/show_bug.cgi?id=1994521
6758
RUN microdnf install -y libssh libpsl libbrotli
@@ -97,6 +88,13 @@ COPY ./docker/mongodb-agent/dummy-readinessprobe /usr/local/bin/dummy-readinessp
9788
RUN mkdir -p /var/lib/automation/config \
9889
&& chmod -R +r /var/lib/automation/config
9990

91+
# Create directories first
92+
RUN mkdir -p /tools /agent
93+
94+
# Copy the extracted tools and agent from the downloader stages
95+
COPY --from=tools_downloader "/tools/" /tools/
96+
COPY --from=agent_downloader "/agent/" /agent/
97+
10098
ARG version
10199

102100
LABEL name="MongoDB Agent" \

docker/mongodb-agent/README.md

Lines changed: 9 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -8,31 +8,13 @@ binaries from there. Then we continue with the other steps to fully build the im
88
For building the MongoDB Agent image locally use the example command:
99

1010
```bash
11-
VERSION="evergreen"
12-
AGENT_VERSION="108.0.7.8810-1"
13-
TOOLS_VERSION="100.12.0"
14-
MONGODB_TOOLS_URL="https://downloads.mongodb.org/tools/db"
15-
MONGODB_AGENT_URL="https://mciuploads.s3.amazonaws.com/mms-automation/mongodb-mms-build-agent/builds/automation-agent/prod"
16-
BASE_REPO_URL="268558157000.dkr.ecr.us-east-1.amazonaws.com/lucian.tosa/"
17-
INIT_DATABASE_IMAGE="${BASE_REPO_URL}mongodb-kubernetes-init-database:${VERSION}"
18-
MONGODB_AGENT_BASE="mongodb-mms-automation-agent"
19-
MONGODB_DATABASE_TOOLS_BASE="mongodb-database-tools"
20-
21-
22-
docker buildx build --progress plain --platform linux/amd64,linux/arm64,linux/s390x,linux/ppc64le . -f docker/mongodb-agent/Dockerfile -t "${BASE_REPO_URL}mongodb-agent:${AGENT_VERSION}_${VERSION}" \
23-
--build-arg version="${VERSION}" \
24-
--build-arg init_database_image="${INIT_DATABASE_IMAGE}" \
25-
--build-arg mongodb_tools_url="${MONGODB_TOOLS_URL}" \
26-
--build-arg mongodb_agent_url="${MONGODB_AGENT_URL}" \
27-
--build-arg mongodb_agent_version_s390x="${MONGODB_AGENT_BASE}-${AGENT_VERSION}.rhel7_s390x.tar.gz" \
28-
--build-arg mongodb_agent_version_ppc64le="${MONGODB_AGENT_BASE}-${AGENT_VERSION}.rhel8_ppc64le.tar.gz" \
29-
--build-arg mongodb_agent_version_amd64="${MONGODB_AGENT_BASE}-${AGENT_VERSION}.linux_x86_64.tar.gz" \
30-
--build-arg mongodb_agent_version_arm64="${MONGODB_AGENT_BASE}-${AGENT_VERSION}.amzn2_aarch64.tar.gz" \
31-
--build-arg mongodb_tools_version_arm64="${MONGODB_DATABASE_TOOLS_BASE}-rhel93-aarch64-${TOOLS_VERSION}.tgz" \
32-
--build-arg mongodb_tools_version_amd64="${MONGODB_DATABASE_TOOLS_BASE}-rhel93-x86_64-${TOOLS_VERSION}.tgz" \
33-
--build-arg mongodb_tools_version_s390x="${MONGODB_DATABASE_TOOLS_BASE}-rhel9-s390x-${TOOLS_VERSION}.tgz" \
34-
--build-arg mongodb_tools_version_ppc64le="${MONGODB_DATABASE_TOOLS_BASE}-rhel9-ppc64le-${TOOLS_VERSION}.tgz"
35-
36-
docker push "${BASE_REPO_URL}mongodb-agent:${AGENT_VERSION}_${VERSION}"
37-
11+
VERSION="108.0.7.8810-1"
12+
INIT_DATABASE_IMAGE="268558157000.dkr.ecr.us-east-1.amazonaws.com/dev/mongodb-kubernetes-init-database:1.1.0"
13+
MONGODB_TOOLS_URL_UBI="https://downloads.mongodb.org/tools/db/mongodb-database-tools-rhel93-x86_64-100.12.0.tgz"
14+
MONGODB_AGENT_URL_UBI="https://mciuploads.s3.amazonaws.com/mms-automation/mongodb-mms-build-agent/builds/automation-agent/prod/mongodb-mms-automation-agent-108.0.7.8810-1.rhel9_x86_64.tar.gz"
15+
docker buildx build --load --progress plain . -f docker/mongodb-agent/Dockerfile -t "mongodb-agent:${VERSION}_1.1.0" \
16+
--build-arg version="${VERSION}" \
17+
--build-arg init_database_image="${INIT_DATABASE_IMAGE}" \
18+
--build-arg mongodb_tools_url_ubi="${MONGODB_TOOLS_URL_UBI}" \
19+
--build-arg mongodb_agent_url_ubi="${MONGODB_AGENT_URL_UBI}"
3820
```

docker/mongodb-kubernetes-database/Dockerfile.atomic

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,6 @@ COPY ./docker/mongodb-kubernetes-database/LICENSE /data/licenses/mongodb-kuberne
44

55
FROM registry.access.redhat.com/ubi8/ubi-minimal
66

7-
ARG VERSION
8-
9-
LABEL name="MongoDB Kubernetes Database" \
10-
version="${VERSION}" \
11-
summary="MongoDB Kubernetes Database Image" \
12-
description="MongoDB Kubernetes Database Image" \
13-
vendor="MongoDB" \
14-
release="1" \
15-
maintainer="[email protected]"
16-
177
ENV MMS_HOME=/mongodb-automation
188
ENV MMS_LOG_DIR=/var/log/mongodb-mms-automation
199

@@ -57,6 +47,16 @@ RUN mkdir -p "${MMS_LOG_DIR}" \
5747
&& mkdir -p "${MMS_HOME}" \
5848
&& chmod -R 0775 "${MMS_HOME}"
5949

50+
ARG VERSION
51+
52+
LABEL name="MongoDB Kubernetes Database" \
53+
version="${VERSION}" \
54+
summary="MongoDB Kubernetes Database Image" \
55+
description="MongoDB Kubernetes Database Image" \
56+
vendor="MongoDB" \
57+
release="1" \
58+
maintainer="[email protected]"
59+
6060
# USER needs to be set for this image to pass RedHat verification. Some customers have these requirements as well
6161
# It does not matter what number it is, as long as it is set to something.
6262
# However, OpenShift will run the container as a random user,

docker/mongodb-kubernetes-database/README.md

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,7 @@ this images with.
3939
For building the MongoDB Database image locally use the example command:
4040

4141
```bash
42-
VERSION="1.3.0"
43-
BASE_REPO_URL="268558157000.dkr.ecr.us-east-1.amazonaws.com/lucian.tosa/"
44-
docker buildx build --load --progress plain --platform linux/amd64,linux/arm64,linux/s390x,linux/ppc64le . -f docker/mongodb-kubernetes-database/Dockerfile -t "${BASE_REPO_URL}mongodb-kubernetes-database:${VERSION}" \
42+
VERSION="1.0.1"
43+
docker buildx build --load --progress plain . -f docker/mongodb-kubernetes-database/Dockerfile -t "mongodb-kubernetes-database:${VERSION}" \
4544
--build-arg VERSION="${VERSION}"
46-
47-
docker push "${BASE_REPO_URL}mongodb-kubernetes-database:${VERSION}"
4845
```

docker/mongodb-kubernetes-init-appdb/Dockerfile.atomic

Lines changed: 47 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,49 @@
1+
FROM --platform=${BUILDPLATFORM} registry.access.redhat.com/ubi8/ubi-minimal AS tools_downloader
2+
3+
ARG mongodb_tools_url
4+
ARG mongodb_tools_version_s390x
5+
ARG mongodb_tools_version_ppc64le
6+
ARG mongodb_tools_version_amd64
7+
ARG mongodb_tools_version_arm64
8+
9+
RUN microdnf -y update --nodocs \
10+
&& microdnf -y install --nodocs tar gzip curl \
11+
&& microdnf clean all
12+
13+
RUN case ${TARGETPLATFORM} in \
14+
"linux/amd64") export MONGODB_TOOLS_VERSION=${mongodb_tools_version_amd64} ;; \
15+
"linux/arm64") export MONGODB_TOOLS_VERSION=${mongodb_tools_version_arm64} ;; \
16+
"linux/s390x") export MONGODB_TOOLS_VERSION=${mongodb_tools_version_s390x} ;; \
17+
"linux/ppc64le") export MONGODB_TOOLS_VERSION=${mongodb_tools_version_ppc64le} ;; \
18+
esac \
19+
&& mkdir -p /tools \
20+
&& if [ -n "$MONGODB_TOOLS_VERSION" ]; then \
21+
curl -o /tools/mongodb_tools.tgz "${mongodb_tools_url}/${MONGODB_TOOLS_VERSION}"; \
22+
fi
23+
24+
RUN if [ -f "/tools/mongodb_tools.tgz" ]; then \
25+
tar xfz /tools/mongodb_tools.tgz --directory /tools \
26+
&& rm /tools/mongodb_tools.tgz; \
27+
fi
28+
129
FROM --platform=$BUILDPLATFORM public.ecr.aws/docker/library/golang:1.24 AS readiness_builder
230

31+
WORKDIR /go/src/github.com/mongodb/mongodb-kubernetes/
32+
33+
COPY go.mod go.sum ./
34+
35+
RUN go mod download
36+
37+
COPY mongodb-community-operator ./mongodb-community-operator
38+
339
ARG TARGETOS
440
ARG TARGETARCH
5-
6-
COPY . /go/src/github.com/mongodb/mongodb-kubernetes
7-
WORKDIR /go/src/github.com/mongodb/mongodb-kubernetes
841
RUN CGO_ENABLED=0 GOFLAGS=-buildvcs=false GOOS=${TARGETOS} GOARCH=${TARGETARCH} go build -o /readinessprobe ./mongodb-community-operator/cmd/readiness/main.go
942
RUN CGO_ENABLED=0 GOFLAGS=-buildvcs=false GOOS=${TARGETOS} GOARCH=${TARGETARCH} go build -o /version-upgrade-hook ./mongodb-community-operator/cmd/versionhook/main.go
1043

1144
FROM scratch AS base
1245

13-
COPY --from=readiness_builder /readinessprobe /data/
46+
COPY --from=readiness_builder /readinessprobe /data/readinessprobe
1447
COPY --from=readiness_builder /version-upgrade-hook /data/version-upgrade-hook
1548

1649
COPY ./docker/mongodb-kubernetes-init-database/content/probe.sh /data/probe.sh
@@ -22,15 +55,8 @@ COPY ./docker/mongodb-kubernetes-init-database/content/LICENSE /data/licenses/
2255

2356
FROM registry.access.redhat.com/ubi8/ubi-minimal
2457

25-
ARG TARGETPLATFORM
26-
ARG version
27-
LABEL name="MongoDB Kubernetes Init AppDB" \
28-
version="mongodb-kubernetes-init-appdb-${version}" \
29-
summary="MongoDB Kubernetes AppDB Init Image" \
30-
description="Startup Scripts for MongoDB Enterprise Application Database for Ops Manager" \
31-
release="1" \
32-
vendor="MongoDB" \
33-
maintainer="[email protected]"
58+
# Copy the extracted tools from the downloader stage (tools are already extracted there)
59+
COPY --from=tools_downloader /tools/ /tools/
3460

3561
COPY --from=base /data/readinessprobe /probes/readinessprobe
3662
COPY --from=base /data/probe.sh /probes/probe.sh
@@ -42,23 +68,14 @@ RUN microdnf -y update --nodocs \
4268
&& microdnf -y install --nodocs tar gzip \
4369
&& microdnf clean all
4470

45-
ARG mongodb_tools_url
46-
ARG mongodb_tools_version_s390x
47-
ARG mongodb_tools_version_ppc64le
48-
ARG mongodb_tools_version_amd64
49-
ARG mongodb_tools_version_arm64
50-
51-
RUN case ${TARGETPLATFORM} in \
52-
"linux/amd64") export MONGODB_TOOLS_VERSION=${mongodb_tools_version_amd64} ;; \
53-
"linux/arm64") export MONGODB_TOOLS_VERSION=${mongodb_tools_version_arm64} ;; \
54-
"linux/s390x") export MONGODB_TOOLS_VERSION=${mongodb_tools_version_s390x} ;; \
55-
"linux/ppc64le") export MONGODB_TOOLS_VERSION=${mongodb_tools_version_ppc64le} ;; \
56-
esac \
57-
&& mkdir -p /tools \
58-
&& curl -o /tools/mongodb_tools.tgz "${mongodb_tools_url}/${MONGODB_TOOLS_VERSION}"
59-
60-
RUN tar xfz /tools/mongodb_tools.tgz --directory /tools \
61-
&& rm /tools/mongodb_tools.tgz
71+
ARG version
72+
LABEL name="MongoDB Kubernetes Init AppDB" \
73+
version="mongodb-kubernetes-init-appdb-${version}" \
74+
summary="MongoDB Kubernetes AppDB Init Image" \
75+
description="Startup Scripts for MongoDB Enterprise Application Database for Ops Manager" \
76+
release="1" \
77+
vendor="MongoDB" \
78+
maintainer="[email protected]"
6279

6380
USER 2000
6481

docker/mongodb-kubernetes-init-appdb/README.md

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,9 @@
33
For building the MongoDB Init AppDB image locally use the example command:
44

55
```bash
6-
VERSION="1.3.0"
7-
MONGODB_TOOLS_URL="https://downloads.mongodb.org/tools/db"
8-
BASE_REPO_URL="268558157000.dkr.ecr.us-east-1.amazonaws.com/lucian.tosa/"
9-
docker buildx build --load --progress plain --platform linux/amd64,linux/arm64,linux/s390x,linux/ppc64le . -f docker/mongodb-kubernetes-init-appdb/Dockerfile -t "${BASE_REPO_URL}mongodb-kubernetes-init-appdb:${VERSION}" \
6+
VERSION="1.0.1"
7+
MONGODB_TOOLS_URL_UBI="https://downloads.mongodb.org/tools/db/mongodb-database-tools-rhel93-x86_64-100.12.0.tgz"
8+
docker buildx build --load --progress plain . -f docker/mongodb-kubernetes-init-appdb/Dockerfile -t "mongodb-kubernetes-init-appdb:${VERSION}" \
109
--build-arg version="${VERSION}" \
11-
--build-arg mongodb_tools_url="${MONGODB_TOOLS_URL_UBI}" \
12-
--build-arg mongodb_tools_version_arm64="mongodb-database-tools-rhel93-aarch64-100.12.0.tgz" \
13-
--build-arg mongodb_tools_version_amd64="mongodb-database-tools-rhel93-x86_64-100.12.0.tgz" \
14-
--build-arg mongodb_tools_version_s390x="mongodb-database-tools-rhel9-s390x-100.12.0.tgz" \
15-
--build-arg mongodb_tools_version_ppc64le="mongodb-database-tools-rhel9-ppc64le-100.12.0.tgz"
10+
--build-arg mongodb_tools_url_ubi="${MONGODB_TOOLS_URL_UBI}"
1611
```

docker/mongodb-kubernetes-init-database/Dockerfile.atomic

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM registry.access.redhat.com/ubi8/ubi-minimal AS tools_downloader
1+
FROM --platform=${BUILDPLATFORM} registry.access.redhat.com/ubi8/ubi-minimal AS tools_downloader
22

33
ARG mongodb_tools_url
44
ARG mongodb_tools_version_s390x
@@ -34,7 +34,7 @@ COPY go.mod go.sum ./
3434

3535
RUN go mod download
3636

37-
COPY mongodb-community-operator /go/src/github.com/mongodb/mongodb-kubernetes/mongodb-community-operator
37+
COPY mongodb-community-operator ./mongodb-community-operator
3838

3939
ARG TARGETOS
4040
ARG TARGETARCH
@@ -53,23 +53,20 @@ COPY ./docker/mongodb-kubernetes-init-database/content/agent-launcher.sh /data/s
5353

5454
COPY ./docker/mongodb-kubernetes-init-database/content/LICENSE /data/licenses/
5555

56-
#TODO ubi9?
5756
FROM registry.access.redhat.com/ubi8/ubi-minimal
5857

59-
ARG TARGETARCH
60-
6158
# Copy the extracted tools from the downloader stage (tools are already extracted there)
6259
COPY --from=tools_downloader /tools/ /tools/
6360

64-
RUN microdnf -y update --nodocs \
65-
&& microdnf -y install --nodocs tar gzip \
66-
&& microdnf clean all
67-
6861
COPY --from=base /data/readinessprobe /probes/readinessprobe
6962
COPY --from=base /data/probe.sh /probes/probe.sh
7063
COPY --from=base /data/scripts/ /scripts/
7164
COPY --from=base /data/licenses /licenses/
7265

66+
RUN microdnf -y update --nodocs \
67+
&& microdnf -y install --nodocs tar gzip \
68+
&& microdnf clean all
69+
7370
ARG version
7471
LABEL name="MongoDB Kubernetes Init Database" \
7572
version="mongodb-kubernetes-init-database-${version}" \

docker/mongodb-kubernetes-init-database/README.md

Lines changed: 4 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -3,20 +3,9 @@
33
For building the MongoDB Init AppDB image locally use the example command:
44

55
```bash
6-
VERSION="evergreen"
7-
TOOLS_VERSION="100.12.0"
8-
MONGODB_TOOLS_URL_UBI="https://downloads.mongodb.org/tools/db"
9-
BASE_REPO_URL="268558157000.dkr.ecr.us-east-1.amazonaws.com/lucian.tosa/"
10-
docker buildx build --progress plain --platform linux/amd64,linux/arm64,linux/s390x,linux/ppc64le . -f docker/mongodb-kubernetes-init-database/Dockerfile -t "${BASE_REPO_URL}mongodb-kubernetes-init-database:${VERSION}" \
6+
VERSION="1.0.1"
7+
MONGODB_TOOLS_URL_UBI="https://downloads.mongodb.org/tools/db/mongodb-database-tools-rhel93-x86_64-100.12.0.tgz"
8+
docker buildx build --load --progress plain . -f docker/mongodb-kubernetes-init-database/Dockerfile -t "mongodb-kubernetes-init-database:${VERSION}" \
119
--build-arg version="${VERSION}" \
12-
--build-arg mongodb_tools_url="${MONGODB_TOOLS_URL_UBI}" \
13-
--build-arg mongodb_tools_version_arm64="mongodb-database-tools-rhel93-aarch64-${TOOLS_VERSION}.tgz" \
14-
--build-arg mongodb_tools_version_amd64="mongodb-database-tools-rhel93-x86_64-${TOOLS_VERSION}.tgz" \
15-
--build-arg mongodb_tools_version_s390x="mongodb-database-tools-rhel9-s390x-${TOOLS_VERSION}.tgz" \
16-
--build-arg mongodb_tools_version_ppc64le="mongodb-database-tools-rhel9-ppc64le-${TOOLS_VERSION}.tgz"
17-
18-
docker push "${BASE_REPO_URL}mongodb-kubernetes-init-database:${VERSION}"
10+
--build-arg mongodb_tools_url_ubi="${MONGODB_TOOLS_URL_UBI}"
1911
```
20-
21-
first no cache 2:20.28 total
22-
second no cache 2:31.74 total

docker/mongodb-kubernetes-operator/README.md

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,16 +13,13 @@ CGO_ENABLED=0 GOOS=linux GOFLAGS="-mod=vendor" go build -i -o mongodb-kubernetes
1313
For building the MongoDB Init Ops Manager image locally use the example command:
1414

1515
```bash
16-
VERSION="evergreen"
16+
VERSION="1.1.0"
1717
LOG_AUTOMATION_CONFIG_DIFF="false"
1818
USE_RACE="false"
19-
BASE_REPO_URL="268558157000.dkr.ecr.us-east-1.amazonaws.com/lucian.tosa/"
20-
docker buildx build --load --progress plain --platform linux/amd64,linux/arm64,linux/s390x,linux/ppc64le . -f docker/mongodb-kubernetes-operator/Dockerfile -t "${BASE_REPO_URL}mongodb-kubernetes:${VERSION}" \
19+
docker buildx build --load --progress plain . -f docker/mongodb-kubernetes-operator/Dockerfile -t "mongodb-kubernetes-operator:${VERSION}" \
2120
--build-arg version="${VERSION}" \
2221
--build-arg log_automation_config_diff="${LOG_AUTOMATION_CONFIG_DIFF}" \
2322
--build-arg use_race="${USE_RACE}"
24-
25-
docker push "${BASE_REPO_URL}mongodb-kubernetes:${VERSION}"
2623
```
2724

2825
### Running locally

0 commit comments

Comments
 (0)