+++ title = "Deploy Redis to your Kubernetes cluster" weight = 14 +++ Let's deploy redis in our Kubernetes cluster ```bash kubectl create namespace redis kubectl apply -n redis -f https://bit.ly/k8s-redis ``` **Response** ``` deployment.apps/redis created service/redis created ``` #### Update KongPlugin resource Once this is deployed, let's update our Kong Plugin configuration to use Redis as a data store rather than each Kong node storing the counter information in-memory: ```bash cat <