mysql-persistent-template.json 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215
  1. {
  2. "kind": "Template",
  3. "apiVersion": "v1",
  4. "metadata": {
  5. "name": "mysql-persistent",
  6. "annotations": {
  7. "description": "MySQL database service, with persistent storage. Scaling to more than one replica is not supported. You must have persistent volumes available in your cluster to use this template.",
  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. },
  19. "spec": {
  20. "ports": [
  21. {
  22. "name": "mysql",
  23. "port": 3306
  24. }
  25. ],
  26. "selector": {
  27. "name": "${DATABASE_SERVICE_NAME}"
  28. }
  29. }
  30. },
  31. {
  32. "kind": "PersistentVolumeClaim",
  33. "apiVersion": "v1",
  34. "metadata": {
  35. "name": "${DATABASE_SERVICE_NAME}"
  36. },
  37. "spec": {
  38. "accessModes": [
  39. "ReadWriteOnce"
  40. ],
  41. "resources": {
  42. "requests": {
  43. "storage": "${VOLUME_CAPACITY}"
  44. }
  45. }
  46. }
  47. },
  48. {
  49. "kind": "DeploymentConfig",
  50. "apiVersion": "v1",
  51. "metadata": {
  52. "name": "${DATABASE_SERVICE_NAME}"
  53. },
  54. "spec": {
  55. "strategy": {
  56. "type": "Recreate"
  57. },
  58. "triggers": [
  59. {
  60. "type": "ImageChange",
  61. "imageChangeParams": {
  62. "automatic": true,
  63. "containerNames": [
  64. "mysql"
  65. ],
  66. "from": {
  67. "kind": "ImageStreamTag",
  68. "name": "mysql:${MYSQL_VERSION}",
  69. "namespace": "${NAMESPACE}"
  70. }
  71. }
  72. },
  73. {
  74. "type": "ConfigChange"
  75. }
  76. ],
  77. "replicas": 1,
  78. "selector": {
  79. "name": "${DATABASE_SERVICE_NAME}"
  80. },
  81. "template": {
  82. "metadata": {
  83. "labels": {
  84. "name": "${DATABASE_SERVICE_NAME}"
  85. }
  86. },
  87. "spec": {
  88. "containers": [
  89. {
  90. "name": "mysql",
  91. "image": " ",
  92. "ports": [
  93. {
  94. "containerPort": 3306
  95. }
  96. ],
  97. "readinessProbe": {
  98. "timeoutSeconds": 1,
  99. "initialDelaySeconds": 5,
  100. "exec": {
  101. "command": [ "/bin/sh", "-i", "-c",
  102. "MYSQL_PWD=\"$MYSQL_PASSWORD\" mysql -h 127.0.0.1 -u $MYSQL_USER -D $MYSQL_DATABASE -e 'SELECT 1'"]
  103. }
  104. },
  105. "livenessProbe": {
  106. "timeoutSeconds": 1,
  107. "initialDelaySeconds": 30,
  108. "tcpSocket": {
  109. "port": 3306
  110. }
  111. },
  112. "env": [
  113. {
  114. "name": "MYSQL_USER",
  115. "value": "${MYSQL_USER}"
  116. },
  117. {
  118. "name": "MYSQL_PASSWORD",
  119. "value": "${MYSQL_PASSWORD}"
  120. },
  121. {
  122. "name": "MYSQL_DATABASE",
  123. "value": "${MYSQL_DATABASE}"
  124. }
  125. ],
  126. "resources": {
  127. "limits": {
  128. "memory": "${MEMORY_LIMIT}"
  129. }
  130. },
  131. "volumeMounts": [
  132. {
  133. "name": "${DATABASE_SERVICE_NAME}-data",
  134. "mountPath": "/var/lib/mysql/data"
  135. }
  136. ],
  137. "imagePullPolicy": "IfNotPresent"
  138. }
  139. ],
  140. "volumes": [
  141. {
  142. "name": "${DATABASE_SERVICE_NAME}-data",
  143. "persistentVolumeClaim": {
  144. "claimName": "${DATABASE_SERVICE_NAME}"
  145. }
  146. }
  147. ]
  148. }
  149. }
  150. }
  151. }
  152. ],
  153. "parameters": [
  154. {
  155. "name": "MEMORY_LIMIT",
  156. "displayName": "Memory Limit",
  157. "description": "Maximum amount of memory the container can use.",
  158. "value": "512Mi",
  159. "required": true
  160. },
  161. {
  162. "name": "NAMESPACE",
  163. "displayName": "Namespace",
  164. "description": "The OpenShift Namespace where the ImageStream resides.",
  165. "value": "openshift"
  166. },
  167. {
  168. "name": "DATABASE_SERVICE_NAME",
  169. "displayName": "Database Service Name",
  170. "description": "The name of the OpenShift Service exposed for the database.",
  171. "value": "mysql",
  172. "required": true
  173. },
  174. {
  175. "name": "MYSQL_USER",
  176. "displayName": "MySQL Connection Username",
  177. "description": "Username for MySQL user that will be used for accessing the database.",
  178. "generate": "expression",
  179. "from": "user[A-Z0-9]{3}",
  180. "required": true
  181. },
  182. {
  183. "name": "MYSQL_PASSWORD",
  184. "displayName": "MySQL Connection Password",
  185. "description": "Password for the MySQL connection user.",
  186. "generate": "expression",
  187. "from": "[a-zA-Z0-9]{16}",
  188. "required": true
  189. },
  190. {
  191. "name": "MYSQL_DATABASE",
  192. "displayName": "MySQL Database Name",
  193. "description": "Name of the MySQL database accessed.",
  194. "value": "sampledb",
  195. "required": true
  196. },
  197. {
  198. "name": "VOLUME_CAPACITY",
  199. "displayName": "Volume Capacity",
  200. "description": "Volume space available for data, e.g. 512Mi, 2Gi.",
  201. "value": "1Gi",
  202. "required": true
  203. },
  204. {
  205. "name": "MYSQL_VERSION",
  206. "displayName": "Version of MySQL Image",
  207. "description": "Version of MySQL image to be used (5.5, 5.6 or latest).",
  208. "value": "5.6",
  209. "required": true
  210. }
  211. ],
  212. "labels": {
  213. "template": "mysql-persistent-template"
  214. }
  215. }