nodejs-mongodb-persistent.json 16 KB

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