nodejs-mongodb-persistent.json 21 KB

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