Skip to content

Commit 15fd11e

Browse files
authored
Fix slave FROM tag and set JVM arch for master (#510)
Since v3.7 of openshift, there is the possibility for breakage in backwards compatibilty when using the v3.7 'oc' command with a 'v3.6' master. This change forces us to use the v3.6 oc binary This is a better practice in any event, since we should not be pointing to a 'latest' tag. See openshift/jenkins-sync-plugin#173 and openshift/jenkins#477 for details
1 parent 03d2186 commit 15fd11e

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

config/s2i/jenkins/jenkins-persistent-buildconfig-template.yaml

+2
Original file line numberDiff line numberDiff line change
@@ -135,6 +135,8 @@ objects:
135135
value: "${ENABLE_OAUTH}"
136136
- name: OPENSHIFT_ENABLE_REDIRECT_PROMPT
137137
value: 'true'
138+
- name: OPENSHIFT_JENKINS_JVM_ARCH
139+
value: 'x86_64'
138140
- name: KUBERNETES_MASTER
139141
value: https://kubernetes.default:443
140142
- name: KUBERNETES_TRUST_CERTIFICATES

config/s2i/jenkins/slave/Dockerfile

+9-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,12 @@
1-
FROM openshift/jenkins-slave-base-centos7
1+
FROM openshift/jenkins-slave-base-centos7:v3.6
2+
##
3+
## -------------------------------------> ^^ this is needed
4+
## since the centosCI openshift cluster
5+
## is running 3.6 and the slave needs the
6+
## correct 'oc' binary to work properly
7+
## This should be updated when the cluster
8+
## is upgraded.
9+
##
210
RUN yum install -y epel-release
311
# add ruby for ghi
412
RUN yum install -y ansible jq ruby

0 commit comments

Comments
 (0)