nginx.json 8.1 KB

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