From fa37bff9de428c2baed0211ebdf1353d154011c0 Mon Sep 17 00:00:00 2001 From: Vladimir Rutsky Date: Fri, 5 Feb 2016 18:05:58 +0300 Subject: [PATCH] fix list enumeration Right now list items are rendered as "1.", "1." instead of "1.", "2.", see http://kubernetes.io/v1.1/docs/user-guide/walkthrough/README.html#volumes --- docs/user-guide/walkthrough/README.md | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/docs/user-guide/walkthrough/README.md b/docs/user-guide/walkthrough/README.md index fa22775ef18..dd8c25d76e9 100644 --- a/docs/user-guide/walkthrough/README.md +++ b/docs/user-guide/walkthrough/README.md @@ -129,21 +129,21 @@ For this example we'll be creating a Redis pod with a named volume and volume mo 1. Define a volume: - ```yaml - volumes: - - name: redis-persistent-storage - emptyDir: {} - ``` + ```yaml + volumes: + - name: redis-persistent-storage + emptyDir: {} + ``` 2. Define a volume mount within a container definition: - ```yaml - volumeMounts: - # name must match the volume name below - - name: redis-persistent-storage - # mount path within the container - mountPath: /data/redis - ``` + ```yaml + volumeMounts: + # name must match the volume name below + - name: redis-persistent-storage + # mount path within the container + mountPath: /data/redis + ``` Example Redis pod definition with a persistent storage volume ([pod-redis.yaml](pod-redis.yaml)):