mysql-ephemeral-template.json 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212
  1. {
  2. "kind": "Template",
  3. "apiVersion": "v1",
  4. "metadata": {
  5. "name": "mysql-ephemeral",
  6. "annotations": {
  7. "description": "MySQL database service, without persistent storage. WARNING: Any data stored will be lost upon pod destruction. Only use this template for testing",
  8. "iconClass": "icon-mysql-database",
  9. "tags": "database,mysql"
  10. }
  11. },
  12. "objects": [
  13. {
  14. "kind": "Service",
  15. "apiVersion": "v1",
  16. "metadata": {
  17. "name": "${DATABASE_SERVICE_NAME}",
  18. "creationTimestamp": null
  19. },
  20. "spec": {
  21. "ports": [
  22. {
  23. "name": "mysql",
  24. "protocol": "TCP",
  25. "port": 3306,
  26. "targetPort": 3306,
  27. "nodePort": 0
  28. }
  29. ],
  30. "selector": {
  31. "name": "${DATABASE_SERVICE_NAME}"
  32. },
  33. "type": "ClusterIP",
  34. "sessionAffinity": "None"
  35. },
  36. "status": {
  37. "loadBalancer": {}
  38. }
  39. },
  40. {
  41. "kind": "DeploymentConfig",
  42. "apiVersion": "v1",
  43. "metadata": {
  44. "name": "${DATABASE_SERVICE_NAME}",
  45. "creationTimestamp": null
  46. },
  47. "spec": {
  48. "strategy": {
  49. "type": "Recreate"
  50. },
  51. "triggers": [
  52. {
  53. "type": "ImageChange",
  54. "imageChangeParams": {
  55. "automatic": true,
  56. "containerNames": [
  57. "mysql"
  58. ],
  59. "from": {
  60. "kind": "ImageStreamTag",
  61. "name": "mysql:${MYSQL_VERSION}",
  62. "namespace": "${NAMESPACE}"
  63. },
  64. "lastTriggeredImage": ""
  65. }
  66. },
  67. {
  68. "type": "ConfigChange"
  69. }
  70. ],
  71. "replicas": 1,
  72. "selector": {
  73. "name": "${DATABASE_SERVICE_NAME}"
  74. },
  75. "template": {
  76. "metadata": {
  77. "creationTimestamp": null,
  78. "labels": {
  79. "name": "${DATABASE_SERVICE_NAME}"
  80. }
  81. },
  82. "spec": {
  83. "containers": [
  84. {
  85. "name": "mysql",
  86. "image": " ",
  87. "ports": [
  88. {
  89. "containerPort": 3306,
  90. "protocol": "TCP"
  91. }
  92. ],
  93. "readinessProbe": {
  94. "timeoutSeconds": 1,
  95. "initialDelaySeconds": 5,
  96. "exec": {
  97. "command": [ "/bin/sh", "-i", "-c",
  98. "MYSQL_PWD=\"$MYSQL_PASSWORD\" mysql -h 127.0.0.1 -u $MYSQL_USER -D $MYSQL_DATABASE -e 'SELECT 1'"]
  99. }
  100. },
  101. "livenessProbe": {
  102. "timeoutSeconds": 1,
  103. "initialDelaySeconds": 30,
  104. "tcpSocket": {
  105. "port": 3306
  106. }
  107. },
  108. "env": [
  109. {
  110. "name": "MYSQL_USER",
  111. "value": "${MYSQL_USER}"
  112. },
  113. {
  114. "name": "MYSQL_PASSWORD",
  115. "value": "${MYSQL_PASSWORD}"
  116. },
  117. {
  118. "name": "MYSQL_DATABASE",
  119. "value": "${MYSQL_DATABASE}"
  120. }
  121. ],
  122. "resources": {
  123. "limits": {
  124. "memory": "${MEMORY_LIMIT}"
  125. }
  126. },
  127. "volumeMounts": [
  128. {
  129. "name": "${DATABASE_SERVICE_NAME}-data",
  130. "mountPath": "/var/lib/mysql/data"
  131. }
  132. ],
  133. "terminationMessagePath": "/dev/termination-log",
  134. "imagePullPolicy": "IfNotPresent",
  135. "capabilities": {},
  136. "securityContext": {
  137. "capabilities": {},
  138. "privileged": false
  139. }
  140. }
  141. ],
  142. "volumes": [
  143. {
  144. "name": "${DATABASE_SERVICE_NAME}-data",
  145. "emptyDir": {
  146. "medium": ""
  147. }
  148. }
  149. ],
  150. "restartPolicy": "Always",
  151. "dnsPolicy": "ClusterFirst"
  152. }
  153. }
  154. },
  155. "status": {}
  156. }
  157. ],
  158. "parameters": [
  159. {
  160. "name": "MEMORY_LIMIT",
  161. "displayName": "Memory Limit",
  162. "description": "Maximum amount of memory the container can use.",
  163. "value": "512Mi"
  164. },
  165. {
  166. "name": "NAMESPACE",
  167. "displayName": "Namespace",
  168. "description": "The OpenShift Namespace where the ImageStream resides.",
  169. "value": "openshift"
  170. },
  171. {
  172. "name": "DATABASE_SERVICE_NAME",
  173. "displayName": "Database Service Name",
  174. "description": "The name of the OpenShift Service exposed for the database.",
  175. "value": "mysql",
  176. "required": true
  177. },
  178. {
  179. "name": "MYSQL_USER",
  180. "displayName": "MySQL Connection Username",
  181. "description": "Username for MySQL user that will be used for accessing the database.",
  182. "generate": "expression",
  183. "from": "user[A-Z0-9]{3}",
  184. "required": true
  185. },
  186. {
  187. "name": "MYSQL_PASSWORD",
  188. "displayName": "MySQL Connection Password",
  189. "description": "Password for the MySQL connection user.",
  190. "generate": "expression",
  191. "from": "[a-zA-Z0-9]{16}",
  192. "required": true
  193. },
  194. {
  195. "name": "MYSQL_DATABASE",
  196. "displayName": "MySQL Database Name",
  197. "description": "Name of the MySQL database accessed.",
  198. "value": "sampledb",
  199. "required": true
  200. },
  201. {
  202. "name": "MYSQL_VERSION",
  203. "displayName": "Version of MySQL Image",
  204. "description": "Version of MySQL image to be used (5.5, 5.6 or latest).",
  205. "value": "5.6",
  206. "required": true
  207. }
  208. ],
  209. "labels": {
  210. "template": "mysql-ephemeral-template"
  211. }
  212. }