nodejs-mongodb.json 21 KB

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