httpd.json 9.9 KB

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