redis-ephemeral-template.json 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216
  1. {
  2. "kind": "Template",
  3. "apiVersion": "v1",
  4. "metadata": {
  5. "name": "redis-ephemeral",
  6. "annotations": {
  7. "openshift.io/display-name": "Redis (Ephemeral)",
  8. "description": "Redis in-memory data structure store, without persistent storage. For more information about using this template, including OpenShift considerations, see https://github.com/sclorg/redis-container/blob/master/3.2.\n\nWARNING: Any data stored will be lost upon pod destruction. Only use this template for testing",
  9. "iconClass": "icon-redis",
  10. "tags": "database,redis",
  11. "openshift.io/long-description": "This template provides a standalone Redis server. The data is not stored on persistent storage, so any restart of the service will result in all data being lost.",
  12. "openshift.io/provider-display-name": "Red Hat, Inc.",
  13. "openshift.io/documentation-url": "https://github.com/sclorg/redis-container/tree/master/3.2",
  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 Password: ${REDIS_PASSWORD}\n Connection URL: redis://${DATABASE_SERVICE_NAME}:6379/\n\nFor more information about using this template, including OpenShift considerations, see https://github.com/sclorg/redis-container/blob/master/3.2.",
  18. "labels": {
  19. "template": "redis-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-password": "{.data['database-password']}"
  29. }
  30. },
  31. "stringData" : {
  32. "database-password" : "${REDIS_PASSWORD}"
  33. }
  34. },
  35. {
  36. "kind": "Service",
  37. "apiVersion": "v1",
  38. "metadata": {
  39. "name": "${DATABASE_SERVICE_NAME}",
  40. "annotations": {
  41. "template.openshift.io/expose-uri": "redis://{.spec.clusterIP}:{.spec.ports[?(.name==\"redis\")].port}"
  42. }
  43. },
  44. "spec": {
  45. "ports": [
  46. {
  47. "name": "redis",
  48. "protocol": "TCP",
  49. "port": 6379,
  50. "targetPort": 6379,
  51. "nodePort": 0
  52. }
  53. ],
  54. "selector": {
  55. "name": "${DATABASE_SERVICE_NAME}"
  56. },
  57. "type": "ClusterIP",
  58. "sessionAffinity": "None"
  59. },
  60. "status": {
  61. "loadBalancer": {}
  62. }
  63. },
  64. {
  65. "kind": "DeploymentConfig",
  66. "apiVersion": "v1",
  67. "metadata": {
  68. "name": "${DATABASE_SERVICE_NAME}",
  69. "annotations": {
  70. "template.alpha.openshift.io/wait-for-ready": "true"
  71. }
  72. },
  73. "spec": {
  74. "strategy": {
  75. "type": "Recreate"
  76. },
  77. "triggers": [
  78. {
  79. "type": "ImageChange",
  80. "imageChangeParams": {
  81. "automatic": true,
  82. "containerNames": [
  83. "redis"
  84. ],
  85. "from": {
  86. "kind": "ImageStreamTag",
  87. "name": "redis:${REDIS_VERSION}",
  88. "namespace": "${NAMESPACE}"
  89. },
  90. "lastTriggeredImage": ""
  91. }
  92. },
  93. {
  94. "type": "ConfigChange"
  95. }
  96. ],
  97. "replicas": 1,
  98. "selector": {
  99. "name": "${DATABASE_SERVICE_NAME}"
  100. },
  101. "template": {
  102. "metadata": {
  103. "labels": {
  104. "name": "${DATABASE_SERVICE_NAME}"
  105. }
  106. },
  107. "spec": {
  108. "containers": [
  109. {
  110. "name": "redis",
  111. "image": " ",
  112. "ports": [
  113. {
  114. "containerPort": 6379,
  115. "protocol": "TCP"
  116. }
  117. ],
  118. "readinessProbe": {
  119. "timeoutSeconds": 1,
  120. "initialDelaySeconds": 5,
  121. "exec": {
  122. "command": [ "/bin/sh", "-i", "-c", "test \"$(redis-cli -h 127.0.0.1 -a $REDIS_PASSWORD ping)\" == \"PONG\""]
  123. }
  124. },
  125. "livenessProbe": {
  126. "timeoutSeconds": 1,
  127. "initialDelaySeconds": 30,
  128. "tcpSocket": {
  129. "port": 6379
  130. }
  131. },
  132. "env": [
  133. {
  134. "name": "REDIS_PASSWORD",
  135. "valueFrom": {
  136. "secretKeyRef" : {
  137. "name" : "${DATABASE_SERVICE_NAME}",
  138. "key" : "database-password"
  139. }
  140. }
  141. }
  142. ],
  143. "resources": {
  144. "limits": {
  145. "memory": "${MEMORY_LIMIT}"
  146. }
  147. },
  148. "volumeMounts": [
  149. {
  150. "name": "${DATABASE_SERVICE_NAME}-data",
  151. "mountPath": "/var/lib/redis/data"
  152. }
  153. ],
  154. "terminationMessagePath": "/dev/termination-log",
  155. "imagePullPolicy": "IfNotPresent",
  156. "capabilities": {},
  157. "securityContext": {
  158. "capabilities": {},
  159. "privileged": false
  160. }
  161. }
  162. ],
  163. "volumes": [
  164. {
  165. "name": "${DATABASE_SERVICE_NAME}-data",
  166. "emptyDir": {
  167. "medium": ""
  168. }
  169. }
  170. ],
  171. "restartPolicy": "Always",
  172. "dnsPolicy": "ClusterFirst"
  173. }
  174. }
  175. },
  176. "status": {}
  177. }
  178. ],
  179. "parameters": [
  180. {
  181. "name": "MEMORY_LIMIT",
  182. "displayName": "Memory Limit",
  183. "description": "Maximum amount of memory the container can use.",
  184. "value": "512Mi",
  185. "required": true
  186. },
  187. {
  188. "name": "NAMESPACE",
  189. "displayName": "Namespace",
  190. "description": "The OpenShift Namespace where the ImageStream resides.",
  191. "value": "openshift"
  192. },
  193. {
  194. "name": "DATABASE_SERVICE_NAME",
  195. "displayName": "Database Service Name",
  196. "description": "The name of the OpenShift Service exposed for the database.",
  197. "value": "redis",
  198. "required": true
  199. },
  200. {
  201. "name": "REDIS_PASSWORD",
  202. "displayName": "Redis Connection Password",
  203. "description": "Password for the Redis connection user.",
  204. "generate": "expression",
  205. "from": "[a-zA-Z0-9]{16}",
  206. "required": true
  207. },
  208. {
  209. "name": "REDIS_VERSION",
  210. "displayName": "Version of Redis Image",
  211. "description": "Version of Redis image to be used (3.2 or latest).",
  212. "value": "3.2",
  213. "required": true
  214. }
  215. ]
  216. }