dotnet-pgsql-persistent.json 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575
  1. {
  2. "kind": "Template",
  3. "apiVersion": "v1",
  4. "metadata": {
  5. "name": "dotnet-pgsql-persistent",
  6. "annotations": {
  7. "openshift.io/display-name": ".NET Core + PostgreSQL (Persistent)",
  8. "description": "An example .NET Core application with a PostgreSQL database. For more information about using this template, including OpenShift considerations, see https://github.com/redhat-developer/s2i-dotnetcore.",
  9. "tags": "quickstart,dotnet",
  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. "message": "The following service(s) have been created in your project: ${NAME}, ${DATABASE_SERVICE_NAME}.\n\nFor more information about using this template, including OpenShift considerations, see https://github.com/redhat-developer/s2i-dotnetcore.",
  17. "labels": {
  18. "template": "dotnet-pgsql-persistent"
  19. },
  20. "objects": [
  21. {
  22. "kind": "Secret",
  23. "apiVersion": "v1",
  24. "metadata": {
  25. "name": "${NAME}"
  26. },
  27. "stringData": {
  28. "database-password": "${DATABASE_PASSWORD}",
  29. "connect-string": "Host=${DATABASE_SERVICE_NAME};Database=${DATABASE_NAME};Username=${DATABASE_USER};Password=${DATABASE_PASSWORD}"
  30. }
  31. },
  32. {
  33. "kind": "Service",
  34. "apiVersion": "v1",
  35. "metadata": {
  36. "name": "${NAME}",
  37. "annotations": {
  38. "description": "Exposes and load balances the application pods",
  39. "service.alpha.openshift.io/dependencies": "[{\"name\": \"${DATABASE_SERVICE_NAME}\", \"kind\": \"Service\"}]"
  40. }
  41. },
  42. "spec": {
  43. "ports": [
  44. {
  45. "name": "web",
  46. "port": 8080,
  47. "targetPort": 8080
  48. }
  49. ],
  50. "selector": {
  51. "name": "${NAME}"
  52. }
  53. }
  54. },
  55. {
  56. "kind": "Route",
  57. "apiVersion": "v1",
  58. "metadata": {
  59. "name": "${NAME}"
  60. },
  61. "spec": {
  62. "host": "${APPLICATION_DOMAIN}",
  63. "to": {
  64. "kind": "Service",
  65. "name": "${NAME}"
  66. }
  67. }
  68. },
  69. {
  70. "kind": "ImageStream",
  71. "apiVersion": "v1",
  72. "metadata": {
  73. "name": "${NAME}",
  74. "annotations": {
  75. "description": "Keeps track of changes in the application image"
  76. }
  77. }
  78. },
  79. {
  80. "kind": "BuildConfig",
  81. "apiVersion": "v1",
  82. "metadata": {
  83. "name": "${NAME}",
  84. "annotations": {
  85. "description": "Defines how to build the application"
  86. }
  87. },
  88. "spec": {
  89. "source": {
  90. "type": "Git",
  91. "git": {
  92. "uri": "${SOURCE_REPOSITORY_URL}",
  93. "ref": "${SOURCE_REPOSITORY_REF}"
  94. },
  95. "contextDir": "${CONTEXT_DIR}"
  96. },
  97. "strategy": {
  98. "type": "Source",
  99. "sourceStrategy": {
  100. "from": {
  101. "kind": "ImageStreamTag",
  102. "namespace": "${NAMESPACE}",
  103. "name": "${DOTNET_IMAGE_STREAM_TAG}"
  104. },
  105. "env": [
  106. {
  107. "name": "DOTNET_STARTUP_PROJECT",
  108. "value": "${DOTNET_STARTUP_PROJECT}"
  109. },
  110. {
  111. "name": "DOTNET_SDK_VERSION",
  112. "value": "${DOTNET_SDK_VERSION}"
  113. },
  114. {
  115. "name": "DOTNET_ASSEMBLY_NAME",
  116. "value": "${DOTNET_ASSEMBLY_NAME}"
  117. },
  118. {
  119. "name": "DOTNET_NPM_TOOLS",
  120. "value": "${DOTNET_NPM_TOOLS}"
  121. },
  122. {
  123. "name": "DOTNET_TEST_PROJECTS",
  124. "value": "${DOTNET_TEST_PROJECTS}"
  125. },
  126. {
  127. "name": "DOTNET_CONFIGURATION",
  128. "value": "${DOTNET_CONFIGURATION}"
  129. },
  130. {
  131. "name": "DOTNET_PUBLISH",
  132. "value": "true"
  133. },
  134. {
  135. "name": "DOTNET_RESTORE_SOURCES",
  136. "value": "${DOTNET_RESTORE_SOURCES}"
  137. }
  138. ]
  139. }
  140. },
  141. "output": {
  142. "to": {
  143. "kind": "ImageStreamTag",
  144. "name": "${NAME}:latest"
  145. }
  146. },
  147. "triggers": [
  148. {
  149. "type": "ImageChange"
  150. },
  151. {
  152. "type": "ConfigChange"
  153. },
  154. {
  155. "type": "GitHub",
  156. "github": {
  157. "secret": "${GITHUB_WEBHOOK_SECRET}"
  158. }
  159. }
  160. ],
  161. "postCommit": {}
  162. }
  163. },
  164. {
  165. "kind": "DeploymentConfig",
  166. "apiVersion": "v1",
  167. "metadata": {
  168. "name": "${NAME}",
  169. "annotations": {
  170. "description": "Defines how to deploy the application server"
  171. }
  172. },
  173. "spec": {
  174. "strategy": {
  175. "type": "Rolling",
  176. "rollingParams": {
  177. "updatePeriodSeconds": 1,
  178. "intervalSeconds": 1,
  179. "timeoutSeconds": 600,
  180. "maxUnavailable": "25%",
  181. "maxSurge": "25%"
  182. },
  183. "resources": {}
  184. },
  185. "triggers": [
  186. {
  187. "type": "ImageChange",
  188. "imageChangeParams": {
  189. "automatic": true,
  190. "containerNames": [
  191. "dotnet-pgsql-persistent"
  192. ],
  193. "from": {
  194. "kind": "ImageStreamTag",
  195. "name": "${NAME}:latest"
  196. }
  197. }
  198. },
  199. {
  200. "type": "ConfigChange"
  201. }
  202. ],
  203. "replicas": 1,
  204. "selector": {
  205. "name": "${NAME}"
  206. },
  207. "template": {
  208. "metadata": {
  209. "name": "${NAME}",
  210. "labels": {
  211. "name": "${NAME}"
  212. }
  213. },
  214. "spec": {
  215. "containers": [
  216. {
  217. "name": "dotnet-pgsql-persistent",
  218. "image": " ",
  219. "ports": [
  220. {
  221. "containerPort": 8080
  222. }
  223. ],
  224. "env": [
  225. {
  226. "name": "ConnectionString",
  227. "valueFrom": {
  228. "secretKeyRef": {
  229. "name": "${NAME}",
  230. "key": "connect-string"
  231. }
  232. }
  233. }
  234. ],
  235. "resources": {
  236. "limits": {
  237. "memory": "${MEMORY_LIMIT}"
  238. }
  239. },
  240. "livenessProbe": {
  241. "httpGet": {
  242. "path": "/",
  243. "port": 8080,
  244. "scheme": "HTTP"
  245. },
  246. "initialDelaySeconds": 40,
  247. "timeoutSeconds": 10
  248. },
  249. "readinessProbe": {
  250. "httpGet": {
  251. "path": "/",
  252. "port": 8080,
  253. "scheme": "HTTP"
  254. },
  255. "initialDelaySeconds": 10,
  256. "timeoutSeconds": 30
  257. }
  258. }
  259. ]
  260. }
  261. }
  262. }
  263. },
  264. {
  265. "kind": "PersistentVolumeClaim",
  266. "apiVersion": "v1",
  267. "metadata": {
  268. "name": "${DATABASE_SERVICE_NAME}"
  269. },
  270. "spec": {
  271. "accessModes": [
  272. "ReadWriteOnce"
  273. ],
  274. "resources": {
  275. "requests": {
  276. "storage": "${VOLUME_CAPACITY}"
  277. }
  278. }
  279. }
  280. },
  281. {
  282. "kind": "Service",
  283. "apiVersion": "v1",
  284. "metadata": {
  285. "name": "${DATABASE_SERVICE_NAME}",
  286. "annotations": {
  287. "description": "Exposes the database server"
  288. }
  289. },
  290. "spec": {
  291. "ports": [
  292. {
  293. "name": "postgresql",
  294. "port": 5432,
  295. "targetPort": 5432
  296. }
  297. ],
  298. "selector": {
  299. "name": "${DATABASE_SERVICE_NAME}"
  300. }
  301. }
  302. },
  303. {
  304. "kind": "DeploymentConfig",
  305. "apiVersion": "v1",
  306. "metadata": {
  307. "name": "${DATABASE_SERVICE_NAME}",
  308. "annotations": {
  309. "description": "Defines how to deploy the database"
  310. }
  311. },
  312. "spec": {
  313. "strategy": {
  314. "type": "Recreate"
  315. },
  316. "triggers": [
  317. {
  318. "type": "ImageChange",
  319. "imageChangeParams": {
  320. "automatic": true,
  321. "containerNames": [
  322. "postgresql"
  323. ],
  324. "from": {
  325. "kind": "ImageStreamTag",
  326. "namespace": "openshift",
  327. "name": "postgresql:9.5"
  328. }
  329. }
  330. },
  331. {
  332. "type": "ConfigChange"
  333. }
  334. ],
  335. "replicas": 1,
  336. "selector": {
  337. "name": "${DATABASE_SERVICE_NAME}"
  338. },
  339. "template": {
  340. "metadata": {
  341. "name": "${DATABASE_SERVICE_NAME}",
  342. "labels": {
  343. "name": "${DATABASE_SERVICE_NAME}"
  344. }
  345. },
  346. "spec": {
  347. "volumes": [
  348. {
  349. "name": "${DATABASE_SERVICE_NAME}-data",
  350. "persistentVolumeClaim": {
  351. "claimName": "${DATABASE_SERVICE_NAME}"
  352. }
  353. }
  354. ],
  355. "containers": [
  356. {
  357. "name": "postgresql",
  358. "image": " ",
  359. "ports": [
  360. {
  361. "containerPort": 5432
  362. }
  363. ],
  364. "readinessProbe": {
  365. "timeoutSeconds": 1,
  366. "initialDelaySeconds": 5,
  367. "exec": {
  368. "command": [
  369. "/bin/sh",
  370. "-i",
  371. "-c",
  372. "psql -h 127.0.0.1 -U ${POSTGRESQL_USER} -q -d ${POSTGRESQL_DATABASE} -c 'SELECT 1'"
  373. ]
  374. }
  375. },
  376. "livenessProbe": {
  377. "timeoutSeconds": 1,
  378. "initialDelaySeconds": 30,
  379. "tcpSocket": {
  380. "port": 5432
  381. }
  382. },
  383. "volumeMounts": [
  384. {
  385. "name": "${DATABASE_SERVICE_NAME}-data",
  386. "mountPath": "/var/lib/pgsql/data"
  387. }
  388. ],
  389. "env": [
  390. {
  391. "name": "POSTGRESQL_USER",
  392. "value": "${DATABASE_USER}"
  393. },
  394. {
  395. "name": "POSTGRESQL_PASSWORD",
  396. "valueFrom": {
  397. "secretKeyRef": {
  398. "name": "${NAME}",
  399. "key": "database-password"
  400. }
  401. }
  402. },
  403. {
  404. "name": "POSTGRESQL_DATABASE",
  405. "value": "${DATABASE_NAME}"
  406. },
  407. {
  408. "name": "POSTGRESQL_MAX_CONNECTIONS",
  409. "value": "${POSTGRESQL_MAX_CONNECTIONS}"
  410. },
  411. {
  412. "name": "POSTGRESQL_SHARED_BUFFERS",
  413. "value": "${POSTGRESQL_SHARED_BUFFERS}"
  414. }
  415. ],
  416. "resources": {
  417. "limits": {
  418. "memory": "${MEMORY_POSTGRESQL_LIMIT}"
  419. }
  420. }
  421. }
  422. ]
  423. }
  424. }
  425. }
  426. }
  427. ],
  428. "parameters": [
  429. {
  430. "name": "NAME",
  431. "displayName": "Name",
  432. "description": "The name assigned to all of the frontend objects defined in this template.",
  433. "required": true,
  434. "value": "musicstore"
  435. },
  436. {
  437. "name": "MEMORY_LIMIT",
  438. "displayName": "Memory Limit",
  439. "required": true,
  440. "description": "Maximum amount of memory the .NET Core container can use.",
  441. "value": "512Mi"
  442. },
  443. {
  444. "name": "MEMORY_POSTGRESQL_LIMIT",
  445. "displayName": "Memory Limit (PostgreSQL)",
  446. "required": true,
  447. "description": "Maximum amount of memory the PostgreSQL container can use.",
  448. "value": "512Mi"
  449. },
  450. {
  451. "name": "VOLUME_CAPACITY",
  452. "displayName": "Volume Capacity",
  453. "description": "Volume space available for data, e.g. 512Mi, 2Gi",
  454. "value": "1Gi",
  455. "required": true
  456. },
  457. {
  458. "name": "DOTNET_IMAGE_STREAM_TAG",
  459. "displayName": ".NET builder",
  460. "required": true,
  461. "description": "The image stream tag which is used to build the code.",
  462. "value": "dotnet:2.0"
  463. },
  464. {
  465. "name": "NAMESPACE",
  466. "displayName": "Namespace",
  467. "required": true,
  468. "description": "The OpenShift Namespace where the .NET builder ImageStream resides.",
  469. "value": "openshift"
  470. },
  471. {
  472. "name": "SOURCE_REPOSITORY_URL",
  473. "displayName": "Git Repository URL",
  474. "required": true,
  475. "description": "The URL of the repository with your application source code.",
  476. "value": "https://github.com/redhat-developer/s2i-aspnet-musicstore-ex.git"
  477. },
  478. {
  479. "name": "SOURCE_REPOSITORY_REF",
  480. "displayName": "Git Reference",
  481. "description": "Set this to a branch name, tag or other ref of your repository if you are not using the default branch.",
  482. "value": "rel/2.0-example"
  483. },
  484. {
  485. "name": "CONTEXT_DIR",
  486. "displayName": "Context Directory",
  487. "description": "Set this to the relative path to your project if it is not in the root of your repository."
  488. },
  489. {
  490. "name": "DOTNET_STARTUP_PROJECT",
  491. "displayName": "Startup Project",
  492. "description": "Set this to a project file (e.g. csproj) or a folder containing a single project file.",
  493. "value": "samples/MusicStore"
  494. },
  495. {
  496. "name": "DOTNET_SDK_VERSION",
  497. "displayName": "SDK Version",
  498. "description": "Set this to configure the default SDK version. This can be set to a specific version, '' (lowest version) or 'latest' (highest version).",
  499. "value": ""
  500. },
  501. {
  502. "name": "DOTNET_ASSEMBLY_NAME",
  503. "displayName": "Startup Assembly",
  504. "description": "Set this when the assembly name is overridden in the project file."
  505. },
  506. {
  507. "name": "DOTNET_NPM_TOOLS",
  508. "displayName": "Npm Tools",
  509. "description": "Set this to a space separated list of npm tools needed to publish."
  510. },
  511. {
  512. "name": "DOTNET_TEST_PROJECTS",
  513. "displayName": "Test projects",
  514. "description": "Set this to a space separated list of test projects to run before publishing."
  515. },
  516. {
  517. "name": "DOTNET_CONFIGURATION",
  518. "displayName": "Configuration",
  519. "description": "Set this to configuration (Release/Debug).",
  520. "value": "Release"
  521. },
  522. {
  523. "name": "DOTNET_RESTORE_SOURCES",
  524. "displayName": "NuGet package sources",
  525. "description": "Set this to override the NuGet.config sources."
  526. },
  527. {
  528. "name": "APPLICATION_DOMAIN",
  529. "displayName": "Application Hostname",
  530. "description": "The exposed hostname that will route to the .NET Core service, if left blank a value will be defaulted.",
  531. "value": ""
  532. },
  533. {
  534. "name": "GITHUB_WEBHOOK_SECRET",
  535. "displayName": "GitHub Webhook Secret",
  536. "description": "A secret string used to configure the GitHub webhook.",
  537. "generate": "expression",
  538. "from": "[a-zA-Z0-9]{40}"
  539. },
  540. {
  541. "name": "DATABASE_SERVICE_NAME",
  542. "required": true,
  543. "displayName": "Database Service Name",
  544. "value": "postgresql"
  545. },
  546. {
  547. "name": "DATABASE_USER",
  548. "displayName": "Database Username",
  549. "generate": "expression",
  550. "from": "user[A-Z0-9]{3}"
  551. },
  552. {
  553. "name": "DATABASE_PASSWORD",
  554. "displayName": "Database Password",
  555. "generate": "expression",
  556. "from": "[a-zA-Z0-9]{8}"
  557. },
  558. {
  559. "name": "DATABASE_NAME",
  560. "required": true,
  561. "displayName": "Database Name",
  562. "value": "musicstore"
  563. },
  564. {
  565. "name": "POSTGRESQL_MAX_CONNECTIONS",
  566. "displayName": "Maximum Database Connections",
  567. "value": "100"
  568. },
  569. {
  570. "name": "POSTGRESQL_SHARED_BUFFERS",
  571. "displayName": "Shared Buffer Amount",
  572. "value": "12MB"
  573. }
  574. ]
  575. }