Skip to content

Commit

Permalink
Merge pull request kubernetes#44852 from Arhell/zh-con
Browse files Browse the repository at this point in the history
[zh] Update configure-redis-using-configmap.md
  • Loading branch information
k8s-ci-robot authored Jan 23, 2024
2 parents ab8185a + 59977ad commit 64be1cc
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ kubectl apply -f https://raw.githubusercontent.com/kubernetes/website/main/conte
Examine the contents of the Redis pod manifest and note the following:
* A volume named `config` is created by `spec.volumes[1]`
* The `key` and `path` under `spec.volumes[1].items[0]` exposes the `redis-config` key from the
* The `key` and `path` under `spec.volumes[1].configMap.items[0]` exposes the `redis-config` key from the
`example-redis-config` ConfigMap as a file named `redis.conf` on the `config` volume.
* The `config` volume is then mounted at `/redis-master` by `spec.containers[0].volumeMounts[1]`.
Expand All @@ -91,7 +91,7 @@ ConfigMap above as `/redis-master/redis.conf` inside the Pod.
检查 Redis pod 清单的内容,并注意以下几点:

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

Expand Down

0 comments on commit 64be1cc

Please sign in to comment.