nginx.json 10 KB

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