rails-postgresql.json 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586
  1. {
  2. "apiVersion": "v1",
  3. "kind": "Template",
  4. "labels": {
  5. "app": "rails-postgresql-example",
  6. "template": "rails-postgresql-example"
  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.\n\nWARNING: Any data stored will be lost upon pod destruction. Only use this template for testing.",
  12. "iconClass": "icon-ruby",
  13. "openshift.io/display-name": "Rails + PostgreSQL (Ephemeral)",
  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. The database is stored in non-persistent storage, so this configuration should be used for experimental purposes only.",
  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-postgresql-example"
  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": "POSTGRESQL_DATABASE",
  209. "value": "${DATABASE_NAME}"
  210. },
  211. {
  212. "name": "SECRET_KEY_BASE",
  213. "valueFrom": {
  214. "secretKeyRef": {
  215. "key": "keybase",
  216. "name": "${NAME}"
  217. }
  218. }
  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": "Service",
  310. "metadata": {
  311. "annotations": {
  312. "description": "Exposes the database server"
  313. },
  314. "name": "${DATABASE_SERVICE_NAME}"
  315. },
  316. "spec": {
  317. "ports": [
  318. {
  319. "name": "postgresql",
  320. "port": 5432,
  321. "targetPort": 5432
  322. }
  323. ],
  324. "selector": {
  325. "name": "${DATABASE_SERVICE_NAME}"
  326. }
  327. }
  328. },
  329. {
  330. "apiVersion": "v1",
  331. "kind": "DeploymentConfig",
  332. "metadata": {
  333. "annotations": {
  334. "description": "Defines how to deploy the database",
  335. "template.alpha.openshift.io/wait-for-ready": "true"
  336. },
  337. "name": "${DATABASE_SERVICE_NAME}"
  338. },
  339. "spec": {
  340. "replicas": 1,
  341. "selector": {
  342. "name": "${DATABASE_SERVICE_NAME}"
  343. },
  344. "strategy": {
  345. "type": "Recreate"
  346. },
  347. "template": {
  348. "metadata": {
  349. "labels": {
  350. "name": "${DATABASE_SERVICE_NAME}"
  351. },
  352. "name": "${DATABASE_SERVICE_NAME}"
  353. },
  354. "spec": {
  355. "containers": [
  356. {
  357. "env": [
  358. {
  359. "name": "POSTGRESQL_USER",
  360. "valueFrom": {
  361. "secretKeyRef": {
  362. "key": "database-user",
  363. "name": "${NAME}"
  364. }
  365. }
  366. },
  367. {
  368. "name": "POSTGRESQL_PASSWORD",
  369. "valueFrom": {
  370. "secretKeyRef": {
  371. "key": "database-password",
  372. "name": "${NAME}"
  373. }
  374. }
  375. },
  376. {
  377. "name": "POSTGRESQL_DATABASE",
  378. "value": "${DATABASE_NAME}"
  379. },
  380. {
  381. "name": "POSTGRESQL_MAX_CONNECTIONS",
  382. "value": "${POSTGRESQL_MAX_CONNECTIONS}"
  383. },
  384. {
  385. "name": "POSTGRESQL_SHARED_BUFFERS",
  386. "value": "${POSTGRESQL_SHARED_BUFFERS}"
  387. }
  388. ],
  389. "image": " ",
  390. "livenessProbe": {
  391. "exec": {
  392. "command": [
  393. "/usr/libexec/check-container",
  394. "--live"
  395. ]
  396. },
  397. "initialDelaySeconds": 120,
  398. "timeoutSeconds": 10
  399. },
  400. "name": "postgresql",
  401. "ports": [
  402. {
  403. "containerPort": 5432
  404. }
  405. ],
  406. "readinessProbe": {
  407. "exec": {
  408. "command": [
  409. "/usr/libexec/check-container"
  410. ]
  411. },
  412. "initialDelaySeconds": 5,
  413. "timeoutSeconds": 1
  414. },
  415. "resources": {
  416. "limits": {
  417. "memory": "${MEMORY_POSTGRESQL_LIMIT}"
  418. }
  419. },
  420. "volumeMounts": [
  421. {
  422. "mountPath": "/var/lib/pgsql/data",
  423. "name": "data"
  424. }
  425. ]
  426. }
  427. ],
  428. "volumes": [
  429. {
  430. "emptyDir": {},
  431. "name": "data"
  432. }
  433. ]
  434. }
  435. },
  436. "triggers": [
  437. {
  438. "imageChangeParams": {
  439. "automatic": true,
  440. "containerNames": [
  441. "postgresql"
  442. ],
  443. "from": {
  444. "kind": "ImageStreamTag",
  445. "name": "postgresql:9.5",
  446. "namespace": "${NAMESPACE}"
  447. }
  448. },
  449. "type": "ImageChange"
  450. },
  451. {
  452. "type": "ConfigChange"
  453. }
  454. ]
  455. }
  456. }
  457. ],
  458. "parameters": [
  459. {
  460. "description": "The name assigned to all of the frontend objects defined in this template.",
  461. "displayName": "Name",
  462. "name": "NAME",
  463. "required": true,
  464. "value": "rails-postgresql-example"
  465. },
  466. {
  467. "description": "The OpenShift Namespace where the ImageStream resides.",
  468. "displayName": "Namespace",
  469. "name": "NAMESPACE",
  470. "required": true,
  471. "value": "openshift"
  472. },
  473. {
  474. "description": "Maximum amount of memory the Rails container can use.",
  475. "displayName": "Memory Limit",
  476. "name": "MEMORY_LIMIT",
  477. "required": true,
  478. "value": "512Mi"
  479. },
  480. {
  481. "description": "Maximum amount of memory the PostgreSQL container can use.",
  482. "displayName": "Memory Limit (PostgreSQL)",
  483. "name": "MEMORY_POSTGRESQL_LIMIT",
  484. "required": true,
  485. "value": "512Mi"
  486. },
  487. {
  488. "description": "The URL of the repository with your application source code.",
  489. "displayName": "Git Repository URL",
  490. "name": "SOURCE_REPOSITORY_URL",
  491. "required": true,
  492. "value": "https://github.com/openshift/rails-ex.git"
  493. },
  494. {
  495. "description": "Set this to a branch name, tag or other ref of your repository if you are not using the default branch.",
  496. "displayName": "Git Reference",
  497. "name": "SOURCE_REPOSITORY_REF"
  498. },
  499. {
  500. "description": "Set this to the relative path to your project if it is not in the root of your repository.",
  501. "displayName": "Context Directory",
  502. "name": "CONTEXT_DIR"
  503. },
  504. {
  505. "description": "The exposed hostname that will route to the Rails service, if left blank a value will be defaulted.",
  506. "displayName": "Application Hostname",
  507. "name": "APPLICATION_DOMAIN",
  508. "value": ""
  509. },
  510. {
  511. "description": "Github trigger secret. A difficult to guess string encoded as part of the webhook URL. Not encrypted.",
  512. "displayName": "GitHub Webhook Secret",
  513. "from": "[a-zA-Z0-9]{40}",
  514. "generate": "expression",
  515. "name": "GITHUB_WEBHOOK_SECRET"
  516. },
  517. {
  518. "description": "Your secret key for verifying the integrity of signed cookies.",
  519. "displayName": "Secret Key",
  520. "from": "[a-z0-9]{127}",
  521. "generate": "expression",
  522. "name": "SECRET_KEY_BASE"
  523. },
  524. {
  525. "description": "The application user that is used within the sample application to authorize access on pages.",
  526. "displayName": "Application Username",
  527. "name": "APPLICATION_USER",
  528. "required": true,
  529. "value": "openshift"
  530. },
  531. {
  532. "description": "The application password that is used within the sample application to authorize access on pages.",
  533. "displayName": "Application Password",
  534. "name": "APPLICATION_PASSWORD",
  535. "required": true,
  536. "value": "secret"
  537. },
  538. {
  539. "description": "Environment under which the sample application will run. Could be set to production, development or test.",
  540. "displayName": "Rails Environment",
  541. "name": "RAILS_ENV",
  542. "required": true,
  543. "value": "production"
  544. },
  545. {
  546. "displayName": "Database Service Name",
  547. "name": "DATABASE_SERVICE_NAME",
  548. "required": true,
  549. "value": "postgresql"
  550. },
  551. {
  552. "displayName": "Database Username",
  553. "from": "user[A-Z0-9]{3}",
  554. "generate": "expression",
  555. "name": "DATABASE_USER"
  556. },
  557. {
  558. "displayName": "Database Password",
  559. "from": "[a-zA-Z0-9]{8}",
  560. "generate": "expression",
  561. "name": "DATABASE_PASSWORD"
  562. },
  563. {
  564. "displayName": "Database Name",
  565. "name": "DATABASE_NAME",
  566. "required": true,
  567. "value": "root"
  568. },
  569. {
  570. "displayName": "Maximum Database Connections",
  571. "name": "POSTGRESQL_MAX_CONNECTIONS",
  572. "value": "100"
  573. },
  574. {
  575. "displayName": "Shared Buffer Amount",
  576. "name": "POSTGRESQL_SHARED_BUFFERS",
  577. "value": "12MB"
  578. },
  579. {
  580. "description": "The custom RubyGems mirror URL",
  581. "displayName": "Custom RubyGems Mirror URL",
  582. "name": "RUBYGEM_MIRROR",
  583. "value": ""
  584. }
  585. ]
  586. }