Skip to content

Commit 24951be

Browse files
Merge pull request #18832 from gabemontero/jenkins-template-adjust
Automatic merge from submit-queue (batch tested with PRs 18780, 18802, 18391, 18832, 18808). adjust jenkins template setting to account for effects of constrained… … default max heap Fixes https://bugzilla.redhat.com/show_bug.cgi?id=1551500 Fixes openshift/jenkins#501 @openshift/sig-developer-experience ptal
2 parents 5940853 + 66bc0cb commit 24951be

File tree

4 files changed

+36
-24
lines changed

4 files changed

+36
-24
lines changed

examples/jenkins/jenkins-ephemeral-template.json

+6-4
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@
2626
"metadata": {
2727
"name": "${JENKINS_SERVICE_NAME}",
2828
"annotations": {
29-
"template.openshift.io/expose-uri": "http://{.spec.host}{.spec.path}"
29+
"template.openshift.io/expose-uri": "http://{.spec.host}{.spec.path}",
30+
"haproxy.router.openshift.io/timeout": "2m"
3031
}
3132
},
3233
"spec": {
@@ -90,17 +91,18 @@
9091
"name": "jenkins",
9192
"image": " ",
9293
"readinessProbe": {
93-
"timeoutSeconds": 3,
94+
"timeoutSeconds": 240,
9495
"initialDelaySeconds": 3,
9596
"httpGet": {
9697
"path": "/login",
9798
"port": 8080
9899
}
99100
},
100101
"livenessProbe": {
101-
"timeoutSeconds": 3,
102+
"timeoutSeconds": 240,
103+
"periodSeconds": 360,
102104
"initialDelaySeconds": 420,
103-
"failureThreshold" : 30,
105+
"failureThreshold" : 2,
104106
"httpGet": {
105107
"path": "/login",
106108
"port": 8080

examples/jenkins/jenkins-persistent-template.json

+6-4
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@
2626
"metadata": {
2727
"name": "${JENKINS_SERVICE_NAME}",
2828
"annotations": {
29-
"template.openshift.io/expose-uri": "http://{.spec.host}{.spec.path}"
29+
"template.openshift.io/expose-uri": "http://{.spec.host}{.spec.path}",
30+
"haproxy.router.openshift.io/timeout": "2m"
3031
}
3132
},
3233
"spec": {
@@ -107,17 +108,18 @@
107108
"name": "jenkins",
108109
"image": " ",
109110
"readinessProbe": {
110-
"timeoutSeconds": 3,
111+
"timeoutSeconds": 240,
111112
"initialDelaySeconds": 3,
112113
"httpGet": {
113114
"path": "/login",
114115
"port": 8080
115116
}
116117
},
117118
"livenessProbe": {
118-
"timeoutSeconds": 3,
119+
"timeoutSeconds": 240,
120+
"periodSeconds": 360,
119121
"initialDelaySeconds": 420,
120-
"failureThreshold" : 30,
122+
"failureThreshold" : 2,
121123
"httpGet": {
122124
"path": "/login",
123125
"port": 8080

pkg/oc/bootstrap/bindata.go

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

test/extended/testdata/bindata.go

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

0 commit comments

Comments
 (0)