dotnet-pgsql-persistent.json 21 KB

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