dotnet.json 12 KB

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