redis-ephemeral-template.json 9.1 KB

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