v1.0
Managed Kubernetes
K8s Basics
PMK Onboarding
Networking / Ingress
Storage
Automating PMK
Troubleshooting

Redis Cache Guestbook

During the last tutorials, we’ve explored the Platform9 Managed Kubernetes Dashboard, created some clusters and installed some example applications.

In this tutorial, we are going to expand our examples by deploying a more complex microservice. The idea is to make you more comfortable with the platform and to show you how you can leverage it for more advanced scenarios.

In this example, we are going to see the deployment of:

  • A Redis master
  • Multiple Redis slaves
  • A sample guestbook application that uses Redis as a store

We assume that you have already set up a Platform9 cluster with at least one node, and the cluster is ready.

Let’s start with the Redis parts.

Deploying and exposing a Redis Cluster

Redis is a key-value in-memory store that is used mainly as a cache service. To set up Clustering for Data Replication, we need a Redis instance that acts as Master, together with additional instances as slaves. Then the guestbook application can use this instance to store data. The Redis master will propagate the writes to the slave nodes.

We can initiate a Redis Master deployment in a few different ways: either using the kubectl tool, the Platform9 UI or the Kubernetes UI. For convenience, we use the kubectl tool as it’s the most commonly understood in tutorials.

First, we need to create a Redis Cluster Deployment. Looking at their documentation here, to set up a cluster, we need some configuration properties. We can leverage kubernetes configmaps to store and reference them in the deployment spec.

We need to save a script and a redis.conf file that is going to be used to configure the master and slave nodes.

Create redis-cluster.config.yml file with the following configuration:

YAML
Copy

We define a script that will insert an IP value to the node.conf file. This is to fix an issue with Redis as referenced here. We use this script every time we deploy a new Redis image.

Then, we have the redis.conf, which applies the minimal cluster configuration.

Apply this spec into the cluster:

Shell
Copy

Then verify that it exists in the list of configmaps:

Shell
Copy

Next, we need to define a spec for the Redis cluster instances. We can use a Deployment or a StatefulSet to define three (3) instances:

Here is the spec:

redis-cluster.statefulset.yml

YAML
Copy

In the above step, we defined a few things:

  • The environment variable IP we need in the update-ip.sh script that we defined in the configmap earlier. This is the pod-specific IP address using the Downward API.
  • Some shared volumes including the configmap that we defined earlier.
  • Two container ports (6379 and 16379) for the gossip protocol.

With this spec, we can deploy the Redis cluster instances:

Shell
Copy

Once we have the deployment ready, we need to perform the last step, which is bootstrapping the cluster. Consulting the documentation here for creating the cluster, we need to ssh into one of the instances and run the redis-cli cluster create command. For example, taken from the docs:

Shell
Copy

To do that in our case, we need to get the local pod IPs of the instances and feed them to that command.

We can query the IP using this command:

Shell
Copy

So, if we save them in a variable or a file, we can pipe them at the end of the redis-cli command:

Shell
Copy

Then, we can run the following command:

Shell
Copy

If everything is OK, you will see the following prompt. Enter yes to accept and continue:

Shell
Copy

Then, we can verify the cluster state by running the cluster infocommand:

Shell
Copy

Before we continue deploying the guestbook app, we need to offer a unified service frontend for the Redis Cluster so that it’s easily discoverable in the cluster.

Here is the service spec:

redis-cluster.service.yml

YAML
Copy

We expose the cluster as redis-master here, as the guestbook app will be looking for a host service to connect to with that name.

Once we apply this service spec, we can move on to deploying and exposing the Guestbook Application:

Shell
Copy

Deploying and exposing a GuestBook Application

The guestbook application is a simple PHP script that shows a form to submit a message. Initially, it will attempt to connect to either the redis-master host or the redis-slave hosts. It needs the GET_HOSTS_FROM environment variable set pointing to the file with the following variables:

  • REDIS_MASTER_SERVICE_HOST: of the master
  • REDIS_SLAVE_SERVICE_HOST: of the slave

First, let’s define the deployment spec:

php-guestbook.deployment.yml

YAML
Copy

The code of the gb-frontend image is located here.

Next is the the associated service spec:

YAML
Copy

Note: NodePort will assign a random port over the public IP of the Node. In either case, we get a public host:port pair where we can inspect the application.

Here is a screenshot of the app after we deployed it:

Cleaning up

Once we have finished experimenting with the application, we can clean up the resources and all the servers by issuing kubectl delete statements. A convenient way is to delete using labels. For example:

Shell
Copy
  Last updated