jenkins-ephemeral-template.json 8.7 KB

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