dotnet-runtime-example.json 16 KB

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