dotnet-runtime-example.json 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412
  1. {
  2. "kind": "Template",
  3. "apiVersion": "v1",
  4. "metadata": {
  5. "name": "dotnet-runtime-example",
  6. "annotations": {
  7. "openshift.io/display-name": ".NET Core Runtime Example",
  8. "description": "An example .NET Core Runtime example 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 runtime image"
  60. }
  61. }
  62. },
  63. {
  64. "kind": "ImageStream",
  65. "apiVersion": "v1",
  66. "metadata": {
  67. "name": "${NAME}-build",
  68. "annotations": {
  69. "description": "Keeps track of changes in the application builder image"
  70. }
  71. }
  72. },
  73. {
  74. "kind": "BuildConfig",
  75. "apiVersion": "v1",
  76. "metadata": {
  77. "name": "${NAME}-build",
  78. "annotations": {
  79. "description": "Defines how to build the application"
  80. }
  81. },
  82. "spec": {
  83. "source": {
  84. "type": "Git",
  85. "git": {
  86. "uri": "${SOURCE_REPOSITORY_URL}",
  87. "ref": "${SOURCE_REPOSITORY_REF}"
  88. },
  89. "contextDir": "${CONTEXT_DIR}"
  90. },
  91. "strategy": {
  92. "type": "Source",
  93. "sourceStrategy": {
  94. "from": {
  95. "kind": "ImageStreamTag",
  96. "namespace": "${NAMESPACE}",
  97. "name": "${DOTNET_BUILD_IMAGE_STREAM_TAG}"
  98. },
  99. "env": [
  100. {
  101. "name": "DOTNET_STARTUP_PROJECT",
  102. "value": "${DOTNET_STARTUP_PROJECT}"
  103. },
  104. {
  105. "name": "DOTNET_ASSEMBLY_NAME",
  106. "value": "${DOTNET_ASSEMBLY_NAME}"
  107. },
  108. {
  109. "name": "DOTNET_NPM_TOOLS",
  110. "value": "${DOTNET_NPM_TOOLS}"
  111. },
  112. {
  113. "name": "DOTNET_TEST_PROJECTS",
  114. "value": "${DOTNET_TEST_PROJECTS}"
  115. },
  116. {
  117. "name": "DOTNET_CONFIGURATION",
  118. "value": "${DOTNET_CONFIGURATION}"
  119. },
  120. {
  121. "name": "DOTNET_RESTORE_SOURCES",
  122. "value": "${DOTNET_RESTORE_SOURCES}"
  123. },
  124. {
  125. "name": "DOTNET_PACK",
  126. "value": "true"
  127. }
  128. ]
  129. }
  130. },
  131. "output": {
  132. "to": {
  133. "kind": "ImageStreamTag",
  134. "name": "${NAME}-build:latest"
  135. }
  136. },
  137. "triggers": [
  138. {
  139. "type": "ImageChange"
  140. },
  141. {
  142. "type": "ConfigChange"
  143. },
  144. {
  145. "type": "GitHub",
  146. "github": {
  147. "secret": "${GITHUB_WEBHOOK_SECRET}"
  148. }
  149. },
  150. {
  151. "type": "Generic",
  152. "generic": {
  153. "secret": "${GENERIC_WEBHOOK_SECRET}"
  154. }
  155. }
  156. ]
  157. }
  158. },
  159. {
  160. "kind": "BuildConfig",
  161. "apiVersion": "v1",
  162. "metadata": {
  163. "name": "${NAME}-runtime",
  164. "annotations": {
  165. "description": "Defines how to chain the runtime image from the source build image"
  166. }
  167. },
  168. "spec": {
  169. "source": {
  170. "dockerfile": "FROM ${DOTNET_RUNTIME_IMAGE_STREAM_TAG}\nADD app.tar.gz .",
  171. "images": [
  172. {
  173. "from": {
  174. "kind": "ImageStreamTag",
  175. "name": "${NAME}-build:latest"
  176. },
  177. "paths": [
  178. {
  179. "sourcePath": "/opt/app-root/app.tar.gz",
  180. "destinationDir": "."
  181. }
  182. ]
  183. }
  184. ]
  185. },
  186. "strategy": {
  187. "type": "Docker",
  188. "dockerStrategy": {
  189. "from": {
  190. "kind": "ImageStreamTag",
  191. "namespace": "${NAMESPACE}",
  192. "name": "${DOTNET_RUNTIME_IMAGE_STREAM_TAG}"
  193. }
  194. }
  195. },
  196. "output": {
  197. "to": {
  198. "kind": "ImageStreamTag",
  199. "name": "${NAME}:latest"
  200. }
  201. },
  202. "triggers": [
  203. {
  204. "type": "ImageChange"
  205. },
  206. {
  207. "type": "ConfigChange"
  208. },
  209. {
  210. "type": "ImageChange",
  211. "imageChange": {
  212. "from": {
  213. "kind": "ImageStreamTag",
  214. "name": "${NAME}-build:latest"
  215. }
  216. }
  217. }
  218. ]
  219. }
  220. },
  221. {
  222. "kind": "DeploymentConfig",
  223. "apiVersion": "v1",
  224. "metadata": {
  225. "name": "${NAME}-runtime",
  226. "annotations": {
  227. "description": "Defines how to deploy the application server"
  228. }
  229. },
  230. "spec": {
  231. "strategy": {
  232. "type": "Rolling"
  233. },
  234. "triggers": [
  235. {
  236. "type": "ImageChange",
  237. "imageChangeParams": {
  238. "automatic": true,
  239. "containerNames": [
  240. "dotnet-runtime-app"
  241. ],
  242. "from": {
  243. "kind": "ImageStreamTag",
  244. "name": "${NAME}:latest"
  245. }
  246. }
  247. },
  248. {
  249. "type": "ConfigChange"
  250. }
  251. ],
  252. "replicas": 1,
  253. "selector": {
  254. "name": "${NAME}"
  255. },
  256. "template": {
  257. "metadata": {
  258. "name": "${NAME}",
  259. "labels": {
  260. "name": "${NAME}"
  261. }
  262. },
  263. "spec": {
  264. "containers": [
  265. {
  266. "name": "dotnet-runtime-app",
  267. "image": " ",
  268. "ports": [
  269. {
  270. "containerPort": 8080
  271. }
  272. ],
  273. "livenessProbe": {
  274. "httpGet": {
  275. "path": "/",
  276. "port": 8080,
  277. "scheme": "HTTP"
  278. },
  279. "initialDelaySeconds": 40,
  280. "timeoutSeconds": 15
  281. },
  282. "readinessProbe": {
  283. "httpGet": {
  284. "path": "/",
  285. "port": 8080,
  286. "scheme": "HTTP"
  287. },
  288. "initialDelaySeconds": 10,
  289. "timeoutSeconds": 30
  290. },
  291. "resources": {
  292. "limits": {
  293. "memory": "${MEMORY_LIMIT}"
  294. }
  295. },
  296. "env": []
  297. }
  298. ]
  299. }
  300. }
  301. }
  302. }
  303. ],
  304. "parameters": [
  305. {
  306. "name": "NAME",
  307. "displayName": "Name",
  308. "description": "The name assigned to all of the frontend objects defined in this template.",
  309. "required": true,
  310. "value": "dotnet-runtime-example"
  311. },
  312. {
  313. "name": "MEMORY_LIMIT",
  314. "displayName": "Memory Limit",
  315. "description": "Maximum amount of memory the container can use.",
  316. "required": true,
  317. "value": "512Mi"
  318. },
  319. {
  320. "name": "DOTNET_RUNTIME_IMAGE_STREAM_TAG",
  321. "displayName": ".NET Runtime Imagestream Tag",
  322. "description": "The image stream tag which is used to run the application.",
  323. "required": true,
  324. "value": "dotnet-runtime:2.0"
  325. },
  326. {
  327. "name": "DOTNET_BUILD_IMAGE_STREAM_TAG",
  328. "displayName": ".NET builder",
  329. "required": true,
  330. "description": "The image stream tag which is used to build the application.",
  331. "value": "dotnet:2.0"
  332. },
  333. {
  334. "name": "NAMESPACE",
  335. "displayName": "Namespace",
  336. "description": "The OpenShift Namespace where the ImageStream resides.",
  337. "required": true,
  338. "value": "openshift"
  339. },
  340. {
  341. "name": "APPLICATION_DOMAIN",
  342. "displayName": "Application Hostname",
  343. "description": "The exposed hostname that will route to the .NET Core service, if left blank a value will be defaulted.",
  344. "value": ""
  345. },
  346. {
  347. "name": "SOURCE_REPOSITORY_URL",
  348. "displayName": "Git Repository URL",
  349. "description": "The URL of the repository with your application source code.",
  350. "required": true,
  351. "value": "https://github.com/redhat-developer/s2i-dotnetcore-ex.git"
  352. },
  353. {
  354. "name": "SOURCE_REPOSITORY_REF",
  355. "displayName": "Git Reference",
  356. "description": "Set this to a branch name, tag or other ref of your repository if you are not using the default branch.",
  357. "value": "dotnetcore-2.0"
  358. },
  359. {
  360. "name": "CONTEXT_DIR",
  361. "displayName": "Context Directory",
  362. "description": "Set this to use a subdirectory of the source code repository"
  363. },
  364. {
  365. "name": "GITHUB_WEBHOOK_SECRET",
  366. "displayName": "GitHub Webhook Secret",
  367. "description": "A secret string used to configure the GitHub webhook.",
  368. "generate": "expression",
  369. "from": "[a-zA-Z0-9]{40}"
  370. },
  371. {
  372. "name": "GENERIC_WEBHOOK_SECRET",
  373. "displayName": "Generic Webhook Secret",
  374. "description": "A secret string used to configure the Generic webhook.",
  375. "generate": "expression",
  376. "from": "[a-zA-Z0-9]{40}"
  377. },
  378. {
  379. "name": "DOTNET_STARTUP_PROJECT",
  380. "displayName": "Startup Project",
  381. "description": "Set this to the folder containing your startup project.",
  382. "value": "app"
  383. },
  384. {
  385. "name": "DOTNET_ASSEMBLY_NAME",
  386. "displayName": "Startup Assembly",
  387. "description": "Set this when the assembly name is overridden in the project file."
  388. },
  389. {
  390. "name": "DOTNET_NPM_TOOLS",
  391. "displayName": "Npm Tools",
  392. "description": "Set this to a space separated list of npm tools needed to publish.",
  393. "value": "bower gulp"
  394. },
  395. {
  396. "name": "DOTNET_TEST_PROJECTS",
  397. "displayName": "Test projects",
  398. "description": "Set this to a space separated list of test projects to run before publishing."
  399. },
  400. {
  401. "name": "DOTNET_CONFIGURATION",
  402. "displayName": "Configuration",
  403. "description": "Set this to configuration (Release/Debug).",
  404. "value": "Release"
  405. },
  406. {
  407. "name": "DOTNET_RESTORE_SOURCES",
  408. "displayName": "NuGet package sources",
  409. "description": "Set this to override the NuGet.config sources."
  410. }
  411. ]
  412. }