diff --git a/content/zh-cn/docs/concepts/configuration/secret.md b/content/zh-cn/docs/concepts/configuration/secret.md index 5c0549f1f3..2c5e88c107 100644 --- a/content/zh-cn/docs/concepts/configuration/secret.md +++ b/content/zh-cn/docs/concepts/configuration/secret.md @@ -964,7 +964,7 @@ metadata: spec: containers: - name: test-container - image: k8s.gcr.io/busybox + image: registry.k8s.io/busybox command: [ "/bin/sh", "-c", "env" ] envFrom: - secretRef: @@ -1204,7 +1204,7 @@ kubectl apply -k . Both containers will have the following files present on their filesystems with the values for each container's environment: --> -两个文件都会在其文件系统中出现下面面的文件,文件中内容是各个容器的环境值: +两个文件都会在其文件系统中出现下面的文件,文件中内容是各个容器的环境值: ``` /etc/secret-volume/username @@ -1279,7 +1279,7 @@ spec: secretName: dotfile-secret containers: - name: dotfile-test-container - image: k8s.gcr.io/busybox + image: registry.k8s.io/busybox command: - ls - "-l" @@ -2206,7 +2206,7 @@ Pod 来访问 Secret 的内容。