jenkins-ephemeral-template.json 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297
  1. {
  2. "apiVersion": "v1",
  3. "kind": "Template",
  4. "labels": {
  5. "app": "jenkins-ephemeral",
  6. "template": "jenkins-ephemeral-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, without persistent storage.\n\nWARNING: Any data stored will be lost upon pod destruction. Only use this template for testing.",
  12. "iconClass": "icon-jenkins",
  13. "openshift.io/display-name": "Jenkins (Ephemeral)",
  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. The Jenkins configuration is stored in non-persistent storage, so this configuration should be used for experimental purposes only.",
  16. "openshift.io/provider-display-name": "Red Hat, Inc.",
  17. "openshift.io/support-url": "https://access.redhat.com",
  18. "tags": "instant-app,jenkins,ppc64le"
  19. },
  20. "name": "jenkins-ephemeral"
  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": "DeploymentConfig",
  47. "metadata": {
  48. "annotations": {
  49. "template.alpha.openshift.io/wait-for-ready": "true"
  50. },
  51. "name": "${JENKINS_SERVICE_NAME}"
  52. },
  53. "spec": {
  54. "replicas": 1,
  55. "selector": {
  56. "name": "${JENKINS_SERVICE_NAME}"
  57. },
  58. "strategy": {
  59. "type": "Recreate"
  60. },
  61. "template": {
  62. "metadata": {
  63. "labels": {
  64. "name": "${JENKINS_SERVICE_NAME}"
  65. }
  66. },
  67. "spec": {
  68. "containers": [
  69. {
  70. "capabilities": {},
  71. "env": [
  72. {
  73. "name": "OPENSHIFT_ENABLE_OAUTH",
  74. "value": "${ENABLE_OAUTH}"
  75. },
  76. {
  77. "name": "OPENSHIFT_ENABLE_REDIRECT_PROMPT",
  78. "value": "true"
  79. },
  80. {
  81. "name": "DISABLE_ADMINISTRATIVE_MONITORS",
  82. "value": "${DISABLE_ADMINISTRATIVE_MONITORS}"
  83. },
  84. {
  85. "name": "KUBERNETES_MASTER",
  86. "value": "https://kubernetes.default:443"
  87. },
  88. {
  89. "name": "KUBERNETES_TRUST_CERTIFICATES",
  90. "value": "true"
  91. },
  92. {
  93. "name": "JENKINS_SERVICE_NAME",
  94. "value": "${JENKINS_SERVICE_NAME}"
  95. },
  96. {
  97. "name": "JNLP_SERVICE_NAME",
  98. "value": "${JNLP_SERVICE_NAME}"
  99. }
  100. ],
  101. "image": " ",
  102. "imagePullPolicy": "IfNotPresent",
  103. "livenessProbe": {
  104. "failureThreshold": 2,
  105. "httpGet": {
  106. "path": "/login",
  107. "port": 8080
  108. },
  109. "initialDelaySeconds": 420,
  110. "periodSeconds": 360,
  111. "timeoutSeconds": 240
  112. },
  113. "name": "jenkins",
  114. "readinessProbe": {
  115. "httpGet": {
  116. "path": "/login",
  117. "port": 8080
  118. },
  119. "initialDelaySeconds": 3,
  120. "timeoutSeconds": 240
  121. },
  122. "resources": {
  123. "limits": {
  124. "memory": "${MEMORY_LIMIT}"
  125. }
  126. },
  127. "securityContext": {
  128. "capabilities": {},
  129. "privileged": false
  130. },
  131. "terminationMessagePath": "/dev/termination-log",
  132. "volumeMounts": [
  133. {
  134. "mountPath": "/var/lib/jenkins",
  135. "name": "${JENKINS_SERVICE_NAME}-data"
  136. }
  137. ]
  138. }
  139. ],
  140. "dnsPolicy": "ClusterFirst",
  141. "restartPolicy": "Always",
  142. "serviceAccountName": "${JENKINS_SERVICE_NAME}",
  143. "volumes": [
  144. {
  145. "emptyDir": {
  146. "medium": ""
  147. },
  148. "name": "${JENKINS_SERVICE_NAME}-data"
  149. }
  150. ]
  151. }
  152. },
  153. "triggers": [
  154. {
  155. "imageChangeParams": {
  156. "automatic": true,
  157. "containerNames": [
  158. "jenkins"
  159. ],
  160. "from": {
  161. "kind": "ImageStreamTag",
  162. "name": "${JENKINS_IMAGE_STREAM_TAG}",
  163. "namespace": "${NAMESPACE}"
  164. },
  165. "lastTriggeredImage": ""
  166. },
  167. "type": "ImageChange"
  168. },
  169. {
  170. "type": "ConfigChange"
  171. }
  172. ]
  173. }
  174. },
  175. {
  176. "apiVersion": "v1",
  177. "kind": "ServiceAccount",
  178. "metadata": {
  179. "annotations": {
  180. "serviceaccounts.openshift.io/oauth-redirectreference.jenkins": "{\"kind\":\"OAuthRedirectReference\",\"apiVersion\":\"v1\",\"reference\":{\"kind\":\"Route\",\"name\":\"${JENKINS_SERVICE_NAME}\"}}"
  181. },
  182. "name": "${JENKINS_SERVICE_NAME}"
  183. }
  184. },
  185. {
  186. "apiVersion": "v1",
  187. "groupNames": null,
  188. "kind": "RoleBinding",
  189. "metadata": {
  190. "name": "${JENKINS_SERVICE_NAME}_edit"
  191. },
  192. "roleRef": {
  193. "name": "edit"
  194. },
  195. "subjects": [
  196. {
  197. "kind": "ServiceAccount",
  198. "name": "${JENKINS_SERVICE_NAME}"
  199. }
  200. ]
  201. },
  202. {
  203. "apiVersion": "v1",
  204. "kind": "Service",
  205. "metadata": {
  206. "name": "${JNLP_SERVICE_NAME}"
  207. },
  208. "spec": {
  209. "ports": [
  210. {
  211. "name": "agent",
  212. "nodePort": 0,
  213. "port": 50000,
  214. "protocol": "TCP",
  215. "targetPort": 50000
  216. }
  217. ],
  218. "selector": {
  219. "name": "${JENKINS_SERVICE_NAME}"
  220. },
  221. "sessionAffinity": "None",
  222. "type": "ClusterIP"
  223. }
  224. },
  225. {
  226. "apiVersion": "v1",
  227. "kind": "Service",
  228. "metadata": {
  229. "annotations": {
  230. "service.alpha.openshift.io/dependencies": "[{\"name\": \"${JNLP_SERVICE_NAME}\", \"namespace\": \"\", \"kind\": \"Service\"}]",
  231. "service.openshift.io/infrastructure": "true"
  232. },
  233. "name": "${JENKINS_SERVICE_NAME}"
  234. },
  235. "spec": {
  236. "ports": [
  237. {
  238. "name": "web",
  239. "nodePort": 0,
  240. "port": 80,
  241. "protocol": "TCP",
  242. "targetPort": 8080
  243. }
  244. ],
  245. "selector": {
  246. "name": "${JENKINS_SERVICE_NAME}"
  247. },
  248. "sessionAffinity": "None",
  249. "type": "ClusterIP"
  250. }
  251. }
  252. ],
  253. "parameters": [
  254. {
  255. "description": "The name of the OpenShift Service exposed for the Jenkins container.",
  256. "displayName": "Jenkins Service Name",
  257. "name": "JENKINS_SERVICE_NAME",
  258. "value": "jenkins"
  259. },
  260. {
  261. "description": "The name of the service used for master/slave communication.",
  262. "displayName": "Jenkins JNLP Service Name",
  263. "name": "JNLP_SERVICE_NAME",
  264. "value": "jenkins-jnlp"
  265. },
  266. {
  267. "description": "Whether to enable OAuth OpenShift integration. If false, the static account 'admin' will be initialized with the password 'password'.",
  268. "displayName": "Enable OAuth in Jenkins",
  269. "name": "ENABLE_OAUTH",
  270. "value": "true"
  271. },
  272. {
  273. "description": "Maximum amount of memory the container can use.",
  274. "displayName": "Memory Limit",
  275. "name": "MEMORY_LIMIT",
  276. "value": "512Mi"
  277. },
  278. {
  279. "description": "The OpenShift Namespace where the Jenkins ImageStream resides.",
  280. "displayName": "Jenkins ImageStream Namespace",
  281. "name": "NAMESPACE",
  282. "value": "openshift"
  283. },
  284. {
  285. "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.",
  286. "displayName": "Disable memory intensive administrative monitors",
  287. "name": "DISABLE_ADMINISTRATIVE_MONITORS",
  288. "value": "false"
  289. },
  290. {
  291. "description": "Name of the ImageStreamTag to be used for the Jenkins image.",
  292. "displayName": "Jenkins ImageStreamTag",
  293. "name": "JENKINS_IMAGE_STREAM_TAG",
  294. "value": "jenkins:2"
  295. }
  296. ]
  297. }