dotnet-example.json 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333
  1. {
  2. "kind": "Template",
  3. "apiVersion": "v1",
  4. "metadata": {
  5. "name": "dotnet-example",
  6. "annotations": {
  7. "openshift.io/display-name": ".NET Core Example",
  8. "description": "An example .NET Core application.",
  9. "tags": "quickstart,dotnet,.net",
  10. "iconClass": "icon-dotnet",
  11. "template.openshift.io/provider-display-name": "Red Hat, Inc.",
  12. "template.openshift.io/documentation-url": "https://github.com/redhat-developer/s2i-dotnetcore",
  13. "template.openshift.io/support-url": "https://access.redhat.com"
  14. }
  15. },
  16. "objects": [
  17. {
  18. "kind": "Route",
  19. "apiVersion": "v1",
  20. "metadata": {
  21. "name": "${NAME}"
  22. },
  23. "spec": {
  24. "host": "${APPLICATION_DOMAIN}",
  25. "to": {
  26. "kind": "Service",
  27. "name": "${NAME}"
  28. }
  29. }
  30. },
  31. {
  32. "kind": "Service",
  33. "apiVersion": "v1",
  34. "metadata": {
  35. "name": "${NAME}",
  36. "annotations": {
  37. "description": "Exposes and load balances the application pods"
  38. }
  39. },
  40. "spec": {
  41. "ports": [
  42. {
  43. "name": "web",
  44. "port": 8080,
  45. "targetPort": 8080
  46. }
  47. ],
  48. "selector": {
  49. "name": "${NAME}"
  50. }
  51. }
  52. },
  53. {
  54. "kind": "ImageStream",
  55. "apiVersion": "v1",
  56. "metadata": {
  57. "name": "${NAME}",
  58. "annotations": {
  59. "description": "Keeps track of changes in the application image"
  60. }
  61. }
  62. },
  63. {
  64. "kind": "BuildConfig",
  65. "apiVersion": "v1",
  66. "metadata": {
  67. "name": "${NAME}",
  68. "annotations": {
  69. "description": "Defines how to build the application"
  70. }
  71. },
  72. "spec": {
  73. "source": {
  74. "type": "Git",
  75. "git": {
  76. "uri": "${SOURCE_REPOSITORY_URL}",
  77. "ref": "${SOURCE_REPOSITORY_REF}"
  78. },
  79. "contextDir": "${CONTEXT_DIR}"
  80. },
  81. "strategy": {
  82. "type": "Source",
  83. "sourceStrategy": {
  84. "from": {
  85. "kind": "ImageStreamTag",
  86. "namespace": "${NAMESPACE}",
  87. "name": "${DOTNET_IMAGE_STREAM_TAG}"
  88. },
  89. "env": [
  90. {
  91. "name": "DOTNET_STARTUP_PROJECT",
  92. "value": "${DOTNET_STARTUP_PROJECT}"
  93. },
  94. {
  95. "name": "DOTNET_ASSEMBLY_NAME",
  96. "value": "${DOTNET_ASSEMBLY_NAME}"
  97. },
  98. {
  99. "name": "DOTNET_NPM_TOOLS",
  100. "value": "${DOTNET_NPM_TOOLS}"
  101. },
  102. {
  103. "name": "DOTNET_TEST_PROJECTS",
  104. "value": "${DOTNET_TEST_PROJECTS}"
  105. },
  106. {
  107. "name": "DOTNET_CONFIGURATION",
  108. "value": "${DOTNET_CONFIGURATION}"
  109. },
  110. {
  111. "name": "DOTNET_PUBLISH",
  112. "value": "true"
  113. },
  114. {
  115. "name": "DOTNET_RESTORE_SOURCES",
  116. "value": "${DOTNET_RESTORE_SOURCES}"
  117. }
  118. ]
  119. }
  120. },
  121. "output": {
  122. "to": {
  123. "kind": "ImageStreamTag",
  124. "name": "${NAME}:latest"
  125. }
  126. },
  127. "triggers": [
  128. {
  129. "type": "ImageChange"
  130. },
  131. {
  132. "type": "ConfigChange"
  133. },
  134. {
  135. "type": "GitHub",
  136. "github": {
  137. "secret": "${GITHUB_WEBHOOK_SECRET}"
  138. }
  139. },
  140. {
  141. "type": "Generic",
  142. "generic": {
  143. "secret": "${GENERIC_WEBHOOK_SECRET}"
  144. }
  145. }
  146. ]
  147. }
  148. },
  149. {
  150. "kind": "DeploymentConfig",
  151. "apiVersion": "v1",
  152. "metadata": {
  153. "name": "${NAME}",
  154. "annotations": {
  155. "description": "Defines how to deploy the application server"
  156. }
  157. },
  158. "spec": {
  159. "strategy": {
  160. "type": "Rolling"
  161. },
  162. "triggers": [
  163. {
  164. "type": "ImageChange",
  165. "imageChangeParams": {
  166. "automatic": true,
  167. "containerNames": [
  168. "dotnet-app"
  169. ],
  170. "from": {
  171. "kind": "ImageStreamTag",
  172. "name": "${NAME}:latest"
  173. }
  174. }
  175. },
  176. {
  177. "type": "ConfigChange"
  178. }
  179. ],
  180. "replicas": 1,
  181. "selector": {
  182. "name": "${NAME}"
  183. },
  184. "template": {
  185. "metadata": {
  186. "name": "${NAME}",
  187. "labels": {
  188. "name": "${NAME}"
  189. }
  190. },
  191. "spec": {
  192. "containers": [
  193. {
  194. "name": "dotnet-app",
  195. "image": " ",
  196. "ports": [
  197. {
  198. "containerPort": 8080
  199. }
  200. ],
  201. "livenessProbe": {
  202. "httpGet": {
  203. "path": "/",
  204. "port": 8080,
  205. "scheme": "HTTP"
  206. },
  207. "initialDelaySeconds": 40,
  208. "timeoutSeconds": 15
  209. },
  210. "readinessProbe": {
  211. "httpGet": {
  212. "path": "/",
  213. "port": 8080,
  214. "scheme": "HTTP"
  215. },
  216. "initialDelaySeconds": 10,
  217. "timeoutSeconds": 30
  218. },
  219. "resources": {
  220. "limits": {
  221. "memory": "${MEMORY_LIMIT}"
  222. }
  223. },
  224. "env": []
  225. }
  226. ]
  227. }
  228. }
  229. }
  230. }
  231. ],
  232. "parameters": [
  233. {
  234. "name": "NAME",
  235. "displayName": "Name",
  236. "description": "The name assigned to all of the frontend objects defined in this template.",
  237. "required": true,
  238. "value": "dotnet-example"
  239. },
  240. {
  241. "name": "MEMORY_LIMIT",
  242. "displayName": "Memory Limit",
  243. "description": "Maximum amount of memory the container can use.",
  244. "required": true,
  245. "value": "512Mi"
  246. },
  247. {
  248. "name": "DOTNET_IMAGE_STREAM_TAG",
  249. "displayName": ".NET builder",
  250. "required": true,
  251. "description": "The image stream tag which is used to build the code.",
  252. "value": "dotnet:2.0"
  253. },
  254. {
  255. "name": "NAMESPACE",
  256. "displayName": "Namespace",
  257. "description": "The OpenShift Namespace where the ImageStream resides.",
  258. "required": true,
  259. "value": "openshift"
  260. },
  261. {
  262. "name": "SOURCE_REPOSITORY_URL",
  263. "displayName": "Git Repository URL",
  264. "description": "The URL of the repository with your application source code.",
  265. "required": true,
  266. "value": "https://github.com/redhat-developer/s2i-dotnetcore-ex.git"
  267. },
  268. {
  269. "name": "SOURCE_REPOSITORY_REF",
  270. "displayName": "Git Reference",
  271. "description": "Set this to a branch name, tag or other ref of your repository if you are not using the default branch.",
  272. "value": "dotnetcore-2.0"
  273. },
  274. {
  275. "name": "CONTEXT_DIR",
  276. "displayName": "Context Directory",
  277. "description": "Set this to use a subdirectory of the source code repository"
  278. },
  279. {
  280. "name": "APPLICATION_DOMAIN",
  281. "displayName": "Application Hostname",
  282. "description": "The exposed hostname that will route to the .NET Core service, if left blank a value will be defaulted.",
  283. "value": ""
  284. },
  285. {
  286. "name": "GITHUB_WEBHOOK_SECRET",
  287. "displayName": "GitHub Webhook Secret",
  288. "description": "A secret string used to configure the GitHub webhook.",
  289. "generate": "expression",
  290. "from": "[a-zA-Z0-9]{40}"
  291. },
  292. {
  293. "name": "GENERIC_WEBHOOK_SECRET",
  294. "displayName": "Generic Webhook Secret",
  295. "description": "A secret string used to configure the Generic webhook.",
  296. "generate": "expression",
  297. "from": "[a-zA-Z0-9]{40}"
  298. },
  299. {
  300. "name": "DOTNET_STARTUP_PROJECT",
  301. "displayName": "Startup Project",
  302. "description": "Set this to a project file (e.g. csproj) or a folder containing a single project file.",
  303. "value": "app"
  304. },
  305. {
  306. "name": "DOTNET_ASSEMBLY_NAME",
  307. "displayName": "Startup Assembly",
  308. "description": "Set this when the assembly name is overridden in the project file."
  309. },
  310. {
  311. "name": "DOTNET_NPM_TOOLS",
  312. "displayName": "Npm Tools",
  313. "description": "Set this to a space separated list of npm tools needed to publish.",
  314. "value": "bower gulp"
  315. },
  316. {
  317. "name": "DOTNET_TEST_PROJECTS",
  318. "displayName": "Test projects",
  319. "description": "Set this to a space separated list of test projects to run before publishing."
  320. },
  321. {
  322. "name": "DOTNET_CONFIGURATION",
  323. "displayName": "Configuration",
  324. "description": "Set this to configuration (Release/Debug).",
  325. "value": "Release"
  326. },
  327. {
  328. "name": "DOTNET_RESTORE_SOURCES",
  329. "displayName": "NuGet package sources",
  330. "description": "Set this to override the NuGet.config sources."
  331. }
  332. ]
  333. }