mariadb-ephemeral-template.json 8.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254
  1. {
  2. "kind": "Template",
  3. "apiVersion": "v1",
  4. "metadata": {
  5. "name": "mariadb-ephemeral",
  6. "annotations": {
  7. "openshift.io/display-name": "MariaDB (Ephemeral)",
  8. "description": "MariaDB database service, without persistent storage. For more information about using this template, including OpenShift considerations, see https://github.com/sclorg/mariadb-container/blob/master/10.2/root/usr/share/container-scripts/mysql/README.md.\n\nWARNING: Any data stored will be lost upon pod destruction. Only use this template for testing",
  9. "iconClass": "icon-mariadb",
  10. "tags": "database,mariadb",
  11. "openshift.io/long-description": "This template provides a standalone MariaDB 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.",
  12. "openshift.io/provider-display-name": "Red Hat, Inc.",
  13. "openshift.io/documentation-url": "https://github.com/sclorg/mariadb-container/blob/master/10.2/root/usr/share/container-scripts/mysql/README.md",
  14. "openshift.io/support-url": "https://access.redhat.com"
  15. }
  16. },
  17. "message": "The following service(s) have been created in your project: ${DATABASE_SERVICE_NAME}.\n\n Username: ${MYSQL_USER}\n Password: ${MYSQL_PASSWORD}\n Database Name: ${MYSQL_DATABASE}\n Connection URL: mysql://${DATABASE_SERVICE_NAME}:3306/\n\nFor more information about using this template, including OpenShift considerations, see https://github.com/sclorg/mariadb-container/blob/master/10.2/root/usr/share/container-scripts/mysql/README.md.",
  18. "labels": {
  19. "template": "mariadb-persistent-template"
  20. },
  21. "objects": [
  22. {
  23. "kind": "Secret",
  24. "apiVersion": "v1",
  25. "metadata": {
  26. "name": "${DATABASE_SERVICE_NAME}",
  27. "annotations": {
  28. "template.openshift.io/expose-username": "{.data['database-user']}",
  29. "template.openshift.io/expose-password": "{.data['database-password']}",
  30. "template.openshift.io/expose-root_password": "{.data['database-root-password']}",
  31. "template.openshift.io/expose-database_name": "{.data['database-name']}"
  32. }
  33. },
  34. "stringData" : {
  35. "database-user" : "${MYSQL_USER}",
  36. "database-password" : "${MYSQL_PASSWORD}",
  37. "database-root-password" : "${MYSQL_ROOT_PASSWORD}",
  38. "database-name" : "${MYSQL_DATABASE}"
  39. }
  40. },
  41. {
  42. "kind": "Service",
  43. "apiVersion": "v1",
  44. "metadata": {
  45. "name": "${DATABASE_SERVICE_NAME}",
  46. "annotations": {
  47. "template.openshift.io/expose-uri": "mysql://{.spec.clusterIP}:{.spec.ports[?(.name==\"mariadb\")].port}"
  48. }
  49. },
  50. "spec": {
  51. "ports": [
  52. {
  53. "name": "mariadb",
  54. "port": 3306
  55. }
  56. ],
  57. "selector": {
  58. "name": "${DATABASE_SERVICE_NAME}"
  59. }
  60. }
  61. },
  62. {
  63. "kind": "DeploymentConfig",
  64. "apiVersion": "v1",
  65. "metadata": {
  66. "name": "${DATABASE_SERVICE_NAME}",
  67. "annotations": {
  68. "template.alpha.openshift.io/wait-for-ready": "true"
  69. }
  70. },
  71. "spec": {
  72. "strategy": {
  73. "type": "Recreate"
  74. },
  75. "triggers": [
  76. {
  77. "type": "ImageChange",
  78. "imageChangeParams": {
  79. "automatic": true,
  80. "containerNames": [
  81. "mariadb"
  82. ],
  83. "from": {
  84. "kind": "ImageStreamTag",
  85. "name": "mariadb:${MARIADB_VERSION}",
  86. "namespace": "${NAMESPACE}"
  87. }
  88. }
  89. },
  90. {
  91. "type": "ConfigChange"
  92. }
  93. ],
  94. "replicas": 1,
  95. "selector": {
  96. "name": "${DATABASE_SERVICE_NAME}"
  97. },
  98. "template": {
  99. "metadata": {
  100. "labels": {
  101. "name": "${DATABASE_SERVICE_NAME}"
  102. }
  103. },
  104. "spec": {
  105. "containers": [
  106. {
  107. "name": "mariadb",
  108. "image": " ",
  109. "ports": [
  110. {
  111. "containerPort": 3306
  112. }
  113. ],
  114. "readinessProbe": {
  115. "timeoutSeconds": 1,
  116. "initialDelaySeconds": 5,
  117. "exec": {
  118. "command": [ "/bin/sh", "-i", "-c",
  119. "MYSQL_PWD=\"$MYSQL_PASSWORD\" mysql -h 127.0.0.1 -u $MYSQL_USER -D $MYSQL_DATABASE -e 'SELECT 1'"]
  120. }
  121. },
  122. "livenessProbe": {
  123. "timeoutSeconds": 1,
  124. "initialDelaySeconds": 30,
  125. "tcpSocket": {
  126. "port": 3306
  127. }
  128. },
  129. "env": [
  130. {
  131. "name": "MYSQL_USER",
  132. "valueFrom": {
  133. "secretKeyRef" : {
  134. "name" : "${DATABASE_SERVICE_NAME}",
  135. "key" : "database-user"
  136. }
  137. }
  138. },
  139. {
  140. "name": "MYSQL_PASSWORD",
  141. "valueFrom": {
  142. "secretKeyRef" : {
  143. "name" : "${DATABASE_SERVICE_NAME}",
  144. "key" : "database-password"
  145. }
  146. }
  147. },
  148. {
  149. "name": "MYSQL_ROOT_PASSWORD",
  150. "valueFrom": {
  151. "secretKeyRef" : {
  152. "name" : "${DATABASE_SERVICE_NAME}",
  153. "key" : "database-root-password"
  154. }
  155. }
  156. },
  157. {
  158. "name": "MYSQL_DATABASE",
  159. "valueFrom": {
  160. "secretKeyRef" : {
  161. "name" : "${DATABASE_SERVICE_NAME}",
  162. "key" : "database-name"
  163. }
  164. }
  165. }
  166. ],
  167. "resources": {
  168. "limits": {
  169. "memory": "${MEMORY_LIMIT}"
  170. }
  171. },
  172. "volumeMounts": [
  173. {
  174. "name": "${DATABASE_SERVICE_NAME}-data",
  175. "mountPath": "/var/lib/mysql/data"
  176. }
  177. ],
  178. "imagePullPolicy": "IfNotPresent"
  179. }
  180. ],
  181. "volumes": [
  182. {
  183. "name": "${DATABASE_SERVICE_NAME}-data",
  184. "emptyDir": {
  185. "medium": ""
  186. }
  187. }
  188. ]
  189. }
  190. }
  191. }
  192. }
  193. ],
  194. "parameters": [
  195. {
  196. "name": "MEMORY_LIMIT",
  197. "displayName": "Memory Limit",
  198. "description": "Maximum amount of memory the container can use.",
  199. "value": "512Mi",
  200. "required": true
  201. },
  202. {
  203. "name": "NAMESPACE",
  204. "displayName": "Namespace",
  205. "description": "The OpenShift Namespace where the ImageStream resides.",
  206. "value": "openshift"
  207. },
  208. {
  209. "name": "DATABASE_SERVICE_NAME",
  210. "displayName": "Database Service Name",
  211. "description": "The name of the OpenShift Service exposed for the database.",
  212. "value": "mariadb",
  213. "required": true
  214. },
  215. {
  216. "name": "MYSQL_USER",
  217. "displayName": "MariaDB Connection Username",
  218. "description": "Username for MariaDB user that will be used for accessing the database.",
  219. "generate": "expression",
  220. "from": "user[A-Z0-9]{3}",
  221. "required": true
  222. },
  223. {
  224. "name": "MYSQL_PASSWORD",
  225. "displayName": "MariaDB Connection Password",
  226. "description": "Password for the MariaDB connection user.",
  227. "generate": "expression",
  228. "from": "[a-zA-Z0-9]{16}",
  229. "required": true
  230. },
  231. {
  232. "name": "MYSQL_ROOT_PASSWORD",
  233. "displayName": "MariaDB root Password",
  234. "description": "Password for the MariaDB root user.",
  235. "generate": "expression",
  236. "from": "[a-zA-Z0-9]{16}",
  237. "required": true
  238. },
  239. {
  240. "name": "MYSQL_DATABASE",
  241. "displayName": "MariaDB Database Name",
  242. "description": "Name of the MariaDB database accessed.",
  243. "value": "sampledb",
  244. "required": true
  245. },
  246. {
  247. "name": "MARIADB_VERSION",
  248. "displayName": "Version of MariaDB Image",
  249. "description": "Version of MariaDB image to be used (10.0, 10.1, 10.2 or latest).",
  250. "value": "10.2",
  251. "required": true
  252. }
  253. ]
  254. }