Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

PSMDB-1429. Update psmdb-6.0 version #954

Merged
merged 2 commits into from
Mar 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion percona-server-mongodb-6.0/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ RUN set -ex; \
rm -rf "$GNUPGHOME" /tmp/percona-release.rpm; \
rpm --import /etc/pki/rpm-gpg/PERCONA-PACKAGING-KEY

ENV PSMDB_VERSION 6.0.13-10
ENV PSMDB_VERSION 6.0.14-11
ENV OS_VER el8
ENV FULL_PERCONA_VERSION "$PSMDB_VERSION.$OS_VER"
ENV K8S_TOOLS_VERSION "0.5.0"
Expand Down
2 changes: 1 addition & 1 deletion percona-server-mongodb-6.0/Dockerfile.aarch64
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ RUN set -ex; \
rm -rf "$GNUPGHOME" /tmp/percona-release.rpm; \
rpm --import /etc/pki/rpm-gpg/PERCONA-PACKAGING-KEY

ENV PSMDB_VERSION 6.0.13-10
ENV PSMDB_VERSION 6.0.14-11
ENV OS_VER el8
ENV FULL_PERCONA_VERSION "$PSMDB_VERSION.$OS_VER"
ENV K8S_TOOLS_VERSION "0.5.0"
Expand Down
2 changes: 1 addition & 1 deletion percona-server-mongodb-6.0/Dockerfile.k8s
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ plus additional enterprise-grade functionality."
LABEL org.opencontainers.image.license="SSPLv1"
LABEL org.opencontainers.image.authors="[email protected]"

ENV PSMDB_VERSION 6.0.13-10
ENV PSMDB_VERSION 6.0.14-11
ENV OS_VER el8
ENV FULL_PERCONA_VERSION "$PSMDB_VERSION.$OS_VER"
ENV K8S_TOOLS_VERSION "0.5.0"
Expand Down
2 changes: 1 addition & 1 deletion percona-server-mongodb-6.0/Dockerfile.ubi8
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM redhat/ubi8-minimal

LABEL org.opencontainers.image.authors="[email protected]"

ENV PSMDB_VERSION 6.0.13-10
ENV PSMDB_VERSION 6.0.14-11
ENV OS_VER el8
ENV FULL_PERCONA_VERSION "$PSMDB_VERSION.$OS_VER"
ENV K8S_TOOLS_VERSION "0.5.0"
Expand Down
2 changes: 1 addition & 1 deletion percona-server-mongodb-6.0/Dockerfile.ubi9
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM redhat/ubi9-minimal

LABEL org.opencontainers.image.authors="[email protected]"

ENV PSMDB_VERSION 6.0.13-10
ENV PSMDB_VERSION 6.0.14-11
ENV OS_VER el9
ENV FULL_PERCONA_VERSION "$PSMDB_VERSION.$OS_VER"
ENV K8S_TOOLS_VERSION "0.5.0"
Expand Down
4 changes: 4 additions & 0 deletions test/tests/mongo-basics/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -69,18 +69,22 @@ if [[ "$testName" == *tls* ]]; then
mongodCmdArgs+=(
--tlsMode requireTLS
--tlsCertificateKeyFile /certs/both.pem
--tlsCAFile /certs/ca.crt
)
mongoArgs+=(
--tls
--tlsCertificateKeyFile /certs/both.pem
--tlsCAFile /certs/ca.crt
)
else
mongodCmdArgs+=(
--sslMode requireSSL
--sslPEMKeyFile /certs/both.pem
--sslCAFile /certs/ca.crt
)
mongoArgs+=(
--ssl
--sslPEMKeyFile /certs/both.pem
--sslCAFile /certs/ca.crt
)
fi
Expand Down
Loading