httpd.json 7.8 KB

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