Skip to content

Commit 59977ad

Browse files
committed
[zh] Update configure-redis-using-configmap.md
1 parent bc36254 commit 59977ad

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

content/zh-cn/docs/tutorials/configuration/configure-redis-using-configmap.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ kubectl apply -f https://raw.githubusercontent.com/kubernetes/website/main/conte
8181
Examine the contents of the Redis pod manifest and note the following:
8282
8383
* A volume named `config` is created by `spec.volumes[1]`
84-
* The `key` and `path` under `spec.volumes[1].items[0]` exposes the `redis-config` key from the
84+
* The `key` and `path` under `spec.volumes[1].configMap.items[0]` exposes the `redis-config` key from the
8585
`example-redis-config` ConfigMap as a file named `redis.conf` on the `config` volume.
8686
* The `config` volume is then mounted at `/redis-master` by `spec.containers[0].volumeMounts[1]`.
8787
@@ -91,7 +91,7 @@ ConfigMap above as `/redis-master/redis.conf` inside the Pod.
9191
检查 Redis pod 清单的内容,并注意以下几点:
9292

9393
*`spec.volumes[1]` 创建一个名为 `config` 的卷。
94-
* `spec.volumes[1].items[0]` 下的 `key``path` 会将来自 `example-redis-config`
94+
* `spec.volumes[1].configMap.items[0]` 下的 `key``path` 会将来自 `example-redis-config`
9595
ConfigMap 中的 `redis-config` 键公开在 `config` 卷上一个名为 `redis.conf` 的文件中。
9696
* 然后 `config` 卷被 `spec.containers[0].volumeMounts[1]` 挂载在 `/redis-master`
9797

0 commit comments

Comments
 (0)