We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 327b402 + f2dc4d2 commit a05a848Copy full SHA for a05a848
content/zh-cn/docs/tasks/configmap-secret/managing-secret-using-kubectl.md
@@ -76,13 +76,13 @@ characters.
76
### 使用源文件
77
78
<!--
79
-1. Store the credentials in files with the values encoded in base64:
+1. Store the credentials in files:
80
-->
81
-1. 对凭证的取值作 base64 编码后保存到文件中:
+1. 将凭据保存到文件:
82
83
```shell
84
- echo -n 'admin' | base64 > ./username.txt
85
- echo -n 'S!B\*d$zDsb=' | base64 > ./password.txt
+ echo -n 'admin' > ./username.txt
+ echo -n 'S!B\*d$zDsb=' > ./password.txt
86
```
87
88
0 commit comments