rails-postgresql-persistent.json 24 KB

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