{
	"kind": "Template",
	"apiVersion": "template.openshift.io/v1",
	"metadata": {
		"name": "redis-ephemeral",
		"creationTimestamp": null,
		"annotations": {
			"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/5.\n\nWARNING: Any data stored will be lost upon pod destruction. Only use this template for testing",
			"iconClass": "icon-redis",
			"openshift.io/display-name": "Redis (Ephemeral)",
			"openshift.io/documentation-url": "https://github.com/sclorg/redis-container/tree/master/5",
			"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.",
			"openshift.io/provider-display-name": "Red Hat, Inc.",
			"openshift.io/support-url": "https://access.redhat.com",
			"tags": "database,redis"
		}
	},
	"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/5.",
	"objects": [
		{
			"apiVersion": "v1",
			"kind": "Secret",
			"metadata": {
				"annotations": {
					"template.openshift.io/expose-password": "{.data['database-password']}"
				},
				"name": "${DATABASE_SERVICE_NAME}"
			},
			"stringData": {
				"database-password": "${REDIS_PASSWORD}"
			}
		},
		{
			"apiVersion": "v1",
			"kind": "Service",
			"metadata": {
				"annotations": {
					"template.openshift.io/expose-uri": "redis://{.spec.clusterIP}:{.spec.ports[?(.name==\"redis\")].port}"
				},
				"name": "${DATABASE_SERVICE_NAME}"
			},
			"spec": {
				"ports": [
					{
						"name": "redis",
						"nodePort": 0,
						"port": 6379,
						"protocol": "TCP",
						"targetPort": 6379
					}
				],
				"selector": {
					"name": "${DATABASE_SERVICE_NAME}"
				},
				"sessionAffinity": "None",
				"type": "ClusterIP"
			},
			"status": {
				"loadBalancer": {}
			}
		},
		{
			"apiVersion": "apps/v1",
			"kind": "Deployment",
			"metadata": {
				"annotations": {
					"image.openshift.io/triggers": "[{\"from\":{\"kind\":\"ImageStreamTag\",\"name\":\"redis:${REDIS_VERSION}\"},\"fieldPath\": \"spec.template.spec.containers[0].image\"}]",
					"template.alpha.openshift.io/wait-for-ready": "true"
				},
				"name": "${DATABASE_SERVICE_NAME}"
			},
			"spec": {
				"replicas": 1,
				"selector": {
					"matchLabels": {
						"name": "${DATABASE_SERVICE_NAME}"
					}
				},
				"strategy": {
					"type": "Recreate"
				},
				"template": {
					"metadata": {
						"labels": {
							"name": "${DATABASE_SERVICE_NAME}"
						}
					},
					"spec": {
						"containers": [
							{
								"capabilities": {},
								"env": [
									{
										"name": "REDIS_PASSWORD",
										"valueFrom": {
											"secretKeyRef": {
												"key": "database-password",
												"name": "${DATABASE_SERVICE_NAME}"
											}
										}
									}
								],
								"image": " ",
								"imagePullPolicy": "IfNotPresent",
								"livenessProbe": {
									"initialDelaySeconds": 30,
									"tcpSocket": {
										"port": 6379
									},
									"timeoutSeconds": 1
								},
								"name": "redis",
								"ports": [
									{
										"containerPort": 6379,
										"protocol": "TCP"
									}
								],
								"readinessProbe": {
									"exec": {
										"command": [
											"/bin/sh",
											"-i",
											"-c",
											"test \"$(redis-cli -h 127.0.0.1 -a $REDIS_PASSWORD ping)\" == \"PONG\""
										]
									},
									"initialDelaySeconds": 5,
									"timeoutSeconds": 1
								},
								"resources": {
									"limits": {
										"memory": "${MEMORY_LIMIT}"
									}
								},
								"securityContext": {
									"capabilities": {},
									"privileged": false
								},
								"terminationMessagePath": "/dev/termination-log",
								"volumeMounts": [
									{
										"mountPath": "/var/lib/redis/data",
										"name": "${DATABASE_SERVICE_NAME}-data"
									}
								]
							}
						],
						"dnsPolicy": "ClusterFirst",
						"restartPolicy": "Always",
						"volumes": [
							{
								"emptyDir": {
									"medium": ""
								},
								"name": "${DATABASE_SERVICE_NAME}-data"
							}
						]
					}
				}
			},
			"status": {}
		}
	],
	"parameters": [
		{
			"name": "MEMORY_LIMIT",
			"displayName": "Memory Limit",
			"description": "Maximum amount of memory the container can use.",
			"value": "512Mi",
			"required": true
		},
		{
			"name": "NAMESPACE",
			"displayName": "Namespace",
			"description": "The OpenShift Namespace where the ImageStream resides.",
			"value": "openshift"
		},
		{
			"name": "DATABASE_SERVICE_NAME",
			"displayName": "Database Service Name",
			"description": "The name of the OpenShift Service exposed for the database.",
			"value": "redis",
			"required": true
		},
		{
			"name": "REDIS_PASSWORD",
			"displayName": "Redis Connection Password",
			"description": "Password for the Redis connection user.",
			"generate": "expression",
			"from": "[a-zA-Z0-9]{16}",
			"required": true
		},
		{
			"name": "REDIS_VERSION",
			"displayName": "Version of Redis Image",
			"description": "Version of Redis image to be used (5-el7, 5-el8, 6-el7, 6-el8, or latest).",
			"value": "6-el8",
			"required": true
		}
	],
	"labels": {
		"template": "redis-ephemeral-template"
	}
}