File tree 8 files changed +34
-49
lines changed
8 files changed +34
-49
lines changed Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ $ oc policy add-role-to-user edit system:serviceaccount:ci:default -n ci
41
41
42
42
3 . Install the provided OpenShift templates:
43
43
```
44
- # Slave convertor (optional):
44
+ # Slave converter (optional):
45
45
$ oc create -f https://raw.githubusercontent.com/openshift/origin/master/examples/jenkins/master-slave/jenkins-slave-template.json
46
46
47
47
# Jenkins master template:
@@ -55,7 +55,7 @@ $ oc create -f https://raw.githubusercontent.com/openshift/origin/master/example
55
55
alternative repository with your own custom entry point script.
56
56
57
57
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
59
59
ready to be used.
60
60
61
61
7 . Now click on * Add to project* again and select the ` jenkins-master ` template.
Original file line number Diff line number Diff line change 55
55
"kind" : " Route" ,
56
56
"apiVersion" : " v1" ,
57
57
"metadata" : {
58
- "name" : " jenkins" ,
59
- "creationTimestamp" : null
58
+ "name" : " jenkins"
60
59
},
61
60
"spec" : {
62
61
"to" : {
135
134
"kind" : " DeploymentConfig" ,
136
135
"apiVersion" : " v1" ,
137
136
"metadata" : {
138
- "name" : " ${JENKINS_SERVICE_NAME}" ,
139
- "creationTimestamp" : null
137
+ "name" : " ${JENKINS_SERVICE_NAME}"
140
138
},
141
139
"spec" : {
142
140
"strategy" : {
168
166
},
169
167
"template" : {
170
168
"metadata" : {
171
- "creationTimestamp" : null ,
172
169
"labels" : {
173
170
"name" : " ${JENKINS_SERVICE_NAME}"
174
171
}
248
245
{
249
246
"name" : " jnlp" ,
250
247
"protocol" : " TCP" ,
251
- "port" : 49187 ,
252
- "targetPort" : 49187 ,
248
+ "port" : 50000 ,
249
+ "targetPort" : 50000 ,
253
250
"nodePort" : 0
254
251
}
255
252
],
Original file line number Diff line number Diff line change @@ -9,14 +9,14 @@ RUN yum install -y --setopt=tsflags=nodocs --enablerepo=centosplus epel-release
9
9
yum install -y --setopt=tsflags=nodocs install $INSTALL_PKGS && \
10
10
rpm -V $INSTALL_PKGS && \
11
11
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
15
15
16
16
# Copy the entrypoint
17
- COPY contrib/openshift/* /opt/app-root/jenkins/
17
+ ADD contrib/openshift/* /usr/local/bin/
18
+
18
19
USER 1001
19
20
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 number Diff line number Diff line change
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
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 4
4
# will use for the auto-discovery of this slave.
5
5
#
6
6
7
+ source /opt/app-root/jenkins/generate_container_user
8
+
7
9
# The directory that Jenkins will execute the builds and store cache files.
8
10
# The directory has to be writeable for the user that the container is running
9
11
# under.
10
12
export JENKINS_HOME=/opt/app-root/jenkins
11
13
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
-
23
14
# Make sure the Java clients have valid $HOME directory set
24
15
export HOME=${JENKINS_HOME}
25
16
26
17
set -e
27
18
28
19
# if `docker run` has 2 or more arguments the user is passing jenkins launcher arguments
29
20
if [[ $# -gt 1 ]]; then
30
- # TODO: We can attempt to download this file from the Jenkins server
31
21
JAR=" ${JENKINS_HOME} /remoting.jar"
32
22
PARAMS=" "
33
23
34
-
35
24
# if -url is not provided try env vars
36
25
if [[ " $@ " != * " -url " * ]]; then
37
26
if [ ! -z " $JENKINS_URL " ]; then
Original file line number Diff line number Diff line change 171
171
"kind" : " Service" ,
172
172
"apiVersion" : " v1" ,
173
173
"metadata" : {
174
- "name" : " jenkins-jnlp" ,
175
- "creationTimestamp" : null
174
+ "name" : " jenkins-jnlp"
176
175
},
177
176
"spec" : {
178
177
"ports" : [
You can’t perform that action at this time.
0 commit comments