Skip to content

Commit 814f10b

Browse files
Merge pull request #327 from marklogic/release_2.1.1
Release 2.1.1
2 parents 24f9a63 + 70a4a58 commit 814f10b

File tree

4 files changed

+9
-11
lines changed

4 files changed

+9
-11
lines changed

Jenkinsfile

+4-6
Original file line numberDiff line numberDiff line change
@@ -266,6 +266,7 @@ void vulnerabilityScan() {
266266
void publishToInternalRegistry() {
267267
withCredentials([usernamePassword(credentialsId: 'builder-credentials-artifactory', passwordVariable: 'docker_password', usernameVariable: 'docker_user')]) {
268268
sh """
269+
docker logout ${dockerRegistry}
269270
echo "${docker_password}" | docker login --username ${docker_user} --password-stdin ${dockerRegistry}
270271
docker tag ${builtImage} ${dockerRegistry}/${builtImage}
271272
docker tag ${builtImage} ${dockerRegistry}/${publishImage}
@@ -345,17 +346,15 @@ pipeline {
345346
30 02 * * * % marklogicVersion=12;dockerImageType=ubi
346347
30 02 * * * % marklogicVersion=12;dockerImageType=ubi-rootless;SCAP_SCAN=true
347348
00 03 * * * % marklogicVersion=11;dockerImageType=ubi9
348-
00 03 * * * % marklogicVersion=11;dockerImageType=ubi9-rootless;SCAP_SCAN=true
349-
00 03 * * * % marklogicVersion=12;dockerImageType=ubi9
350-
00 03 * * * % marklogicVersion=12;dockerImageType=ubi9-rootless;SCAP_SCAN=true''' : '')
349+
00 03 * * * % marklogicVersion=11;dockerImageType=ubi9-rootless;SCAP_SCAN=true''' : '')
351350
}
352351
environment {
353352
QA_LICENSE_KEY = credentials('QA_LICENSE_KEY')
354353
}
355354

356355
parameters {
357356
string(name: 'emailList', defaultValue: emailList, description: 'List of email for build notification', trim: true)
358-
string(name: 'dockerVersion', defaultValue: '2.1.0', description: 'ML Docker version. This version along with ML rpm package version will be the image tag as {ML_Version}_{dockerVersion}', trim: true)
357+
string(name: 'dockerVersion', defaultValue: '2.1.1', description: 'ML Docker version. This version along with ML rpm package version will be the image tag as {ML_Version}_{dockerVersion}', trim: true)
359358
choice(name: 'dockerImageType', choices: 'ubi-rootless\nubi\nubi9-rootless\nubi9', description: 'Platform type for Docker image. Will be made part of the docker image tag')
360359
string(name: 'upgradeDockerImage', defaultValue: '', description: 'Docker image for testing upgrades. Defaults to ubi image if left blank.\n Currently upgrading to ubi-rotless is not supported hence the test is skipped when ubi-rootless image is provided.', trim: true)
361360
choice(name: 'marklogicVersion', choices: '11\n12\n10', description: 'MarkLogic Server Branch. used to pick appropriate rpm')
@@ -452,8 +451,7 @@ pipeline {
452451
cd src
453452
rm -rf *.rpm NOTICE.txt
454453
docker stop $(docker ps -a -q) || true
455-
docker system prune --force --all
456-
docker volume prune --force --all
454+
docker system prune --force --all --volumes
457455
docker system df
458456
'''
459457
publishTestResults()

NOTICE.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
MarkLogic® Docker Container Image v2.1.0
1+
MarkLogic® Docker Container Image v2.1.1
22

33
Copyright © 2022-2024 MarkLogic Corporation. MarkLogic and MarkLogic logo are trademarks or registered trademarks of MarkLogic Corporation in the United States and other countries. All other trademarks are the property of their respective owners.
44

dockerFiles/marklogic-deps-ubi9:base

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@
44
#
55
###############################################################
66

7-
FROM registry.access.redhat.com/ubi9/ubi-minimal:9.4-1227.1726694542
7+
FROM registry.access.redhat.com/ubi9/ubi-minimal:9.5-1733767867
88
LABEL "com.marklogic.maintainer"="[email protected]"
99

1010
###############################################################
1111
# install libnsl rpm package
1212
###############################################################
1313

1414
RUN microdnf -y update \
15-
&& curl -Lso libnsl.rpm https://bed-artifactory.bedford.progress.com:443/artifactory/ml-rpm-release-tierpoint/devdependencies/libnsl-2.34-100.el9_4.4.x86_64.rpm \
15+
&& curl -Lso libnsl.rpm https://bed-artifactory.bedford.progress.com:443/artifactory/ml-rpm-release-tierpoint/devdependencies/libnsl-2.34-125.el9_5.1.x86_64.rpm \
1616
&& rpm -i libnsl.rpm \
1717
&& rm -f libnsl.rpm
1818

dockerFiles/marklogic-deps-ubi:base

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#
55
###############################################################
66

7-
FROM registry.access.redhat.com/ubi8/ubi-minimal:8.10-1086
7+
FROM registry.access.redhat.com/ubi8/ubi-minimal:8.10-1130
88
LABEL "com.marklogic.maintainer"="[email protected]"
99

1010
###############################################################
@@ -21,7 +21,7 @@ RUN microdnf -y update \
2121
###############################################################
2222
# hadolint ignore=DL3006
2323
RUN echo "NETWORKING=yes" > /etc/sysconfig/network \
24-
&& microdnf -y install --setopt install_weak_deps=0 gdb redhat-lsb-core initscripts tzdata \
24+
&& microdnf -y install --setopt install_weak_deps=0 gdb redhat-lsb-core initscripts tzdata glibc libstdc++.i686 \
2525
&& microdnf clean all
2626

2727

0 commit comments

Comments
 (0)