mongodb-persistent-template.json 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301
  1. {
  2. "apiVersion": "v1",
  3. "kind": "Template",
  4. "labels": {
  5. "template": "mongodb-persistent-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, with 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\nNOTE: Scaling to more than one replica is not supported. You must have persistent volumes available in your cluster to use this template.",
  11. "iconClass": "icon-mongodb",
  12. "openshift.io/display-name": "MongoDB",
  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 stored on persistent storage. 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-persistent"
  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": "PersistentVolumeClaim",
  73. "metadata": {
  74. "name": "${DATABASE_SERVICE_NAME}"
  75. },
  76. "spec": {
  77. "accessModes": [
  78. "ReadWriteOnce"
  79. ],
  80. "resources": {
  81. "requests": {
  82. "storage": "${VOLUME_CAPACITY}"
  83. }
  84. }
  85. }
  86. },
  87. {
  88. "apiVersion": "v1",
  89. "kind": "DeploymentConfig",
  90. "metadata": {
  91. "annotations": {
  92. "template.alpha.openshift.io/wait-for-ready": "true"
  93. },
  94. "name": "${DATABASE_SERVICE_NAME}"
  95. },
  96. "spec": {
  97. "replicas": 1,
  98. "selector": {
  99. "name": "${DATABASE_SERVICE_NAME}"
  100. },
  101. "strategy": {
  102. "type": "Recreate"
  103. },
  104. "template": {
  105. "metadata": {
  106. "labels": {
  107. "name": "${DATABASE_SERVICE_NAME}"
  108. }
  109. },
  110. "spec": {
  111. "containers": [
  112. {
  113. "capabilities": {},
  114. "env": [
  115. {
  116. "name": "MONGODB_USER",
  117. "valueFrom": {
  118. "secretKeyRef": {
  119. "key": "database-user",
  120. "name": "${DATABASE_SERVICE_NAME}"
  121. }
  122. }
  123. },
  124. {
  125. "name": "MONGODB_PASSWORD",
  126. "valueFrom": {
  127. "secretKeyRef": {
  128. "key": "database-password",
  129. "name": "${DATABASE_SERVICE_NAME}"
  130. }
  131. }
  132. },
  133. {
  134. "name": "MONGODB_ADMIN_PASSWORD",
  135. "valueFrom": {
  136. "secretKeyRef": {
  137. "key": "database-admin-password",
  138. "name": "${DATABASE_SERVICE_NAME}"
  139. }
  140. }
  141. },
  142. {
  143. "name": "MONGODB_DATABASE",
  144. "valueFrom": {
  145. "secretKeyRef": {
  146. "key": "database-name",
  147. "name": "${DATABASE_SERVICE_NAME}"
  148. }
  149. }
  150. }
  151. ],
  152. "image": " ",
  153. "imagePullPolicy": "IfNotPresent",
  154. "livenessProbe": {
  155. "initialDelaySeconds": 30,
  156. "tcpSocket": {
  157. "port": 27017
  158. },
  159. "timeoutSeconds": 1
  160. },
  161. "name": "mongodb",
  162. "ports": [
  163. {
  164. "containerPort": 27017,
  165. "protocol": "TCP"
  166. }
  167. ],
  168. "readinessProbe": {
  169. "exec": {
  170. "command": [
  171. "/bin/sh",
  172. "-i",
  173. "-c",
  174. "mongo 127.0.0.1:27017/$MONGODB_DATABASE -u $MONGODB_USER -p $MONGODB_PASSWORD --eval=\"quit()\""
  175. ]
  176. },
  177. "initialDelaySeconds": 3,
  178. "timeoutSeconds": 1
  179. },
  180. "resources": {
  181. "limits": {
  182. "memory": "${MEMORY_LIMIT}"
  183. }
  184. },
  185. "securityContext": {
  186. "capabilities": {},
  187. "privileged": false
  188. },
  189. "terminationMessagePath": "/dev/termination-log",
  190. "volumeMounts": [
  191. {
  192. "mountPath": "/var/lib/mongodb/data",
  193. "name": "${DATABASE_SERVICE_NAME}-data"
  194. }
  195. ]
  196. }
  197. ],
  198. "dnsPolicy": "ClusterFirst",
  199. "restartPolicy": "Always",
  200. "volumes": [
  201. {
  202. "name": "${DATABASE_SERVICE_NAME}-data",
  203. "persistentVolumeClaim": {
  204. "claimName": "${DATABASE_SERVICE_NAME}"
  205. }
  206. }
  207. ]
  208. }
  209. },
  210. "triggers": [
  211. {
  212. "imageChangeParams": {
  213. "automatic": true,
  214. "containerNames": [
  215. "mongodb"
  216. ],
  217. "from": {
  218. "kind": "ImageStreamTag",
  219. "name": "mongodb:${MONGODB_VERSION}",
  220. "namespace": "${NAMESPACE}"
  221. },
  222. "lastTriggeredImage": ""
  223. },
  224. "type": "ImageChange"
  225. },
  226. {
  227. "type": "ConfigChange"
  228. }
  229. ]
  230. },
  231. "status": {}
  232. }
  233. ],
  234. "parameters": [
  235. {
  236. "description": "Maximum amount of memory the container can use.",
  237. "displayName": "Memory Limit",
  238. "name": "MEMORY_LIMIT",
  239. "required": true,
  240. "value": "512Mi"
  241. },
  242. {
  243. "description": "The OpenShift Namespace where the ImageStream resides.",
  244. "displayName": "Namespace",
  245. "name": "NAMESPACE",
  246. "value": "openshift"
  247. },
  248. {
  249. "description": "The name of the OpenShift Service exposed for the database.",
  250. "displayName": "Database Service Name",
  251. "name": "DATABASE_SERVICE_NAME",
  252. "required": true,
  253. "value": "mongodb"
  254. },
  255. {
  256. "description": "Username for MongoDB user that will be used for accessing the database.",
  257. "displayName": "MongoDB Connection Username",
  258. "from": "user[A-Z0-9]{3}",
  259. "generate": "expression",
  260. "name": "MONGODB_USER",
  261. "required": true
  262. },
  263. {
  264. "description": "Password for the MongoDB connection user.",
  265. "displayName": "MongoDB Connection Password",
  266. "from": "[a-zA-Z0-9]{16}",
  267. "generate": "expression",
  268. "name": "MONGODB_PASSWORD",
  269. "required": true
  270. },
  271. {
  272. "description": "Name of the MongoDB database accessed.",
  273. "displayName": "MongoDB Database Name",
  274. "name": "MONGODB_DATABASE",
  275. "required": true,
  276. "value": "sampledb"
  277. },
  278. {
  279. "description": "Password for the database admin user.",
  280. "displayName": "MongoDB Admin Password",
  281. "from": "[a-zA-Z0-9]{16}",
  282. "generate": "expression",
  283. "name": "MONGODB_ADMIN_PASSWORD",
  284. "required": true
  285. },
  286. {
  287. "description": "Volume space available for data, e.g. 512Mi, 2Gi.",
  288. "displayName": "Volume Capacity",
  289. "name": "VOLUME_CAPACITY",
  290. "required": true,
  291. "value": "1Gi"
  292. },
  293. {
  294. "description": "Version of MongoDB image to be used (2.4, 2.6, 3.2 or latest).",
  295. "displayName": "Version of MongoDB Image",
  296. "name": "MONGODB_VERSION",
  297. "required": true,
  298. "value": "3.2"
  299. }
  300. ]
  301. }