nodejs-mongodb.json 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467
  1. {
  2. "kind": "Template",
  3. "apiVersion": "v1",
  4. "metadata": {
  5. "name": "nodejs-mongodb-example",
  6. "annotations": {
  7. "description": "An example Node.js application with a MongoDB database",
  8. "tags": "quickstart,nodejs,mongodb",
  9. "iconClass": "icon-nodejs"
  10. }
  11. },
  12. "labels": {
  13. "template": "nodejs-mongodb-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": "nodejs:0.10"
  87. },
  88. "env": [
  89. {
  90. "name": "NPM_MIRROR",
  91. "value": "${NPM_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. "type": "Generic",
  117. "generic": {
  118. "secret": "${GENERIC_WEBHOOK_SECRET}"
  119. }
  120. }
  121. ],
  122. "postCommit": {
  123. "script": "npm test"
  124. }
  125. }
  126. },
  127. {
  128. "kind": "DeploymentConfig",
  129. "apiVersion": "v1",
  130. "metadata": {
  131. "name": "${NAME}",
  132. "annotations": {
  133. "description": "Defines how to deploy the application server"
  134. }
  135. },
  136. "spec": {
  137. "strategy": {
  138. "type": "Rolling"
  139. },
  140. "triggers": [
  141. {
  142. "type": "ImageChange",
  143. "imageChangeParams": {
  144. "automatic": true,
  145. "containerNames": [
  146. "nodejs-mongodb-example"
  147. ],
  148. "from": {
  149. "kind": "ImageStreamTag",
  150. "name": "${NAME}:latest"
  151. }
  152. }
  153. },
  154. {
  155. "type": "ConfigChange"
  156. }
  157. ],
  158. "replicas": 1,
  159. "selector": {
  160. "name": "${NAME}"
  161. },
  162. "template": {
  163. "metadata": {
  164. "name": "${NAME}",
  165. "labels": {
  166. "name": "${NAME}"
  167. }
  168. },
  169. "spec": {
  170. "containers": [
  171. {
  172. "name": "nodejs-mongodb-example",
  173. "image": " ",
  174. "ports": [
  175. {
  176. "containerPort": 8080
  177. }
  178. ],
  179. "env": [
  180. {
  181. "name": "DATABASE_SERVICE_NAME",
  182. "value": "${DATABASE_SERVICE_NAME}"
  183. },
  184. {
  185. "name": "MONGODB_USER",
  186. "value": "${DATABASE_USER}"
  187. },
  188. {
  189. "name": "MONGODB_PASSWORD",
  190. "value": "${DATABASE_PASSWORD}"
  191. },
  192. {
  193. "name": "MONGODB_DATABASE",
  194. "value": "${DATABASE_NAME}"
  195. },
  196. {
  197. "name": "MONGODB_ADMIN_PASSWORD",
  198. "value": "${DATABASE_ADMIN_PASSWORD}"
  199. }
  200. ],
  201. "readinessProbe": {
  202. "timeoutSeconds": 3,
  203. "initialDelaySeconds": 3,
  204. "httpGet": {
  205. "path": "/pagecount",
  206. "port": 8080
  207. }
  208. },
  209. "livenessProbe": {
  210. "timeoutSeconds": 3,
  211. "initialDelaySeconds": 30,
  212. "httpGet": {
  213. "path": "/pagecount",
  214. "port": 8080
  215. }
  216. },
  217. "resources": {
  218. "limits": {
  219. "memory": "${MEMORY_LIMIT}"
  220. }
  221. }
  222. }
  223. ]
  224. }
  225. }
  226. }
  227. },
  228. {
  229. "kind": "Service",
  230. "apiVersion": "v1",
  231. "metadata": {
  232. "name": "${DATABASE_SERVICE_NAME}",
  233. "annotations": {
  234. "description": "Exposes the database server"
  235. }
  236. },
  237. "spec": {
  238. "ports": [
  239. {
  240. "name": "mongodb",
  241. "port": 27017,
  242. "targetPort": 27017
  243. }
  244. ],
  245. "selector": {
  246. "name": "${DATABASE_SERVICE_NAME}"
  247. }
  248. }
  249. },
  250. {
  251. "kind": "DeploymentConfig",
  252. "apiVersion": "v1",
  253. "metadata": {
  254. "name": "${DATABASE_SERVICE_NAME}",
  255. "annotations": {
  256. "description": "Defines how to deploy the database"
  257. }
  258. },
  259. "spec": {
  260. "strategy": {
  261. "type": "Recreate"
  262. },
  263. "triggers": [
  264. {
  265. "type": "ImageChange",
  266. "imageChangeParams": {
  267. "automatic": true,
  268. "containerNames": [
  269. "mongodb"
  270. ],
  271. "from": {
  272. "kind": "ImageStreamTag",
  273. "namespace": "${NAMESPACE}",
  274. "name": "mongodb:2.6"
  275. }
  276. }
  277. },
  278. {
  279. "type": "ConfigChange"
  280. }
  281. ],
  282. "replicas": 1,
  283. "selector": {
  284. "name": "${DATABASE_SERVICE_NAME}"
  285. },
  286. "template": {
  287. "metadata": {
  288. "name": "${DATABASE_SERVICE_NAME}",
  289. "labels": {
  290. "name": "${DATABASE_SERVICE_NAME}"
  291. }
  292. },
  293. "spec": {
  294. "containers": [
  295. {
  296. "name": "mongodb",
  297. "image": " ",
  298. "ports": [
  299. {
  300. "containerPort": 27017
  301. }
  302. ],
  303. "env": [
  304. {
  305. "name": "MONGODB_USER",
  306. "value": "${DATABASE_USER}"
  307. },
  308. {
  309. "name": "MONGODB_PASSWORD",
  310. "value": "${DATABASE_PASSWORD}"
  311. },
  312. {
  313. "name": "MONGODB_DATABASE",
  314. "value": "${DATABASE_NAME}"
  315. },
  316. {
  317. "name": "MONGODB_ADMIN_PASSWORD",
  318. "value": "${DATABASE_ADMIN_PASSWORD}"
  319. }
  320. ],
  321. "readinessProbe": {
  322. "timeoutSeconds": 1,
  323. "initialDelaySeconds": 3,
  324. "exec": {
  325. "command": [ "/bin/sh", "-i", "-c", "mongostat --host 127.0.0.1 -u admin -p ${DATABASE_ADMIN_PASSWORD} -n 1 --noheaders"]
  326. }
  327. },
  328. "livenessProbe": {
  329. "timeoutSeconds": 1,
  330. "initialDelaySeconds": 30,
  331. "tcpSocket": {
  332. "port": 27017
  333. }
  334. },
  335. "resources": {
  336. "limits": {
  337. "memory": "${MEMORY_MONGODB_LIMIT}"
  338. }
  339. },
  340. "volumeMounts": [
  341. {
  342. "name": "${DATABASE_SERVICE_NAME}-data",
  343. "mountPath": "/var/lib/mongodb/data"
  344. }
  345. ]
  346. }
  347. ],
  348. "volumes": [
  349. {
  350. "name": "${DATABASE_SERVICE_NAME}-data",
  351. "emptyDir": {
  352. "medium": ""
  353. }
  354. }
  355. ]
  356. }
  357. }
  358. }
  359. }
  360. ],
  361. "parameters": [
  362. {
  363. "name": "NAME",
  364. "displayName": "Name",
  365. "description": "The name assigned to all of the frontend objects defined in this template.",
  366. "required": true,
  367. "value": "nodejs-mongodb-example"
  368. },
  369. {
  370. "name": "NAMESPACE",
  371. "displayName": "Namespace",
  372. "description": "The OpenShift Namespace where the ImageStream resides.",
  373. "required": true,
  374. "value": "openshift"
  375. },
  376. {
  377. "name": "MEMORY_LIMIT",
  378. "displayName": "Memory Limit",
  379. "description": "Maximum amount of memory the Node.js container can use.",
  380. "required": true,
  381. "value": "512Mi"
  382. },
  383. {
  384. "name": "MEMORY_MONGODB_LIMIT",
  385. "displayName": "Memory Limit (MongoDB)",
  386. "description": "Maximum amount of memory the MongoDB container can use.",
  387. "required": true,
  388. "value": "512Mi"
  389. },
  390. {
  391. "name": "SOURCE_REPOSITORY_URL",
  392. "displayName": "Git Repository URL",
  393. "description": "The URL of the repository with your application source code.",
  394. "required": true,
  395. "value": "https://github.com/openshift/nodejs-ex.git"
  396. },
  397. {
  398. "name": "SOURCE_REPOSITORY_REF",
  399. "displayName": "Git Reference",
  400. "description": "Set this to a branch name, tag or other ref of your repository if you are not using the default branch."
  401. },
  402. {
  403. "name": "CONTEXT_DIR",
  404. "displayName": "Context Directory",
  405. "description": "Set this to the relative path to your project if it is not in the root of your repository."
  406. },
  407. {
  408. "name": "APPLICATION_DOMAIN",
  409. "displayName": "Application Hostname",
  410. "description": "The exposed hostname that will route to the Node.js service, if left blank a value will be defaulted.",
  411. "value": ""
  412. },
  413. {
  414. "name": "GITHUB_WEBHOOK_SECRET",
  415. "displayName": "GitHub Webhook Secret",
  416. "description": "A secret string used to configure the GitHub webhook.",
  417. "generate": "expression",
  418. "from": "[a-zA-Z0-9]{40}"
  419. },
  420. {
  421. "name": "GENERIC_WEBHOOK_SECRET",
  422. "displayName": "Generic Webhook Secret",
  423. "description": "A secret string used to configure the Generic webhook.",
  424. "generate": "expression",
  425. "from": "[a-zA-Z0-9]{40}"
  426. },
  427. {
  428. "name": "DATABASE_SERVICE_NAME",
  429. "displayName": "Database Service Name",
  430. "required": true,
  431. "value": "mongodb"
  432. },
  433. {
  434. "name": "DATABASE_USER",
  435. "displayName": "MongoDB Username",
  436. "description": "Username for MongoDB user that will be used for accessing the database.",
  437. "generate": "expression",
  438. "from": "user[A-Z0-9]{3}"
  439. },
  440. {
  441. "name": "DATABASE_PASSWORD",
  442. "displayName": "MongoDB Password",
  443. "description": "Password for the MongoDB user.",
  444. "generate": "expression",
  445. "from": "[a-zA-Z0-9]{16}"
  446. },
  447. {
  448. "name": "DATABASE_NAME",
  449. "displayName": "Database Name",
  450. "required": true,
  451. "value": "sampledb"
  452. },
  453. {
  454. "name": "DATABASE_ADMIN_PASSWORD",
  455. "displayName": "Database Administrator Password",
  456. "description": "Password for the database admin user.",
  457. "generate": "expression",
  458. "from": "[a-zA-Z0-9]{16}"
  459. },
  460. {
  461. "name": "NPM_MIRROR",
  462. "displayName": "Custom NPM Mirror URL",
  463. "description": "The custom NPM mirror URL",
  464. "value": ""
  465. }
  466. ]
  467. }