mongodb-ephemeral-template.json 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277
  1. {
  2. "apiVersion": "v1",
  3. "kind": "Template",
  4. "labels": {
  5. "template": "mongodb-ephemeral-template"
  6. },
  7. "message": "The following service(s) have been created in your project: ${DATABASE_SERVICE_NAME}.\n\n Username: ${MONGODB_USER}\n Password: ${MONGODB_PASSWORD}\n Database Name: ${MONGODB_DATABASE}\n Connection URL: mongodb://${MONGODB_USER}:${MONGODB_PASSWORD}@${DATABASE_SERVICE_NAME}/${MONGODB_DATABASE}\n\nFor more information about using this template, including OpenShift considerations, see https://github.com/sclorg/mongodb-container/blob/master/3.2/README.md.",
  8. "metadata": {
  9. "annotations": {
  10. "description": "MongoDB database service, without persistent storage. For more information about using this template, including OpenShift considerations, see https://github.com/sclorg/mongodb-container/blob/master/3.2/README.md.\n\nWARNING: Any data stored will be lost upon pod destruction. Only use this template for testing",
  11. "iconClass": "icon-mongodb",
  12. "openshift.io/display-name": "MongoDB (Ephemeral)",
  13. "openshift.io/documentation-url": "https://docs.openshift.org/latest/using_images/db_images/mongodb.html",
  14. "openshift.io/long-description": "This template provides a standalone MongoDB server with a database created. The database is not stored on persistent storage, so any restart of the service will result in all data being lost. The database name, username, and password are chosen via parameters when provisioning this service.",
  15. "openshift.io/provider-display-name": "Red Hat, Inc.",
  16. "openshift.io/support-url": "https://access.redhat.com",
  17. "tags": "database,mongodb"
  18. },
  19. "name": "mongodb-ephemeral"
  20. },
  21. "objects": [
  22. {
  23. "apiVersion": "v1",
  24. "kind": "Secret",
  25. "metadata": {
  26. "annotations": {
  27. "template.openshift.io/expose-admin_password": "{.data['database-admin-password']}",
  28. "template.openshift.io/expose-database_name": "{.data['database-name']}",
  29. "template.openshift.io/expose-password": "{.data['database-password']}",
  30. "template.openshift.io/expose-username": "{.data['database-user']}"
  31. },
  32. "name": "${DATABASE_SERVICE_NAME}"
  33. },
  34. "stringData": {
  35. "database-admin-password": "${MONGODB_ADMIN_PASSWORD}",
  36. "database-name": "${MONGODB_DATABASE}",
  37. "database-password": "${MONGODB_PASSWORD}",
  38. "database-user": "${MONGODB_USER}"
  39. }
  40. },
  41. {
  42. "apiVersion": "v1",
  43. "kind": "Service",
  44. "metadata": {
  45. "annotations": {
  46. "template.openshift.io/expose-uri": "mongodb://{.spec.clusterIP}:{.spec.ports[?(.name==\"mongo\")].port}"
  47. },
  48. "name": "${DATABASE_SERVICE_NAME}"
  49. },
  50. "spec": {
  51. "ports": [
  52. {
  53. "name": "mongo",
  54. "nodePort": 0,
  55. "port": 27017,
  56. "protocol": "TCP",
  57. "targetPort": 27017
  58. }
  59. ],
  60. "selector": {
  61. "name": "${DATABASE_SERVICE_NAME}"
  62. },
  63. "sessionAffinity": "None",
  64. "type": "ClusterIP"
  65. },
  66. "status": {
  67. "loadBalancer": {}
  68. }
  69. },
  70. {
  71. "apiVersion": "v1",
  72. "kind": "DeploymentConfig",
  73. "metadata": {
  74. "annotations": {
  75. "template.alpha.openshift.io/wait-for-ready": "true"
  76. },
  77. "name": "${DATABASE_SERVICE_NAME}"
  78. },
  79. "spec": {
  80. "replicas": 1,
  81. "selector": {
  82. "name": "${DATABASE_SERVICE_NAME}"
  83. },
  84. "strategy": {
  85. "type": "Recreate"
  86. },
  87. "template": {
  88. "metadata": {
  89. "labels": {
  90. "name": "${DATABASE_SERVICE_NAME}"
  91. }
  92. },
  93. "spec": {
  94. "containers": [
  95. {
  96. "capabilities": {},
  97. "env": [
  98. {
  99. "name": "MONGODB_USER",
  100. "valueFrom": {
  101. "secretKeyRef": {
  102. "key": "database-user",
  103. "name": "${DATABASE_SERVICE_NAME}"
  104. }
  105. }
  106. },
  107. {
  108. "name": "MONGODB_PASSWORD",
  109. "valueFrom": {
  110. "secretKeyRef": {
  111. "key": "database-password",
  112. "name": "${DATABASE_SERVICE_NAME}"
  113. }
  114. }
  115. },
  116. {
  117. "name": "MONGODB_ADMIN_PASSWORD",
  118. "valueFrom": {
  119. "secretKeyRef": {
  120. "key": "database-admin-password",
  121. "name": "${DATABASE_SERVICE_NAME}"
  122. }
  123. }
  124. },
  125. {
  126. "name": "MONGODB_DATABASE",
  127. "valueFrom": {
  128. "secretKeyRef": {
  129. "key": "database-name",
  130. "name": "${DATABASE_SERVICE_NAME}"
  131. }
  132. }
  133. }
  134. ],
  135. "image": " ",
  136. "imagePullPolicy": "IfNotPresent",
  137. "livenessProbe": {
  138. "initialDelaySeconds": 30,
  139. "tcpSocket": {
  140. "port": 27017
  141. },
  142. "timeoutSeconds": 1
  143. },
  144. "name": "mongodb",
  145. "ports": [
  146. {
  147. "containerPort": 27017,
  148. "protocol": "TCP"
  149. }
  150. ],
  151. "readinessProbe": {
  152. "exec": {
  153. "command": [
  154. "/bin/sh",
  155. "-i",
  156. "-c",
  157. "mongo 127.0.0.1:27017/$MONGODB_DATABASE -u $MONGODB_USER -p $MONGODB_PASSWORD --eval=\"quit()\""
  158. ]
  159. },
  160. "initialDelaySeconds": 3,
  161. "timeoutSeconds": 1
  162. },
  163. "resources": {
  164. "limits": {
  165. "memory": "${MEMORY_LIMIT}"
  166. }
  167. },
  168. "securityContext": {
  169. "capabilities": {},
  170. "privileged": false
  171. },
  172. "terminationMessagePath": "/dev/termination-log",
  173. "volumeMounts": [
  174. {
  175. "mountPath": "/var/lib/mongodb/data",
  176. "name": "${DATABASE_SERVICE_NAME}-data"
  177. }
  178. ]
  179. }
  180. ],
  181. "dnsPolicy": "ClusterFirst",
  182. "restartPolicy": "Always",
  183. "volumes": [
  184. {
  185. "emptyDir": {
  186. "medium": ""
  187. },
  188. "name": "${DATABASE_SERVICE_NAME}-data"
  189. }
  190. ]
  191. }
  192. },
  193. "triggers": [
  194. {
  195. "imageChangeParams": {
  196. "automatic": true,
  197. "containerNames": [
  198. "mongodb"
  199. ],
  200. "from": {
  201. "kind": "ImageStreamTag",
  202. "name": "mongodb:${MONGODB_VERSION}",
  203. "namespace": "${NAMESPACE}"
  204. },
  205. "lastTriggeredImage": ""
  206. },
  207. "type": "ImageChange"
  208. },
  209. {
  210. "type": "ConfigChange"
  211. }
  212. ]
  213. },
  214. "status": {}
  215. }
  216. ],
  217. "parameters": [
  218. {
  219. "description": "Maximum amount of memory the container can use.",
  220. "displayName": "Memory Limit",
  221. "name": "MEMORY_LIMIT",
  222. "required": true,
  223. "value": "512Mi"
  224. },
  225. {
  226. "description": "The OpenShift Namespace where the ImageStream resides.",
  227. "displayName": "Namespace",
  228. "name": "NAMESPACE",
  229. "value": "openshift"
  230. },
  231. {
  232. "description": "The name of the OpenShift Service exposed for the database.",
  233. "displayName": "Database Service Name",
  234. "name": "DATABASE_SERVICE_NAME",
  235. "required": true,
  236. "value": "mongodb"
  237. },
  238. {
  239. "description": "Username for MongoDB user that will be used for accessing the database.",
  240. "displayName": "MongoDB Connection Username",
  241. "from": "user[A-Z0-9]{3}",
  242. "generate": "expression",
  243. "name": "MONGODB_USER",
  244. "required": true
  245. },
  246. {
  247. "description": "Password for the MongoDB connection user.",
  248. "displayName": "MongoDB Connection Password",
  249. "from": "[a-zA-Z0-9]{16}",
  250. "generate": "expression",
  251. "name": "MONGODB_PASSWORD",
  252. "required": true
  253. },
  254. {
  255. "description": "Name of the MongoDB database accessed.",
  256. "displayName": "MongoDB Database Name",
  257. "name": "MONGODB_DATABASE",
  258. "required": true,
  259. "value": "sampledb"
  260. },
  261. {
  262. "description": "Password for the database admin user.",
  263. "displayName": "MongoDB Admin Password",
  264. "from": "[a-zA-Z0-9]{16}",
  265. "generate": "expression",
  266. "name": "MONGODB_ADMIN_PASSWORD",
  267. "required": true
  268. },
  269. {
  270. "description": "Version of MongoDB image to be used (2.4, 2.6, 3.2 or latest).",
  271. "displayName": "Version of MongoDB Image",
  272. "name": "MONGODB_VERSION",
  273. "required": true,
  274. "value": "3.2"
  275. }
  276. ]
  277. }