rails-postgresql.json 14 KB

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