redis-persistent-template.json 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240
  1. {
  2. "kind": "Template",
  3. "apiVersion": "v1",
  4. "metadata": {
  5. "name": "redis-persistent",
  6. "annotations": {
  7. "openshift.io/display-name": "Redis (Persistent)",
  8. "description": "Redis in-memory data structure store, with persistent storage. For more information about using this template, including OpenShift considerations, see https://github.com/sclorg/redis-container/blob/master/3.2.\n\nNOTE: You must have persistent volumes available in your cluster to use this template.",
  9. "iconClass": "icon-redis",
  10. "tags": "database,redis",
  11. "openshift.io/long-description": "This template provides a standalone Redis server. The data is stored on persistent storage.",
  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-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-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": "PersistentVolumeClaim",
  66. "apiVersion": "v1",
  67. "metadata": {
  68. "name": "${DATABASE_SERVICE_NAME}"
  69. },
  70. "spec": {
  71. "accessModes": [
  72. "ReadWriteOnce"
  73. ],
  74. "resources": {
  75. "requests": {
  76. "storage": "${VOLUME_CAPACITY}"
  77. }
  78. }
  79. }
  80. },
  81. {
  82. "kind": "DeploymentConfig",
  83. "apiVersion": "v1",
  84. "metadata": {
  85. "name": "${DATABASE_SERVICE_NAME}",
  86. "annotations": {
  87. "template.alpha.openshift.io/wait-for-ready": "true"
  88. }
  89. },
  90. "spec": {
  91. "strategy": {
  92. "type": "Recreate"
  93. },
  94. "triggers": [
  95. {
  96. "type": "ImageChange",
  97. "imageChangeParams": {
  98. "automatic": true,
  99. "containerNames": [
  100. "redis"
  101. ],
  102. "from": {
  103. "kind": "ImageStreamTag",
  104. "name": "redis:${REDIS_VERSION}",
  105. "namespace": "${NAMESPACE}"
  106. },
  107. "lastTriggeredImage": ""
  108. }
  109. },
  110. {
  111. "type": "ConfigChange"
  112. }
  113. ],
  114. "replicas": 1,
  115. "selector": {
  116. "name": "${DATABASE_SERVICE_NAME}"
  117. },
  118. "template": {
  119. "metadata": {
  120. "labels": {
  121. "name": "${DATABASE_SERVICE_NAME}"
  122. }
  123. },
  124. "spec": {
  125. "containers": [
  126. {
  127. "name": "redis",
  128. "image": " ",
  129. "ports": [
  130. {
  131. "containerPort": 6379,
  132. "protocol": "TCP"
  133. }
  134. ],
  135. "readinessProbe": {
  136. "timeoutSeconds": 1,
  137. "initialDelaySeconds": 5,
  138. "exec": {
  139. "command": [ "/bin/sh", "-i", "-c", "test \"$(redis-cli -h 127.0.0.1 -a $REDIS_PASSWORD ping)\" == \"PONG\""]
  140. }
  141. },
  142. "livenessProbe": {
  143. "timeoutSeconds": 1,
  144. "initialDelaySeconds": 30,
  145. "tcpSocket": {
  146. "port": 6379
  147. }
  148. },
  149. "env": [
  150. {
  151. "name": "REDIS_PASSWORD",
  152. "valueFrom": {
  153. "secretKeyRef" : {
  154. "name" : "${DATABASE_SERVICE_NAME}",
  155. "key" : "database-password"
  156. }
  157. }
  158. }
  159. ],
  160. "resources": {
  161. "limits": {
  162. "memory": "${MEMORY_LIMIT}"
  163. }
  164. },
  165. "volumeMounts": [
  166. {
  167. "name": "${DATABASE_SERVICE_NAME}-data",
  168. "mountPath": "/var/lib/redis/data"
  169. }
  170. ],
  171. "terminationMessagePath": "/dev/termination-log",
  172. "imagePullPolicy": "IfNotPresent",
  173. "capabilities": {},
  174. "securityContext": {
  175. "capabilities": {},
  176. "privileged": false
  177. }
  178. }
  179. ],
  180. "volumes": [
  181. {
  182. "name": "${DATABASE_SERVICE_NAME}-data",
  183. "persistentVolumeClaim": {
  184. "claimName": "${DATABASE_SERVICE_NAME}"
  185. }
  186. }
  187. ],
  188. "restartPolicy": "Always",
  189. "dnsPolicy": "ClusterFirst"
  190. }
  191. }
  192. },
  193. "status": {}
  194. }
  195. ],
  196. "parameters": [
  197. {
  198. "name": "MEMORY_LIMIT",
  199. "displayName": "Memory Limit",
  200. "description": "Maximum amount of memory the container can use.",
  201. "value": "512Mi",
  202. "required": true
  203. },
  204. {
  205. "name": "NAMESPACE",
  206. "displayName": "Namespace",
  207. "description": "The OpenShift Namespace where the ImageStream resides.",
  208. "value": "openshift"
  209. },
  210. {
  211. "name": "DATABASE_SERVICE_NAME",
  212. "displayName": "Database Service Name",
  213. "description": "The name of the OpenShift Service exposed for the database.",
  214. "value": "redis",
  215. "required": true
  216. },
  217. {
  218. "name": "REDIS_PASSWORD",
  219. "displayName": "Redis Connection Password",
  220. "description": "Password for the Redis connection user.",
  221. "generate": "expression",
  222. "from": "[a-zA-Z0-9]{16}",
  223. "required": true
  224. },
  225. {
  226. "name": "VOLUME_CAPACITY",
  227. "displayName": "Volume Capacity",
  228. "description": "Volume space available for data, e.g. 512Mi, 2Gi.",
  229. "value": "1Gi",
  230. "required": true
  231. },
  232. {
  233. "name": "REDIS_VERSION",
  234. "displayName": "Version of Redis Image",
  235. "description": "Version of Redis image to be used (3.2 or latest).",
  236. "value": "3.2",
  237. "required": true
  238. }
  239. ]
  240. }