Introducing Dragonfly Cloud! Learn More

Question: How to Connect to Redis in Kubernetes?

Answer

To connect to Redis in Kubernetes from your local machine, you need to set up a Redis deployment and service within your cluster, and then use port forwarding to access it. This can be achieved using Kubernetes manifests (YAML files). Following are the steps to create a simple Redis deployment and service, and then access it from your local machine.

  1. Create a Redis Deployment

    Create a YAML file redis-deployment.yaml with the following content:

    apiVersion: apps/v1 kind: Deployment metadata: name: redis spec: selector: matchLabels: app: redis replicas: 1 template: metadata: labels: app: redis spec: containers: - name: redis image: redis:latest ports: - containerPort: 6379
  2. Apply the Deployment

    Run the following command to apply the configuration and create the deployment:

    kubectl apply -f redis-deployment.yaml
  3. Create a Redis Service

    To expose Redis within the cluster, create a YAML file redis-service.yaml with the following content:

    apiVersion: v1 kind: Service metadata: name: redis spec: selector: app: redis ports: - protocol: TCP port: 6379 targetPort: 6379
  4. Apply the Service

    Run the following command to apply the configuration and create the service:

    kubectl apply -f redis-service.yaml
  5. Port Forwarding to Access Redis Locally

    Use the following command to forward the port from your local machine to the Redis service running in the Kubernetes cluster:

    kubectl port-forward svc/redis 6379:6379

    This will make Redis accessible on localhost:6379 from your local machine.

  6. Access Redis from Your Local Machine

    Now that Redis is accessible locally through port forwarding, you can connect to it using your preferred client. Here's an example using Python with the redis library:

    import redis # Connect to Redis r = redis.Redis(host='localhost', port=6379) # Set a key-value pair r.set('my_key', 'Hello, Redis!') # Get the value of the key value = r.get('my_key') print(value.decode('utf-8'))

By following these steps, you have successfully connected to Redis in Kubernetes from your local machine.

Was this content helpful?

White Paper

Free System Design on AWS E-Book

Download this early release of O'Reilly's latest cloud infrastructure e-book: System Design on AWS.

Free System Design on AWS E-Book

Start building today 

Dragonfly is fully compatible with the Redis ecosystem and requires no code changes to implement.