Skip to content

Commit f0882cc

Browse files
committed
updated jenkins to 2.235.2
1 parent 5795b64 commit f0882cc

8 files changed

+11
-11
lines changed

jenkins/kubernetes/Dockerfile

+4-4
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ FROM ${BASE_REGISTRY}/${BASE_IMAGE}:${BASE_TAG}
77
LABEL name="Solutions Delivery Platform: Jenkins Master" \
88
maintainer="terrana_steven@bah.com" \
99
vendor="Booz Allen Hamilton" \
10-
version="2.222.4" \
11-
release="2.222.4" \
10+
version="2.235.2" \
11+
release="2.235.2" \
1212
summary="A Jenkins Master container" \
1313
description="The Jenkins Master container image for the Solutions Delivery Platform"
1414

@@ -35,12 +35,12 @@ ENV JENKINS_SLAVE_AGENT_PORT ${agent_port}
3535
ENV REF $REF
3636

3737
# Use tini as subreaper in Docker container to adopt zombie processes
38-
ARG SDP_BUILD_DEPENDENCY_VERSION=dcar-1.2
38+
ARG SDP_BUILD_DEPENDENCY_VERSION=dcar-1.3
3939
ARG TINI_VERSION=v0.19.0
4040

4141
# jenkins version being bundled in this docker image
4242
ARG JENKINS_VERSION
43-
ENV JENKINS_VERSION ${JENKINS_VERSION:-2.222.4}
43+
ENV JENKINS_VERSION ${JENKINS_VERSION:-2.235.2}
4444

4545
# Jenkins is run with user `jenkins`, uid = 1000
4646
# If you bind mount a volume from the host or a data container,

jenkins/kubernetes/Makefile

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
OWNER = boozallen
22
REPO = sdp-images
33
IMAGE = jenkins
4-
VERSION = dcar-1.2
5-
JENKINS_VERSION=2.222.4
4+
VERSION = dcar-1.3
5+
JENKINS_VERSION=2.235.2
66

77
REGISTRY = docker.pkg.github.com/$(OWNER)/$(REPO)
88
TAG = $(REGISTRY)/$(IMAGE):$(VERSION)
@@ -29,8 +29,8 @@ push: ## builds and publishes container image
2929
build-dep: ## build container dependencies
3030
$(eval dir := $(shell pwd))
3131
docker run -it -v $(dir)/prebuild:/var/jenkins_home/tmp jenkins/jenkins:${JENKINS_VERSION} /var/jenkins_home/tmp/pull-plugins.sh
32-
docker run -it -v $(dir)/prebuild:/root/prebuild:z registry.access.redhat.com/ubi8/ubi:8.1-408 /root/prebuild/pull-from-centos.sh
33-
docker run -it -v $(dir)/prebuild:/root/prebuild:z registry.access.redhat.com/ubi8/ubi:8.1-408 /root/prebuild/build-dep.sh
32+
docker run -it -v $(dir)/prebuild:/root/prebuild:z registry.access.redhat.com/ubi8/ubi:8.2 /root/prebuild/pull-from-centos.sh
33+
docker run -it -v $(dir)/prebuild:/root/prebuild:z registry.access.redhat.com/ubi8/ubi:8.2 /root/prebuild/build-dep.sh
3434

3535
info:
3636
@echo "$(TAG) -> $$(dirname $$(git ls-files --full-name Makefile))"

jenkins/kubernetes/prebuild/build-dep.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
set -xe
44

5-
SDP_BUILD_DEPENDENCY_VERSION=dcar-1.2
5+
SDP_BUILD_DEPENDENCY_VERSION=dcar-1.3
66

77
cd /root/prebuild
88
tar czvf jenkins-dependencies-$SDP_BUILD_DEPENDENCY_VERSION.tar.gz dependencies

jenkins/kubernetes/prebuild/jenkins-dependencies-dcar-1.2.sha256

-1
This file was deleted.
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
b2766e861f065ed57c1e2a9eb6999dda50e3a1e586bce3d79ddf9a0197479ac6
Binary file not shown.

jenkins/kubernetes/prebuild/pull-from-centos.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ set -xe
44

55

66
TINI_VERSION=v0.19.0
7-
JENKINS_VERSION=2.222.4
7+
JENKINS_VERSION=2.235.2
88

99
mkdir /root/prebuild/dependencies/tini/
1010
curl -kfsSL https://github.com/krallin/tini/releases/download/${TINI_VERSION}/tini-static-amd64 -o /root/prebuild/dependencies/tini/tini-${TINI_VERSION}

0 commit comments

Comments
 (0)