jenkins-persistent-template.json 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321
  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. "image": " ",
  119. "imagePullPolicy": "IfNotPresent",
  120. "livenessProbe": {
  121. "failureThreshold": 2,
  122. "httpGet": {
  123. "path": "/login",
  124. "port": 8080
  125. },
  126. "initialDelaySeconds": 420,
  127. "periodSeconds": 360,
  128. "timeoutSeconds": 240
  129. },
  130. "name": "jenkins",
  131. "readinessProbe": {
  132. "httpGet": {
  133. "path": "/login",
  134. "port": 8080
  135. },
  136. "initialDelaySeconds": 3,
  137. "timeoutSeconds": 240
  138. },
  139. "resources": {
  140. "limits": {
  141. "memory": "${MEMORY_LIMIT}"
  142. }
  143. },
  144. "securityContext": {
  145. "capabilities": {},
  146. "privileged": false
  147. },
  148. "terminationMessagePath": "/dev/termination-log",
  149. "volumeMounts": [
  150. {
  151. "mountPath": "/var/lib/jenkins",
  152. "name": "${JENKINS_SERVICE_NAME}-data"
  153. }
  154. ]
  155. }
  156. ],
  157. "dnsPolicy": "ClusterFirst",
  158. "restartPolicy": "Always",
  159. "serviceAccountName": "${JENKINS_SERVICE_NAME}",
  160. "volumes": [
  161. {
  162. "name": "${JENKINS_SERVICE_NAME}-data",
  163. "persistentVolumeClaim": {
  164. "claimName": "${JENKINS_SERVICE_NAME}"
  165. }
  166. }
  167. ]
  168. }
  169. },
  170. "triggers": [
  171. {
  172. "imageChangeParams": {
  173. "automatic": true,
  174. "containerNames": [
  175. "jenkins"
  176. ],
  177. "from": {
  178. "kind": "ImageStreamTag",
  179. "name": "${JENKINS_IMAGE_STREAM_TAG}",
  180. "namespace": "${NAMESPACE}"
  181. },
  182. "lastTriggeredImage": ""
  183. },
  184. "type": "ImageChange"
  185. },
  186. {
  187. "type": "ConfigChange"
  188. }
  189. ]
  190. }
  191. },
  192. {
  193. "apiVersion": "v1",
  194. "kind": "ServiceAccount",
  195. "metadata": {
  196. "annotations": {
  197. "serviceaccounts.openshift.io/oauth-redirectreference.jenkins": "{\"kind\":\"OAuthRedirectReference\",\"apiVersion\":\"v1\",\"reference\":{\"kind\":\"Route\",\"name\":\"${JENKINS_SERVICE_NAME}\"}}"
  198. },
  199. "name": "${JENKINS_SERVICE_NAME}"
  200. }
  201. },
  202. {
  203. "apiVersion": "v1",
  204. "groupNames": null,
  205. "kind": "RoleBinding",
  206. "metadata": {
  207. "name": "${JENKINS_SERVICE_NAME}_edit"
  208. },
  209. "roleRef": {
  210. "name": "edit"
  211. },
  212. "subjects": [
  213. {
  214. "kind": "ServiceAccount",
  215. "name": "${JENKINS_SERVICE_NAME}"
  216. }
  217. ]
  218. },
  219. {
  220. "apiVersion": "v1",
  221. "kind": "Service",
  222. "metadata": {
  223. "name": "${JNLP_SERVICE_NAME}"
  224. },
  225. "spec": {
  226. "ports": [
  227. {
  228. "name": "agent",
  229. "nodePort": 0,
  230. "port": 50000,
  231. "protocol": "TCP",
  232. "targetPort": 50000
  233. }
  234. ],
  235. "selector": {
  236. "name": "${JENKINS_SERVICE_NAME}"
  237. },
  238. "sessionAffinity": "None",
  239. "type": "ClusterIP"
  240. }
  241. },
  242. {
  243. "apiVersion": "v1",
  244. "kind": "Service",
  245. "metadata": {
  246. "annotations": {
  247. "service.alpha.openshift.io/dependencies": "[{\"name\": \"${JNLP_SERVICE_NAME}\", \"namespace\": \"\", \"kind\": \"Service\"}]",
  248. "service.openshift.io/infrastructure": "true"
  249. },
  250. "name": "${JENKINS_SERVICE_NAME}"
  251. },
  252. "spec": {
  253. "ports": [
  254. {
  255. "name": "web",
  256. "nodePort": 0,
  257. "port": 80,
  258. "protocol": "TCP",
  259. "targetPort": 8080
  260. }
  261. ],
  262. "selector": {
  263. "name": "${JENKINS_SERVICE_NAME}"
  264. },
  265. "sessionAffinity": "None",
  266. "type": "ClusterIP"
  267. }
  268. }
  269. ],
  270. "parameters": [
  271. {
  272. "description": "The name of the OpenShift Service exposed for the Jenkins container.",
  273. "displayName": "Jenkins Service Name",
  274. "name": "JENKINS_SERVICE_NAME",
  275. "value": "jenkins"
  276. },
  277. {
  278. "description": "The name of the service used for master/slave communication.",
  279. "displayName": "Jenkins JNLP Service Name",
  280. "name": "JNLP_SERVICE_NAME",
  281. "value": "jenkins-jnlp"
  282. },
  283. {
  284. "description": "Whether to enable OAuth OpenShift integration. If false, the static account 'admin' will be initialized with the password 'password'.",
  285. "displayName": "Enable OAuth in Jenkins",
  286. "name": "ENABLE_OAUTH",
  287. "value": "true"
  288. },
  289. {
  290. "description": "Maximum amount of memory the container can use.",
  291. "displayName": "Memory Limit",
  292. "name": "MEMORY_LIMIT",
  293. "value": "512Mi"
  294. },
  295. {
  296. "description": "Volume space available for data, e.g. 512Mi, 2Gi.",
  297. "displayName": "Volume Capacity",
  298. "name": "VOLUME_CAPACITY",
  299. "required": true,
  300. "value": "1Gi"
  301. },
  302. {
  303. "description": "The OpenShift Namespace where the Jenkins ImageStream resides.",
  304. "displayName": "Jenkins ImageStream Namespace",
  305. "name": "NAMESPACE",
  306. "value": "openshift"
  307. },
  308. {
  309. "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.",
  310. "displayName": "Disable memory intensive administrative monitors",
  311. "name": "DISABLE_ADMINISTRATIVE_MONITORS",
  312. "value": "false"
  313. },
  314. {
  315. "description": "Name of the ImageStreamTag to be used for the Jenkins image.",
  316. "displayName": "Jenkins ImageStreamTag",
  317. "name": "JENKINS_IMAGE_STREAM_TAG",
  318. "value": "jenkins:2"
  319. }
  320. ]
  321. }