mysql-ephemeral-template.json 9.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273
  1. {
  2. "kind": "Template",
  3. "apiVersion": "v1",
  4. "metadata": {
  5. "name": "mysql-ephemeral",
  6. "annotations": {
  7. "openshift.io/display-name": "MySQL (Ephemeral)",
  8. "description": "MySQL database service, without persistent storage. For more information about using this template, including OpenShift considerations, see https://github.com/sclorg/mysql-container/blob/master/5.7/README.md.\n\nWARNING: Any data stored will be lost upon pod destruction. Only use this template for testing",
  9. "iconClass": "icon-mysql-database",
  10. "tags": "database,mysql",
  11. "openshift.io/long-description": "This template provides a standalone MySQL 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://docs.openshift.org/latest/using_images/db_images/mysql.html",
  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/mysql-container/blob/master/5.7/README.md.",
  18. "labels": {
  19. "template": "mysql-ephemeral-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==\"mysql\")].port}"
  48. }
  49. },
  50. "spec": {
  51. "ports": [
  52. {
  53. "name": "mysql",
  54. "protocol": "TCP",
  55. "port": 3306,
  56. "targetPort": 3306,
  57. "nodePort": 0
  58. }
  59. ],
  60. "selector": {
  61. "name": "${DATABASE_SERVICE_NAME}"
  62. },
  63. "type": "ClusterIP",
  64. "sessionAffinity": "None"
  65. },
  66. "status": {
  67. "loadBalancer": {}
  68. }
  69. },
  70. {
  71. "kind": "DeploymentConfig",
  72. "apiVersion": "v1",
  73. "metadata": {
  74. "name": "${DATABASE_SERVICE_NAME}",
  75. "annotations": {
  76. "template.alpha.openshift.io/wait-for-ready": "true"
  77. }
  78. },
  79. "spec": {
  80. "strategy": {
  81. "type": "Recreate"
  82. },
  83. "triggers": [
  84. {
  85. "type": "ImageChange",
  86. "imageChangeParams": {
  87. "automatic": true,
  88. "containerNames": [
  89. "mysql"
  90. ],
  91. "from": {
  92. "kind": "ImageStreamTag",
  93. "name": "mysql:${MYSQL_VERSION}",
  94. "namespace": "${NAMESPACE}"
  95. },
  96. "lastTriggeredImage": ""
  97. }
  98. },
  99. {
  100. "type": "ConfigChange"
  101. }
  102. ],
  103. "replicas": 1,
  104. "selector": {
  105. "name": "${DATABASE_SERVICE_NAME}"
  106. },
  107. "template": {
  108. "metadata": {
  109. "labels": {
  110. "name": "${DATABASE_SERVICE_NAME}"
  111. }
  112. },
  113. "spec": {
  114. "containers": [
  115. {
  116. "name": "mysql",
  117. "image": " ",
  118. "ports": [
  119. {
  120. "containerPort": 3306,
  121. "protocol": "TCP"
  122. }
  123. ],
  124. "readinessProbe": {
  125. "timeoutSeconds": 1,
  126. "initialDelaySeconds": 5,
  127. "exec": {
  128. "command": [ "/bin/sh", "-i", "-c",
  129. "MYSQL_PWD=\"$MYSQL_PASSWORD\" mysql -h 127.0.0.1 -u $MYSQL_USER -D $MYSQL_DATABASE -e 'SELECT 1'"]
  130. }
  131. },
  132. "livenessProbe": {
  133. "timeoutSeconds": 1,
  134. "initialDelaySeconds": 30,
  135. "tcpSocket": {
  136. "port": 3306
  137. }
  138. },
  139. "env": [
  140. {
  141. "name": "MYSQL_USER",
  142. "valueFrom": {
  143. "secretKeyRef" : {
  144. "name" : "${DATABASE_SERVICE_NAME}",
  145. "key" : "database-user"
  146. }
  147. }
  148. },
  149. {
  150. "name": "MYSQL_PASSWORD",
  151. "valueFrom": {
  152. "secretKeyRef" : {
  153. "name" : "${DATABASE_SERVICE_NAME}",
  154. "key" : "database-password"
  155. }
  156. }
  157. },
  158. {
  159. "name": "MYSQL_ROOT_PASSWORD",
  160. "valueFrom": {
  161. "secretKeyRef" : {
  162. "name" : "${DATABASE_SERVICE_NAME}",
  163. "key" : "database-root-password"
  164. }
  165. }
  166. },
  167. {
  168. "name": "MYSQL_DATABASE",
  169. "valueFrom": {
  170. "secretKeyRef" : {
  171. "name" : "${DATABASE_SERVICE_NAME}",
  172. "key" : "database-name"
  173. }
  174. }
  175. }
  176. ],
  177. "resources": {
  178. "limits": {
  179. "memory": "${MEMORY_LIMIT}"
  180. }
  181. },
  182. "volumeMounts": [
  183. {
  184. "name": "${DATABASE_SERVICE_NAME}-data",
  185. "mountPath": "/var/lib/mysql/data"
  186. }
  187. ],
  188. "terminationMessagePath": "/dev/termination-log",
  189. "imagePullPolicy": "IfNotPresent",
  190. "capabilities": {},
  191. "securityContext": {
  192. "capabilities": {},
  193. "privileged": false
  194. }
  195. }
  196. ],
  197. "volumes": [
  198. {
  199. "name": "${DATABASE_SERVICE_NAME}-data",
  200. "emptyDir": {
  201. "medium": ""
  202. }
  203. }
  204. ],
  205. "restartPolicy": "Always",
  206. "dnsPolicy": "ClusterFirst"
  207. }
  208. }
  209. },
  210. "status": {}
  211. }
  212. ],
  213. "parameters": [
  214. {
  215. "name": "MEMORY_LIMIT",
  216. "displayName": "Memory Limit",
  217. "description": "Maximum amount of memory the container can use.",
  218. "value": "512Mi",
  219. "required": true
  220. },
  221. {
  222. "name": "NAMESPACE",
  223. "displayName": "Namespace",
  224. "description": "The OpenShift Namespace where the ImageStream resides.",
  225. "value": "openshift"
  226. },
  227. {
  228. "name": "DATABASE_SERVICE_NAME",
  229. "displayName": "Database Service Name",
  230. "description": "The name of the OpenShift Service exposed for the database.",
  231. "value": "mysql",
  232. "required": true
  233. },
  234. {
  235. "name": "MYSQL_USER",
  236. "displayName": "MySQL Connection Username",
  237. "description": "Username for MySQL user that will be used for accessing the database.",
  238. "generate": "expression",
  239. "from": "user[A-Z0-9]{3}",
  240. "required": true
  241. },
  242. {
  243. "name": "MYSQL_PASSWORD",
  244. "displayName": "MySQL Connection Password",
  245. "description": "Password for the MySQL connection user.",
  246. "generate": "expression",
  247. "from": "[a-zA-Z0-9]{16}",
  248. "required": true
  249. },
  250. {
  251. "name": "MYSQL_ROOT_PASSWORD",
  252. "displayName": "MySQL root user Password",
  253. "description": "Password for the MySQL root user.",
  254. "generate": "expression",
  255. "from": "[a-zA-Z0-9]{16}",
  256. "required": true
  257. },
  258. {
  259. "name": "MYSQL_DATABASE",
  260. "displayName": "MySQL Database Name",
  261. "description": "Name of the MySQL database accessed.",
  262. "value": "sampledb",
  263. "required": true
  264. },
  265. {
  266. "name": "MYSQL_VERSION",
  267. "displayName": "Version of MySQL Image",
  268. "description": "Version of MySQL image to be used (5.5, 5.6, 5.7, or latest).",
  269. "value": "5.7",
  270. "required": true
  271. }
  272. ]
  273. }