From 8f0753eb58cfd146cc7b6e068b2f75fafee17f88 Mon Sep 17 00:00:00 2001 From: Marky Jackson Date: Mon, 30 Jul 2018 17:40:38 -0700 Subject: [PATCH] Document update (#9675) Adding a link to redis replicated so users of this example have a better understanding of what redis replicated is --- content/en/docs/tutorials/stateless-application/guestbook.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/en/docs/tutorials/stateless-application/guestbook.md b/content/en/docs/tutorials/stateless-application/guestbook.md index 5779fae8d9..2b22a81942 100644 --- a/content/en/docs/tutorials/stateless-application/guestbook.md +++ b/content/en/docs/tutorials/stateless-application/guestbook.md @@ -10,7 +10,7 @@ weight: 20 This tutorial shows you how to build and deploy a simple, multi-tier web application using Kubernetes and [Docker](https://www.docker.com/). This example consists of the following components: * A single-instance [Redis](https://redis.io/) master to store guestbook entries -* Multiple replicated Redis instances to serve reads +* Multiple [replicated Redis](https://redis.io/topics/replication) instances to serve reads * Multiple web frontend instances {{% /capture %}}