httpd.json 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270
  1. {
  2. "kind": "Template",
  3. "apiVersion": "v1",
  4. "metadata": {
  5. "name": "httpd-example",
  6. "annotations": {
  7. "openshift.io/display-name": "Apache HTTP Server",
  8. "description": "An example Apache HTTP Server (httpd) application that serves static content. For more information about using this template, including OpenShift considerations, see https://github.com/openshift/httpd-ex/blob/master/README.md.",
  9. "tags": "quickstart,httpd",
  10. "iconClass": "icon-apache",
  11. "openshift.io/long-description": "This template defines resources needed to develop a static application served by Apache HTTP Server (httpd), including a build configuration and application deployment configuration.",
  12. "openshift.io/provider-display-name": "Red Hat, Inc.",
  13. "openshift.io/documentation-url": "https://github.com/openshift/httpd-ex",
  14. "openshift.io/support-url": "https://access.redhat.com",
  15. "template.openshift.io/bindable": "false"
  16. }
  17. },
  18. "message": "The following service(s) have been created in your project: ${NAME}.\n\nFor more information about using this template, including OpenShift considerations, see https://github.com/openshift/httpd-ex/blob/master/README.md.",
  19. "labels": {
  20. "template": "httpd-example",
  21. "app": "httpd-example"
  22. },
  23. "objects": [
  24. {
  25. "kind": "Service",
  26. "apiVersion": "v1",
  27. "metadata": {
  28. "name": "${NAME}",
  29. "annotations": {
  30. "description": "Exposes and load balances the application pods"
  31. }
  32. },
  33. "spec": {
  34. "ports": [
  35. {
  36. "name": "web",
  37. "port": 8080,
  38. "targetPort": 8080
  39. }
  40. ],
  41. "selector": {
  42. "name": "${NAME}"
  43. }
  44. }
  45. },
  46. {
  47. "kind": "Route",
  48. "apiVersion": "v1",
  49. "metadata": {
  50. "name": "${NAME}"
  51. },
  52. "spec": {
  53. "host": "${APPLICATION_DOMAIN}",
  54. "to": {
  55. "kind": "Service",
  56. "name": "${NAME}"
  57. }
  58. }
  59. },
  60. {
  61. "kind": "ImageStream",
  62. "apiVersion": "v1",
  63. "metadata": {
  64. "name": "${NAME}",
  65. "annotations": {
  66. "description": "Keeps track of changes in the application image"
  67. }
  68. }
  69. },
  70. {
  71. "kind": "BuildConfig",
  72. "apiVersion": "v1",
  73. "metadata": {
  74. "name": "${NAME}",
  75. "annotations": {
  76. "description": "Defines how to build the application",
  77. "template.alpha.openshift.io/wait-for-ready": "true"
  78. }
  79. },
  80. "spec": {
  81. "source": {
  82. "type": "Git",
  83. "git": {
  84. "uri": "${SOURCE_REPOSITORY_URL}",
  85. "ref": "${SOURCE_REPOSITORY_REF}"
  86. },
  87. "contextDir": "${CONTEXT_DIR}"
  88. },
  89. "strategy": {
  90. "type": "Source",
  91. "sourceStrategy": {
  92. "from": {
  93. "kind": "ImageStreamTag",
  94. "namespace": "${NAMESPACE}",
  95. "name": "httpd:2.4"
  96. }
  97. }
  98. },
  99. "output": {
  100. "to": {
  101. "kind": "ImageStreamTag",
  102. "name": "${NAME}:latest"
  103. }
  104. },
  105. "triggers": [
  106. {
  107. "type": "ImageChange"
  108. },
  109. {
  110. "type": "ConfigChange"
  111. },
  112. {
  113. "type": "GitHub",
  114. "github": {
  115. "secret": "${GITHUB_WEBHOOK_SECRET}"
  116. }
  117. },
  118. {
  119. "type": "Generic",
  120. "generic": {
  121. "secret": "${GENERIC_WEBHOOK_SECRET}"
  122. }
  123. }
  124. ]
  125. }
  126. },
  127. {
  128. "kind": "DeploymentConfig",
  129. "apiVersion": "v1",
  130. "metadata": {
  131. "name": "${NAME}",
  132. "annotations": {
  133. "description": "Defines how to deploy the application server",
  134. "template.alpha.openshift.io/wait-for-ready": "true"
  135. }
  136. },
  137. "spec": {
  138. "strategy": {
  139. "type": "Rolling"
  140. },
  141. "triggers": [
  142. {
  143. "type": "ImageChange",
  144. "imageChangeParams": {
  145. "automatic": true,
  146. "containerNames": [
  147. "httpd-example"
  148. ],
  149. "from": {
  150. "kind": "ImageStreamTag",
  151. "name": "${NAME}:latest"
  152. }
  153. }
  154. },
  155. {
  156. "type": "ConfigChange"
  157. }
  158. ],
  159. "replicas": 1,
  160. "selector": {
  161. "name": "${NAME}"
  162. },
  163. "template": {
  164. "metadata": {
  165. "name": "${NAME}",
  166. "labels": {
  167. "name": "${NAME}"
  168. }
  169. },
  170. "spec": {
  171. "containers": [
  172. {
  173. "name": "httpd-example",
  174. "image": " ",
  175. "ports": [
  176. {
  177. "containerPort": 8080
  178. }
  179. ],
  180. "readinessProbe": {
  181. "timeoutSeconds": 3,
  182. "initialDelaySeconds": 3,
  183. "httpGet": {
  184. "path": "/",
  185. "port": 8080
  186. }
  187. },
  188. "livenessProbe": {
  189. "timeoutSeconds": 3,
  190. "initialDelaySeconds": 30,
  191. "httpGet": {
  192. "path": "/",
  193. "port": 8080
  194. }
  195. },
  196. "resources": {
  197. "limits": {
  198. "memory": "${MEMORY_LIMIT}"
  199. }
  200. },
  201. "env": [
  202. ]
  203. }
  204. ]
  205. }
  206. }
  207. }
  208. }
  209. ],
  210. "parameters": [
  211. {
  212. "name": "NAME",
  213. "displayName": "Name",
  214. "description": "The name assigned to all of the frontend objects defined in this template.",
  215. "required": true,
  216. "value": "httpd-example"
  217. },
  218. {
  219. "name": "NAMESPACE",
  220. "displayName": "Namespace",
  221. "description": "The OpenShift Namespace where the ImageStream resides.",
  222. "required": true,
  223. "value": "openshift"
  224. },
  225. {
  226. "name": "MEMORY_LIMIT",
  227. "displayName": "Memory Limit",
  228. "description": "Maximum amount of memory the container can use.",
  229. "required": true,
  230. "value": "512Mi"
  231. },
  232. {
  233. "name": "SOURCE_REPOSITORY_URL",
  234. "displayName": "Git Repository URL",
  235. "description": "The URL of the repository with your application source code.",
  236. "required": true,
  237. "value": "https://github.com/openshift/httpd-ex.git"
  238. },
  239. {
  240. "name": "SOURCE_REPOSITORY_REF",
  241. "displayName": "Git Reference",
  242. "description": "Set this to a branch name, tag or other ref of your repository if you are not using the default branch."
  243. },
  244. {
  245. "name": "CONTEXT_DIR",
  246. "displayName": "Context Directory",
  247. "description": "Set this to the relative path to your project if it is not in the root of your repository."
  248. },
  249. {
  250. "name": "APPLICATION_DOMAIN",
  251. "displayName": "Application Hostname",
  252. "description": "The exposed hostname that will route to the httpd service, if left blank a value will be defaulted.",
  253. "value": ""
  254. },
  255. {
  256. "name": "GITHUB_WEBHOOK_SECRET",
  257. "displayName": "GitHub Webhook Secret",
  258. "description": "Github trigger secret. A difficult to guess string encoded as part of the webhook URL. Not encrypted.",
  259. "generate": "expression",
  260. "from": "[a-zA-Z0-9]{40}"
  261. },
  262. {
  263. "name": "GENERIC_WEBHOOK_SECRET",
  264. "displayName": "Generic Webhook Secret",
  265. "description": "A secret string used to configure the Generic webhook.",
  266. "generate": "expression",
  267. "from": "[a-zA-Z0-9]{40}"
  268. }
  269. ]
  270. }