Fix the comment's ambiguous

Origin commit means volumeMounts.name should match the volume name below, but there's nothing below.
This commit is contained in:
Athurg Feng
2017-11-24 12:13:54 +08:00
committed by GitHub
parent 4c8f3b2996
commit 2aa752dffe
+2 -2
View File
@@ -97,8 +97,8 @@ volumes:
```yaml ```yaml
volumeMounts: volumeMounts:
# name must match the volume name below    # name must match the volume name defined in volumes
- name: redis-persistent-storage    - name: redis-persistent-storage
# mount path within the container # mount path within the container
mountPath: /data/redis mountPath: /data/redis
``` ```