mysql-ephemeral-template.json 12 KB

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