dotnet-example.json 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343
  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_SDK_VERSION",
  96. "value": "${DOTNET_SDK_VERSION}"
  97. },
  98. {
  99. "name": "DOTNET_ASSEMBLY_NAME",
  100. "value": "${DOTNET_ASSEMBLY_NAME}"
  101. },
  102. {
  103. "name": "DOTNET_NPM_TOOLS",
  104. "value": "${DOTNET_NPM_TOOLS}"
  105. },
  106. {
  107. "name": "DOTNET_TEST_PROJECTS",
  108. "value": "${DOTNET_TEST_PROJECTS}"
  109. },
  110. {
  111. "name": "DOTNET_CONFIGURATION",
  112. "value": "${DOTNET_CONFIGURATION}"
  113. },
  114. {
  115. "name": "DOTNET_PUBLISH",
  116. "value": "true"
  117. },
  118. {
  119. "name": "DOTNET_RESTORE_SOURCES",
  120. "value": "${DOTNET_RESTORE_SOURCES}"
  121. }
  122. ]
  123. }
  124. },
  125. "output": {
  126. "to": {
  127. "kind": "ImageStreamTag",
  128. "name": "${NAME}:latest"
  129. }
  130. },
  131. "triggers": [
  132. {
  133. "type": "ImageChange"
  134. },
  135. {
  136. "type": "ConfigChange"
  137. },
  138. {
  139. "type": "GitHub",
  140. "github": {
  141. "secret": "${GITHUB_WEBHOOK_SECRET}"
  142. }
  143. },
  144. {
  145. "type": "Generic",
  146. "generic": {
  147. "secret": "${GENERIC_WEBHOOK_SECRET}"
  148. }
  149. }
  150. ]
  151. }
  152. },
  153. {
  154. "kind": "DeploymentConfig",
  155. "apiVersion": "v1",
  156. "metadata": {
  157. "name": "${NAME}",
  158. "annotations": {
  159. "description": "Defines how to deploy the application server"
  160. }
  161. },
  162. "spec": {
  163. "strategy": {
  164. "type": "Rolling"
  165. },
  166. "triggers": [
  167. {
  168. "type": "ImageChange",
  169. "imageChangeParams": {
  170. "automatic": true,
  171. "containerNames": [
  172. "dotnet-app"
  173. ],
  174. "from": {
  175. "kind": "ImageStreamTag",
  176. "name": "${NAME}:latest"
  177. }
  178. }
  179. },
  180. {
  181. "type": "ConfigChange"
  182. }
  183. ],
  184. "replicas": 1,
  185. "selector": {
  186. "name": "${NAME}"
  187. },
  188. "template": {
  189. "metadata": {
  190. "name": "${NAME}",
  191. "labels": {
  192. "name": "${NAME}"
  193. }
  194. },
  195. "spec": {
  196. "containers": [
  197. {
  198. "name": "dotnet-app",
  199. "image": " ",
  200. "ports": [
  201. {
  202. "containerPort": 8080
  203. }
  204. ],
  205. "livenessProbe": {
  206. "httpGet": {
  207. "path": "/",
  208. "port": 8080,
  209. "scheme": "HTTP"
  210. },
  211. "initialDelaySeconds": 40,
  212. "timeoutSeconds": 15
  213. },
  214. "readinessProbe": {
  215. "httpGet": {
  216. "path": "/",
  217. "port": 8080,
  218. "scheme": "HTTP"
  219. },
  220. "initialDelaySeconds": 10,
  221. "timeoutSeconds": 30
  222. },
  223. "resources": {
  224. "limits": {
  225. "memory": "${MEMORY_LIMIT}"
  226. }
  227. },
  228. "env": []
  229. }
  230. ]
  231. }
  232. }
  233. }
  234. }
  235. ],
  236. "parameters": [
  237. {
  238. "name": "NAME",
  239. "displayName": "Name",
  240. "description": "The name assigned to all of the frontend objects defined in this template.",
  241. "required": true,
  242. "value": "dotnet-example"
  243. },
  244. {
  245. "name": "MEMORY_LIMIT",
  246. "displayName": "Memory Limit",
  247. "description": "Maximum amount of memory the container can use.",
  248. "required": true,
  249. "value": "512Mi"
  250. },
  251. {
  252. "name": "DOTNET_IMAGE_STREAM_TAG",
  253. "displayName": ".NET builder",
  254. "required": true,
  255. "description": "The image stream tag which is used to build the code.",
  256. "value": "dotnet:2.0"
  257. },
  258. {
  259. "name": "NAMESPACE",
  260. "displayName": "Namespace",
  261. "description": "The OpenShift Namespace where the ImageStream resides.",
  262. "required": true,
  263. "value": "openshift"
  264. },
  265. {
  266. "name": "SOURCE_REPOSITORY_URL",
  267. "displayName": "Git Repository URL",
  268. "description": "The URL of the repository with your application source code.",
  269. "required": true,
  270. "value": "https://github.com/redhat-developer/s2i-dotnetcore-ex.git"
  271. },
  272. {
  273. "name": "SOURCE_REPOSITORY_REF",
  274. "displayName": "Git Reference",
  275. "description": "Set this to a branch name, tag or other ref of your repository if you are not using the default branch.",
  276. "value": "dotnetcore-2.0"
  277. },
  278. {
  279. "name": "CONTEXT_DIR",
  280. "displayName": "Context Directory",
  281. "description": "Set this to use a subdirectory of the source code repository"
  282. },
  283. {
  284. "name": "APPLICATION_DOMAIN",
  285. "displayName": "Application Hostname",
  286. "description": "The exposed hostname that will route to the .NET Core service, if left blank a value will be defaulted.",
  287. "value": ""
  288. },
  289. {
  290. "name": "GITHUB_WEBHOOK_SECRET",
  291. "displayName": "GitHub Webhook Secret",
  292. "description": "A secret string used to configure the GitHub webhook.",
  293. "generate": "expression",
  294. "from": "[a-zA-Z0-9]{40}"
  295. },
  296. {
  297. "name": "GENERIC_WEBHOOK_SECRET",
  298. "displayName": "Generic Webhook Secret",
  299. "description": "A secret string used to configure the Generic webhook.",
  300. "generate": "expression",
  301. "from": "[a-zA-Z0-9]{40}"
  302. },
  303. {
  304. "name": "DOTNET_SDK_VERSION",
  305. "displayName": "SDK Version",
  306. "description": "Set this to configure the default SDK version. This can be set to a specific version, '' (lowest version) or 'latest' (highest version).",
  307. "value": ""
  308. },
  309. {
  310. "name": "DOTNET_STARTUP_PROJECT",
  311. "displayName": "Startup Project",
  312. "description": "Set this to a project file (e.g. csproj) or a folder containing a single project file.",
  313. "value": "app"
  314. },
  315. {
  316. "name": "DOTNET_ASSEMBLY_NAME",
  317. "displayName": "Startup Assembly",
  318. "description": "Set this when the assembly name is overridden in the project file."
  319. },
  320. {
  321. "name": "DOTNET_NPM_TOOLS",
  322. "displayName": "Npm Tools",
  323. "description": "Set this to a space separated list of npm tools needed to publish.",
  324. "value": "bower gulp"
  325. },
  326. {
  327. "name": "DOTNET_TEST_PROJECTS",
  328. "displayName": "Test projects",
  329. "description": "Set this to a space separated list of test projects to run before publishing."
  330. },
  331. {
  332. "name": "DOTNET_CONFIGURATION",
  333. "displayName": "Configuration",
  334. "description": "Set this to configuration (Release/Debug).",
  335. "value": "Release"
  336. },
  337. {
  338. "name": "DOTNET_RESTORE_SOURCES",
  339. "displayName": "NuGet package sources",
  340. "description": "Set this to override the NuGet.config sources."
  341. }
  342. ]
  343. }