redis-persistent-template.json 9.7 KB

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