From 2aa752dffe2cdd3a7baa9ed9d64f6e66e3e640ff Mon Sep 17 00:00:00 2001 From: Athurg Feng Date: Fri, 24 Nov 2017 12:13:54 +0800 Subject: [PATCH] Fix the comment's ambiguous Origin commit means volumeMounts.name should match the volume name below, but there's nothing below. --- docs/user-guide/walkthrough/index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/user-guide/walkthrough/index.md b/docs/user-guide/walkthrough/index.md index c456638dac..20fd482271 100644 --- a/docs/user-guide/walkthrough/index.md +++ b/docs/user-guide/walkthrough/index.md @@ -97,8 +97,8 @@ volumes: ```yaml volumeMounts: - # name must match the volume name below - - name: redis-persistent-storage +    # name must match the volume name defined in volumes +    - name: redis-persistent-storage # mount path within the container mountPath: /data/redis ```