jenkins-persistent-template.json 9.1 KB

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