dotnet-runtime-example.json 15 KB

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