rails-postgresql-persistent.json 18 KB

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