jenkins-persistent-template.json 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331
  1. {
  2. "apiVersion": "v1",
  3. "kind": "Template",
  4. "labels": {
  5. "app": "jenkins-persistent",
  6. "template": "jenkins-persistent-template"
  7. },
  8. "message": "A Jenkins service has been created in your project. Log into Jenkins with your OpenShift account. The tutorial at https://github.com/openshift/origin/blob/master/examples/jenkins/README.md contains more information about using this template.",
  9. "metadata": {
  10. "annotations": {
  11. "description": "Jenkins service, with persistent storage.\n\nNOTE: You must have persistent volumes available in your cluster to use this template.",
  12. "iconClass": "icon-jenkins",
  13. "openshift.io/display-name": "Jenkins",
  14. "openshift.io/documentation-url": "https://docs.openshift.org/latest/using_images/other_images/jenkins.html",
  15. "openshift.io/long-description": "This template deploys a Jenkins server capable of managing OpenShift Pipeline builds and supporting OpenShift-based oauth login.",
  16. "openshift.io/provider-display-name": "Red Hat, Inc.",
  17. "openshift.io/support-url": "https://access.redhat.com",
  18. "tags": "instant-app,jenkins"
  19. },
  20. "name": "jenkins-persistent"
  21. },
  22. "objects": [
  23. {
  24. "apiVersion": "v1",
  25. "kind": "Route",
  26. "metadata": {
  27. "annotations": {
  28. "haproxy.router.openshift.io/timeout": "4m",
  29. "template.openshift.io/expose-uri": "http://{.spec.host}{.spec.path}"
  30. },
  31. "name": "${JENKINS_SERVICE_NAME}"
  32. },
  33. "spec": {
  34. "tls": {
  35. "insecureEdgeTerminationPolicy": "Redirect",
  36. "termination": "edge"
  37. },
  38. "to": {
  39. "kind": "Service",
  40. "name": "${JENKINS_SERVICE_NAME}"
  41. }
  42. }
  43. },
  44. {
  45. "apiVersion": "v1",
  46. "kind": "PersistentVolumeClaim",
  47. "metadata": {
  48. "name": "${JENKINS_SERVICE_NAME}"
  49. },
  50. "spec": {
  51. "accessModes": [
  52. "ReadWriteOnce"
  53. ],
  54. "resources": {
  55. "requests": {
  56. "storage": "${VOLUME_CAPACITY}"
  57. }
  58. }
  59. }
  60. },
  61. {
  62. "apiVersion": "v1",
  63. "kind": "DeploymentConfig",
  64. "metadata": {
  65. "annotations": {
  66. "template.alpha.openshift.io/wait-for-ready": "true"
  67. },
  68. "name": "${JENKINS_SERVICE_NAME}"
  69. },
  70. "spec": {
  71. "replicas": 1,
  72. "selector": {
  73. "name": "${JENKINS_SERVICE_NAME}"
  74. },
  75. "strategy": {
  76. "type": "Recreate"
  77. },
  78. "template": {
  79. "metadata": {
  80. "labels": {
  81. "name": "${JENKINS_SERVICE_NAME}"
  82. }
  83. },
  84. "spec": {
  85. "containers": [
  86. {
  87. "capabilities": {},
  88. "env": [
  89. {
  90. "name": "OPENSHIFT_ENABLE_OAUTH",
  91. "value": "${ENABLE_OAUTH}"
  92. },
  93. {
  94. "name": "OPENSHIFT_ENABLE_REDIRECT_PROMPT",
  95. "value": "true"
  96. },
  97. {
  98. "name": "DISABLE_ADMINISTRATIVE_MONITORS",
  99. "value": "${DISABLE_ADMINISTRATIVE_MONITORS}"
  100. },
  101. {
  102. "name": "KUBERNETES_MASTER",
  103. "value": "https://kubernetes.default:443"
  104. },
  105. {
  106. "name": "KUBERNETES_TRUST_CERTIFICATES",
  107. "value": "true"
  108. },
  109. {
  110. "name": "JENKINS_SERVICE_NAME",
  111. "value": "${JENKINS_SERVICE_NAME}"
  112. },
  113. {
  114. "name": "JNLP_SERVICE_NAME",
  115. "value": "${JNLP_SERVICE_NAME}"
  116. },
  117. {
  118. "name": "ENABLE_FATAL_ERROR_LOG_FILE",
  119. "value": "${ENABLE_FATAL_ERROR_LOG_FILE}"
  120. }
  121. ],
  122. "image": " ",
  123. "imagePullPolicy": "IfNotPresent",
  124. "livenessProbe": {
  125. "failureThreshold": 2,
  126. "httpGet": {
  127. "path": "/login",
  128. "port": 8080
  129. },
  130. "initialDelaySeconds": 420,
  131. "periodSeconds": 360,
  132. "timeoutSeconds": 240
  133. },
  134. "name": "jenkins",
  135. "readinessProbe": {
  136. "httpGet": {
  137. "path": "/login",
  138. "port": 8080
  139. },
  140. "initialDelaySeconds": 3,
  141. "timeoutSeconds": 240
  142. },
  143. "resources": {
  144. "limits": {
  145. "memory": "${MEMORY_LIMIT}"
  146. }
  147. },
  148. "securityContext": {
  149. "capabilities": {},
  150. "privileged": false
  151. },
  152. "terminationMessagePath": "/dev/termination-log",
  153. "volumeMounts": [
  154. {
  155. "mountPath": "/var/lib/jenkins",
  156. "name": "${JENKINS_SERVICE_NAME}-data"
  157. }
  158. ]
  159. }
  160. ],
  161. "dnsPolicy": "ClusterFirst",
  162. "restartPolicy": "Always",
  163. "serviceAccountName": "${JENKINS_SERVICE_NAME}",
  164. "volumes": [
  165. {
  166. "name": "${JENKINS_SERVICE_NAME}-data",
  167. "persistentVolumeClaim": {
  168. "claimName": "${JENKINS_SERVICE_NAME}"
  169. }
  170. }
  171. ]
  172. }
  173. },
  174. "triggers": [
  175. {
  176. "imageChangeParams": {
  177. "automatic": true,
  178. "containerNames": [
  179. "jenkins"
  180. ],
  181. "from": {
  182. "kind": "ImageStreamTag",
  183. "name": "${JENKINS_IMAGE_STREAM_TAG}",
  184. "namespace": "${NAMESPACE}"
  185. },
  186. "lastTriggeredImage": ""
  187. },
  188. "type": "ImageChange"
  189. },
  190. {
  191. "type": "ConfigChange"
  192. }
  193. ]
  194. }
  195. },
  196. {
  197. "apiVersion": "v1",
  198. "kind": "ServiceAccount",
  199. "metadata": {
  200. "annotations": {
  201. "serviceaccounts.openshift.io/oauth-redirectreference.jenkins": "{\"kind\":\"OAuthRedirectReference\",\"apiVersion\":\"v1\",\"reference\":{\"kind\":\"Route\",\"name\":\"${JENKINS_SERVICE_NAME}\"}}"
  202. },
  203. "name": "${JENKINS_SERVICE_NAME}"
  204. }
  205. },
  206. {
  207. "apiVersion": "v1",
  208. "groupNames": null,
  209. "kind": "RoleBinding",
  210. "metadata": {
  211. "name": "${JENKINS_SERVICE_NAME}_edit"
  212. },
  213. "roleRef": {
  214. "name": "edit"
  215. },
  216. "subjects": [
  217. {
  218. "kind": "ServiceAccount",
  219. "name": "${JENKINS_SERVICE_NAME}"
  220. }
  221. ]
  222. },
  223. {
  224. "apiVersion": "v1",
  225. "kind": "Service",
  226. "metadata": {
  227. "name": "${JNLP_SERVICE_NAME}"
  228. },
  229. "spec": {
  230. "ports": [
  231. {
  232. "name": "agent",
  233. "nodePort": 0,
  234. "port": 50000,
  235. "protocol": "TCP",
  236. "targetPort": 50000
  237. }
  238. ],
  239. "selector": {
  240. "name": "${JENKINS_SERVICE_NAME}"
  241. },
  242. "sessionAffinity": "None",
  243. "type": "ClusterIP"
  244. }
  245. },
  246. {
  247. "apiVersion": "v1",
  248. "kind": "Service",
  249. "metadata": {
  250. "annotations": {
  251. "service.alpha.openshift.io/dependencies": "[{\"name\": \"${JNLP_SERVICE_NAME}\", \"namespace\": \"\", \"kind\": \"Service\"}]",
  252. "service.openshift.io/infrastructure": "true"
  253. },
  254. "name": "${JENKINS_SERVICE_NAME}"
  255. },
  256. "spec": {
  257. "ports": [
  258. {
  259. "name": "web",
  260. "nodePort": 0,
  261. "port": 80,
  262. "protocol": "TCP",
  263. "targetPort": 8080
  264. }
  265. ],
  266. "selector": {
  267. "name": "${JENKINS_SERVICE_NAME}"
  268. },
  269. "sessionAffinity": "None",
  270. "type": "ClusterIP"
  271. }
  272. }
  273. ],
  274. "parameters": [
  275. {
  276. "description": "The name of the OpenShift Service exposed for the Jenkins container.",
  277. "displayName": "Jenkins Service Name",
  278. "name": "JENKINS_SERVICE_NAME",
  279. "value": "jenkins"
  280. },
  281. {
  282. "description": "The name of the service used for master/slave communication.",
  283. "displayName": "Jenkins JNLP Service Name",
  284. "name": "JNLP_SERVICE_NAME",
  285. "value": "jenkins-jnlp"
  286. },
  287. {
  288. "description": "Whether to enable OAuth OpenShift integration. If false, the static account 'admin' will be initialized with the password 'password'.",
  289. "displayName": "Enable OAuth in Jenkins",
  290. "name": "ENABLE_OAUTH",
  291. "value": "true"
  292. },
  293. {
  294. "description": "Maximum amount of memory the container can use.",
  295. "displayName": "Memory Limit",
  296. "name": "MEMORY_LIMIT",
  297. "value": "512Mi"
  298. },
  299. {
  300. "description": "Volume space available for data, e.g. 512Mi, 2Gi.",
  301. "displayName": "Volume Capacity",
  302. "name": "VOLUME_CAPACITY",
  303. "required": true,
  304. "value": "1Gi"
  305. },
  306. {
  307. "description": "The OpenShift Namespace where the Jenkins ImageStream resides.",
  308. "displayName": "Jenkins ImageStream Namespace",
  309. "name": "NAMESPACE",
  310. "value": "openshift"
  311. },
  312. {
  313. "description": "Whether to perform memory intensive, possibly slow, synchronization with the Jenkins Update Center on start. If true, the Jenkins core update monitor and site warnings monitor are disabled.",
  314. "displayName": "Disable memory intensive administrative monitors",
  315. "name": "DISABLE_ADMINISTRATIVE_MONITORS",
  316. "value": "false"
  317. },
  318. {
  319. "description": "Name of the ImageStreamTag to be used for the Jenkins image.",
  320. "displayName": "Jenkins ImageStreamTag",
  321. "name": "JENKINS_IMAGE_STREAM_TAG",
  322. "value": "jenkins:2"
  323. },
  324. {
  325. "description": "When a fatal error occurs, an error log is created with information and the state obtained at the time of the fatal error.",
  326. "displayName": "Fatal Error Log File",
  327. "name": "ENABLE_FATAL_ERROR_LOG_FILE",
  328. "value": "false"
  329. }
  330. ]
  331. }