Skip to content

Commit 32781fd

Browse files
committed
clean up jenkins master/slave example
1 parent 2e48c47 commit 32781fd

File tree

8 files changed

+34
-49
lines changed

8 files changed

+34
-49
lines changed

examples/jenkins/master-slave/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ $ oc policy add-role-to-user edit system:serviceaccount:ci:default -n ci
4141

4242
3. Install the provided OpenShift templates:
4343
```
44-
# Slave convertor (optional):
44+
# Slave converter (optional):
4545
$ oc create -f https://raw.githubusercontent.com/openshift/origin/master/examples/jenkins/master-slave/jenkins-slave-template.json
4646
4747
# Jenkins master template:
@@ -55,7 +55,7 @@ $ oc create -f https://raw.githubusercontent.com/openshift/origin/master/example
5555
alternative repository with your own custom entry point script.
5656

5757
6. Click *Create* and navigate to *Browse/Builds*. You should see the build
58-
running. Once this build finish, you should have the Jenkins Slave image
58+
running. Once this build finishes, you should have the Jenkins Slave image
5959
ready to be used.
6060

6161
7. Now click on *Add to project* again and select the `jenkins-master` template.

examples/jenkins/master-slave/jenkins-master-template.json

+4-7
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,7 @@
5555
"kind": "Route",
5656
"apiVersion": "v1",
5757
"metadata": {
58-
"name": "jenkins",
59-
"creationTimestamp": null
58+
"name": "jenkins"
6059
},
6160
"spec": {
6261
"to": {
@@ -135,8 +134,7 @@
135134
"kind": "DeploymentConfig",
136135
"apiVersion": "v1",
137136
"metadata": {
138-
"name": "${JENKINS_SERVICE_NAME}",
139-
"creationTimestamp": null
137+
"name": "${JENKINS_SERVICE_NAME}"
140138
},
141139
"spec": {
142140
"strategy": {
@@ -168,7 +166,6 @@
168166
},
169167
"template": {
170168
"metadata": {
171-
"creationTimestamp": null,
172169
"labels": {
173170
"name": "${JENKINS_SERVICE_NAME}"
174171
}
@@ -248,8 +245,8 @@
248245
{
249246
"name": "jnlp",
250247
"protocol": "TCP",
251-
"port": 49187,
252-
"targetPort": 49187,
248+
"port": 50000,
249+
"targetPort": 50000,
253250
"nodePort": 0
254251
}
255252
],

examples/jenkins/master-slave/slave/Dockerfile

+7-7
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@ RUN yum install -y --setopt=tsflags=nodocs --enablerepo=centosplus epel-release
99
yum install -y --setopt=tsflags=nodocs install $INSTALL_PKGS && \
1010
rpm -V $INSTALL_PKGS && \
1111
yum clean all && \
12-
mkdir -p /opt/app-root/jenkins && \
13-
chown -R 1001:0 /opt/app-root/jenkins && \
14-
chmod -R g+w /opt/app-root/jenkins
12+
mkdir -p /home/jenkins && \
13+
chown -R 1001:0 /home/jenkins && \
14+
chmod -R g+w /home/jenkins
1515

1616
# Copy the entrypoint
17-
COPY contrib/openshift/* /opt/app-root/jenkins/
17+
ADD contrib/openshift/* /usr/local/bin/
18+
1819
USER 1001
1920

20-
# Run the JNLP client by default
21-
# To use swarm client, specify "/opt/app-root/jenkins/run-swarm-client" as Command
22-
ENTRYPOINT ["/opt/app-root/jenkins/run-jnlp-client"]
21+
# Run the Jenkins JNLP client
22+
ENTRYPOINT ["/usr/local/bin/run-jnlp-client"]
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Set current user in nss_wrapper
2+
USER_ID=$(id -u)
3+
GROUP_ID=$(id -g)
4+
5+
if [ x"$USER_ID" != x"0" -a x"$USER_ID" != x"1001" ]; then
6+
7+
NSS_WRAPPER_PASSWD=/tmp/nss_passwd
8+
NSS_WRAPPER_GROUP=/etc/group
9+
10+
cat /etc/passwd | sed -e 's/^default:/builder:/' > $NSS_WRAPPER_PASSWD
11+
12+
echo "default:x:${USER_ID}:${GROUP_ID}:Default Application User:${HOME}:/sbin/nologin" >> $NSS_WRAPPER_PASSWD
13+
14+
export NSS_WRAPPER_PASSWD
15+
export NSS_WRAPPER_GROUP
16+
export LD_PRELOAD=libnss_wrapper.so
17+
fi

examples/jenkins/master-slave/slave/contrib/openshift/passwd.template

-16
This file was deleted.

examples/jenkins/master-slave/slave/contrib/openshift/run-jnlp-client

+2-13
Original file line numberDiff line numberDiff line change
@@ -4,34 +4,23 @@
44
# will use for the auto-discovery of this slave.
55
#
66

7+
source /opt/app-root/jenkins/generate_container_user
8+
79
# The directory that Jenkins will execute the builds and store cache files.
810
# The directory has to be writeable for the user that the container is running
911
# under.
1012
export JENKINS_HOME=/opt/app-root/jenkins
1113

12-
# Setup nss_wrapper so the random user OpenShift will run this container
13-
# has an entry in /etc/passwd.
14-
# This is needed for 'git' and other tools to work properly.
15-
#
16-
export USER_ID=$(id -u)
17-
export GROUP_ID=$(id -g)
18-
envsubst < ${JENKINS_HOME}/passwd.template > ${JENKINS_HOME}/passwd
19-
export LD_PRELOAD=libnss_wrapper.so
20-
export NSS_WRAPPER_PASSWD=${JENKINS_HOME}/passwd
21-
export NSS_WRAPPER_GROUP=/etc/group
22-
2314
# Make sure the Java clients have valid $HOME directory set
2415
export HOME=${JENKINS_HOME}
2516

2617
set -e
2718

2819
# if `docker run` has 2 or more arguments the user is passing jenkins launcher arguments
2920
if [[ $# -gt 1 ]]; then
30-
# TODO: We can attempt to download this file from the Jenkins server
3121
JAR="${JENKINS_HOME}/remoting.jar"
3222
PARAMS=""
3323

34-
3524
# if -url is not provided try env vars
3625
if [[ "$@" != *"-url "* ]]; then
3726
if [ ! -z "$JENKINS_URL" ]; then

examples/jenkins/pipeline/jenkinstemplate.json

+1-2
Original file line numberDiff line numberDiff line change
@@ -171,8 +171,7 @@
171171
"kind": "Service",
172172
"apiVersion": "v1",
173173
"metadata": {
174-
"name": "jenkins-jnlp",
175-
"creationTimestamp": null
174+
"name": "jenkins-jnlp"
176175
},
177176
"spec": {
178177
"ports": [

pkg/bootstrap/bindata.go

+1-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)