mysql-persistent-template.json 9.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278
  1. {
  2. "kind": "Template",
  3. "apiVersion": "v1",
  4. "metadata": {
  5. "name": "mysql-persistent",
  6. "annotations": {
  7. "openshift.io/display-name": "MySQL (Persistent)",
  8. "description": "MySQL database service, with 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\nNOTE: Scaling to more than one replica is not supported. You must have persistent volumes available in your cluster to use this template.",
  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 stored on persistent storage. 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-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==\"mysql\")].port}"
  48. }
  49. },
  50. "spec": {
  51. "ports": [
  52. {
  53. "name": "mysql",
  54. "port": 3306
  55. }
  56. ],
  57. "selector": {
  58. "name": "${DATABASE_SERVICE_NAME}"
  59. }
  60. }
  61. },
  62. {
  63. "kind": "PersistentVolumeClaim",
  64. "apiVersion": "v1",
  65. "metadata": {
  66. "name": "${DATABASE_SERVICE_NAME}"
  67. },
  68. "spec": {
  69. "accessModes": [
  70. "ReadWriteOnce"
  71. ],
  72. "resources": {
  73. "requests": {
  74. "storage": "${VOLUME_CAPACITY}"
  75. }
  76. }
  77. }
  78. },
  79. {
  80. "kind": "DeploymentConfig",
  81. "apiVersion": "v1",
  82. "metadata": {
  83. "name": "${DATABASE_SERVICE_NAME}",
  84. "annotations": {
  85. "template.alpha.openshift.io/wait-for-ready": "true"
  86. }
  87. },
  88. "spec": {
  89. "strategy": {
  90. "type": "Recreate"
  91. },
  92. "triggers": [
  93. {
  94. "type": "ImageChange",
  95. "imageChangeParams": {
  96. "automatic": true,
  97. "containerNames": [
  98. "mysql"
  99. ],
  100. "from": {
  101. "kind": "ImageStreamTag",
  102. "name": "mysql:${MYSQL_VERSION}",
  103. "namespace": "${NAMESPACE}"
  104. }
  105. }
  106. },
  107. {
  108. "type": "ConfigChange"
  109. }
  110. ],
  111. "replicas": 1,
  112. "selector": {
  113. "name": "${DATABASE_SERVICE_NAME}"
  114. },
  115. "template": {
  116. "metadata": {
  117. "labels": {
  118. "name": "${DATABASE_SERVICE_NAME}"
  119. }
  120. },
  121. "spec": {
  122. "containers": [
  123. {
  124. "name": "mysql",
  125. "image": " ",
  126. "ports": [
  127. {
  128. "containerPort": 3306
  129. }
  130. ],
  131. "readinessProbe": {
  132. "timeoutSeconds": 1,
  133. "initialDelaySeconds": 5,
  134. "exec": {
  135. "command": [ "/bin/sh", "-i", "-c",
  136. "MYSQL_PWD=\"$MYSQL_PASSWORD\" mysql -h 127.0.0.1 -u $MYSQL_USER -D $MYSQL_DATABASE -e 'SELECT 1'"]
  137. }
  138. },
  139. "livenessProbe": {
  140. "timeoutSeconds": 1,
  141. "initialDelaySeconds": 30,
  142. "tcpSocket": {
  143. "port": 3306
  144. }
  145. },
  146. "env": [
  147. {
  148. "name": "MYSQL_USER",
  149. "valueFrom": {
  150. "secretKeyRef" : {
  151. "name" : "${DATABASE_SERVICE_NAME}",
  152. "key" : "database-user"
  153. }
  154. }
  155. },
  156. {
  157. "name": "MYSQL_PASSWORD",
  158. "valueFrom": {
  159. "secretKeyRef" : {
  160. "name" : "${DATABASE_SERVICE_NAME}",
  161. "key" : "database-password"
  162. }
  163. }
  164. },
  165. {
  166. "name": "MYSQL_ROOT_PASSWORD",
  167. "valueFrom": {
  168. "secretKeyRef" : {
  169. "name" : "${DATABASE_SERVICE_NAME}",
  170. "key" : "database-root-password"
  171. }
  172. }
  173. },
  174. {
  175. "name": "MYSQL_DATABASE",
  176. "valueFrom": {
  177. "secretKeyRef" : {
  178. "name" : "${DATABASE_SERVICE_NAME}",
  179. "key" : "database-name"
  180. }
  181. }
  182. }
  183. ],
  184. "resources": {
  185. "limits": {
  186. "memory": "${MEMORY_LIMIT}"
  187. }
  188. },
  189. "volumeMounts": [
  190. {
  191. "name": "${DATABASE_SERVICE_NAME}-data",
  192. "mountPath": "/var/lib/mysql/data"
  193. }
  194. ],
  195. "imagePullPolicy": "IfNotPresent"
  196. }
  197. ],
  198. "volumes": [
  199. {
  200. "name": "${DATABASE_SERVICE_NAME}-data",
  201. "persistentVolumeClaim": {
  202. "claimName": "${DATABASE_SERVICE_NAME}"
  203. }
  204. }
  205. ]
  206. }
  207. }
  208. }
  209. }
  210. ],
  211. "parameters": [
  212. {
  213. "name": "MEMORY_LIMIT",
  214. "displayName": "Memory Limit",
  215. "description": "Maximum amount of memory the container can use.",
  216. "value": "512Mi",
  217. "required": true
  218. },
  219. {
  220. "name": "NAMESPACE",
  221. "displayName": "Namespace",
  222. "description": "The OpenShift Namespace where the ImageStream resides.",
  223. "value": "openshift"
  224. },
  225. {
  226. "name": "DATABASE_SERVICE_NAME",
  227. "displayName": "Database Service Name",
  228. "description": "The name of the OpenShift Service exposed for the database.",
  229. "value": "mysql",
  230. "required": true
  231. },
  232. {
  233. "name": "MYSQL_USER",
  234. "displayName": "MySQL Connection Username",
  235. "description": "Username for MySQL user that will be used for accessing the database.",
  236. "generate": "expression",
  237. "from": "user[A-Z0-9]{3}",
  238. "required": true
  239. },
  240. {
  241. "name": "MYSQL_PASSWORD",
  242. "displayName": "MySQL Connection Password",
  243. "description": "Password for the MySQL connection user.",
  244. "generate": "expression",
  245. "from": "[a-zA-Z0-9]{16}",
  246. "required": true
  247. },
  248. {
  249. "name": "MYSQL_ROOT_PASSWORD",
  250. "displayName": "MySQL root user Password",
  251. "description": "Password for the MySQL root user.",
  252. "generate": "expression",
  253. "from": "[a-zA-Z0-9]{16}",
  254. "required": true
  255. },
  256. {
  257. "name": "MYSQL_DATABASE",
  258. "displayName": "MySQL Database Name",
  259. "description": "Name of the MySQL database accessed.",
  260. "value": "sampledb",
  261. "required": true
  262. },
  263. {
  264. "name": "VOLUME_CAPACITY",
  265. "displayName": "Volume Capacity",
  266. "description": "Volume space available for data, e.g. 512Mi, 2Gi.",
  267. "value": "1Gi",
  268. "required": true
  269. },
  270. {
  271. "name": "MYSQL_VERSION",
  272. "displayName": "Version of MySQL Image",
  273. "description": "Version of MySQL image to be used (5.5, 5.6, 5.7, or latest).",
  274. "value": "5.7",
  275. "required": true
  276. }
  277. ]
  278. }