rails-postgresql-persistent.json 18 KB

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