nodejs-mongodb.json 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525
  1. {
  2. "kind": "Template",
  3. "apiVersion": "v1",
  4. "metadata": {
  5. "name": "nodejs-mongodb-example",
  6. "annotations": {
  7. "openshift.io/display-name": "Node.js + MongoDB (Ephemeral)",
  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.\n\nWARNING: Any data stored will be lost upon pod destruction. Only use this template for testing.",
  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. The database is stored in non-persistent storage, so this configuration should be used for experimental purposes only.",
  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-mongodb-example"
  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-mongodb-example"
  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-mongodb-example",
  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": "Service",
  267. "apiVersion": "v1",
  268. "metadata": {
  269. "name": "${DATABASE_SERVICE_NAME}",
  270. "annotations": {
  271. "description": "Exposes the database server"
  272. }
  273. },
  274. "spec": {
  275. "ports": [
  276. {
  277. "name": "mongodb",
  278. "port": 27017,
  279. "targetPort": 27017
  280. }
  281. ],
  282. "selector": {
  283. "name": "${DATABASE_SERVICE_NAME}"
  284. }
  285. }
  286. },
  287. {
  288. "kind": "DeploymentConfig",
  289. "apiVersion": "v1",
  290. "metadata": {
  291. "name": "${DATABASE_SERVICE_NAME}",
  292. "annotations": {
  293. "description": "Defines how to deploy the database",
  294. "template.alpha.openshift.io/wait-for-ready": "true"
  295. }
  296. },
  297. "spec": {
  298. "strategy": {
  299. "type": "Recreate"
  300. },
  301. "triggers": [
  302. {
  303. "type": "ImageChange",
  304. "imageChangeParams": {
  305. "automatic": true,
  306. "containerNames": [
  307. "mongodb"
  308. ],
  309. "from": {
  310. "kind": "ImageStreamTag",
  311. "namespace": "${NAMESPACE}",
  312. "name": "mongodb:3.2"
  313. }
  314. }
  315. },
  316. {
  317. "type": "ConfigChange"
  318. }
  319. ],
  320. "replicas": 1,
  321. "selector": {
  322. "name": "${DATABASE_SERVICE_NAME}"
  323. },
  324. "template": {
  325. "metadata": {
  326. "name": "${DATABASE_SERVICE_NAME}",
  327. "labels": {
  328. "name": "${DATABASE_SERVICE_NAME}"
  329. }
  330. },
  331. "spec": {
  332. "containers": [
  333. {
  334. "name": "mongodb",
  335. "image": " ",
  336. "ports": [
  337. {
  338. "containerPort": 27017
  339. }
  340. ],
  341. "env": [
  342. {
  343. "name": "MONGODB_USER",
  344. "valueFrom": {
  345. "secretKeyRef" : {
  346. "name" : "${NAME}",
  347. "key" : "database-user"
  348. }
  349. }
  350. },
  351. {
  352. "name": "MONGODB_PASSWORD",
  353. "valueFrom": {
  354. "secretKeyRef" : {
  355. "name" : "${NAME}",
  356. "key" : "database-password"
  357. }
  358. }
  359. },
  360. {
  361. "name": "MONGODB_DATABASE",
  362. "value": "${DATABASE_NAME}"
  363. },
  364. {
  365. "name": "MONGODB_ADMIN_PASSWORD",
  366. "valueFrom": {
  367. "secretKeyRef" : {
  368. "name" : "${NAME}",
  369. "key" : "database-admin-password"
  370. }
  371. }
  372. }
  373. ],
  374. "readinessProbe": {
  375. "timeoutSeconds": 1,
  376. "initialDelaySeconds": 3,
  377. "exec": {
  378. "command": [
  379. "/bin/sh",
  380. "-i",
  381. "-c",
  382. "mongo 127.0.0.1:27017/$MONGODB_DATABASE -u $MONGODB_USER -p $MONGODB_PASSWORD --eval=\"quit()\""
  383. ]
  384. }
  385. },
  386. "livenessProbe": {
  387. "timeoutSeconds": 1,
  388. "initialDelaySeconds": 30,
  389. "tcpSocket": {
  390. "port": 27017
  391. }
  392. },
  393. "resources": {
  394. "limits": {
  395. "memory": "${MEMORY_MONGODB_LIMIT}"
  396. }
  397. },
  398. "volumeMounts": [
  399. {
  400. "name": "${DATABASE_SERVICE_NAME}-data",
  401. "mountPath": "/var/lib/mongodb/data"
  402. }
  403. ]
  404. }
  405. ],
  406. "volumes": [
  407. {
  408. "name": "${DATABASE_SERVICE_NAME}-data",
  409. "emptyDir": {
  410. "medium": ""
  411. }
  412. }
  413. ]
  414. }
  415. }
  416. }
  417. }
  418. ],
  419. "parameters": [
  420. {
  421. "name": "NAME",
  422. "displayName": "Name",
  423. "description": "The name assigned to all of the frontend objects defined in this template.",
  424. "required": true,
  425. "value": "nodejs-mongodb-example"
  426. },
  427. {
  428. "name": "NAMESPACE",
  429. "displayName": "Namespace",
  430. "description": "The OpenShift Namespace where the ImageStream resides.",
  431. "required": true,
  432. "value": "openshift"
  433. },
  434. {
  435. "name": "MEMORY_LIMIT",
  436. "displayName": "Memory Limit",
  437. "description": "Maximum amount of memory the Node.js container can use.",
  438. "required": true,
  439. "value": "512Mi"
  440. },
  441. {
  442. "name": "MEMORY_MONGODB_LIMIT",
  443. "displayName": "Memory Limit (MongoDB)",
  444. "description": "Maximum amount of memory the MongoDB container can use.",
  445. "required": true,
  446. "value": "512Mi"
  447. },
  448. {
  449. "name": "SOURCE_REPOSITORY_URL",
  450. "displayName": "Git Repository URL",
  451. "description": "The URL of the repository with your application source code.",
  452. "required": true,
  453. "value": "https://github.com/openshift/nodejs-ex.git"
  454. },
  455. {
  456. "name": "SOURCE_REPOSITORY_REF",
  457. "displayName": "Git Reference",
  458. "description": "Set this to a branch name, tag or other ref of your repository if you are not using the default branch."
  459. },
  460. {
  461. "name": "CONTEXT_DIR",
  462. "displayName": "Context Directory",
  463. "description": "Set this to the relative path to your project if it is not in the root of your repository."
  464. },
  465. {
  466. "name": "APPLICATION_DOMAIN",
  467. "displayName": "Application Hostname",
  468. "description": "The exposed hostname that will route to the Node.js service, if left blank a value will be defaulted.",
  469. "value": ""
  470. },
  471. {
  472. "name": "GITHUB_WEBHOOK_SECRET",
  473. "displayName": "GitHub Webhook Secret",
  474. "description": "Github trigger secret. A difficult to guess string encoded as part of the webhook URL. Not encrypted.",
  475. "generate": "expression",
  476. "from": "[a-zA-Z0-9]{40}"
  477. },
  478. {
  479. "name": "GENERIC_WEBHOOK_SECRET",
  480. "displayName": "Generic Webhook Secret",
  481. "description": "A secret string used to configure the Generic webhook.",
  482. "generate": "expression",
  483. "from": "[a-zA-Z0-9]{40}"
  484. },
  485. {
  486. "name": "DATABASE_SERVICE_NAME",
  487. "displayName": "Database Service Name",
  488. "required": true,
  489. "value": "mongodb"
  490. },
  491. {
  492. "name": "DATABASE_USER",
  493. "displayName": "MongoDB Username",
  494. "description": "Username for MongoDB user that will be used for accessing the database.",
  495. "generate": "expression",
  496. "from": "user[A-Z0-9]{3}"
  497. },
  498. {
  499. "name": "DATABASE_PASSWORD",
  500. "displayName": "MongoDB Password",
  501. "description": "Password for the MongoDB user.",
  502. "generate": "expression",
  503. "from": "[a-zA-Z0-9]{16}"
  504. },
  505. {
  506. "name": "DATABASE_NAME",
  507. "displayName": "Database Name",
  508. "required": true,
  509. "value": "sampledb"
  510. },
  511. {
  512. "name": "DATABASE_ADMIN_PASSWORD",
  513. "displayName": "Database Administrator Password",
  514. "description": "Password for the database admin user.",
  515. "generate": "expression",
  516. "from": "[a-zA-Z0-9]{16}"
  517. },
  518. {
  519. "name": "NPM_MIRROR",
  520. "displayName": "Custom NPM Mirror URL",
  521. "description": "The custom NPM mirror URL",
  522. "value": ""
  523. }
  524. ]
  525. }