Merge pull request #33465 from koep/redis_doc

Automatic merge from submit-queue

Fix typo in redis example

This fixes a small typo in the redis example documentation.
This commit is contained in:
Kubernetes Submit Queue 2016-09-26 23:12:50 -07:00 committed by GitHub
commit ad864cd752

View File

@ -48,7 +48,7 @@ This is a somewhat long tutorial. If you want to jump straight to the "do it no
A [_Pod_](../../../docs/user-guide/pods.md) is one or more containers that _must_ be scheduled onto the same host. All containers in a pod share a network namespace, and may optionally share mounted volumes.
We will used the shared network namespace to bootstrap our Redis cluster. In particular, the very first sentinel needs to know how to find the master (subsequent sentinels just ask the first sentinel). Because all containers in a Pod share a network namespace, the sentinel can simply look at ```$(hostname -i):6379```.
We will use the shared network namespace to bootstrap our Redis cluster. In particular, the very first sentinel needs to know how to find the master (subsequent sentinels just ask the first sentinel). Because all containers in a Pod share a network namespace, the sentinel can simply look at ```$(hostname -i):6379```.
Here is the config for the initial master and sentinel pod: [redis-master.yaml](redis-master.yaml)