diff --git a/content/zh/docs/tasks/configure-pod-container/configure-projected-volume-storage.md b/content/zh/docs/tasks/configure-pod-container/configure-projected-volume-storage.md index d0ff476b38..66230434d9 100644 --- a/content/zh/docs/tasks/configure-pod-container/configure-projected-volume-storage.md +++ b/content/zh/docs/tasks/configure-pod-container/configure-projected-volume-storage.md @@ -59,7 +59,7 @@ Here is the configuration file for the Pod: ```shell # 创建包含用户名和密码的文件: echo -n "admin" > ./username.txt - echo -n "1f2d1e2e67df" > ./password.txt--> + echo -n "1f2d1e2e67df" > ./password.txt # 将上述文件引用到 Secret: kubectl create secret generic user --from-file=./username.txt