Update content/ja/docs/concepts/configuration/secret.md

Co-authored-by: makocchi <makocchi@gmail.com>
This commit is contained in:
translucens
2020-07-30 06:59:49 +09:00
committed by GitHub
parent c944e3aedb
commit c34cc634b4
@@ -56,7 +56,7 @@ echo -n '1f2d1e2e67df' > ./password.txt
```
`kubectl create secret`コマンドはそれらのファイルをSecretに格納して、APIサーバー上でオブジェクトを作成します。
Secretオブジェクトの名称は正当な[DNSサブドメイン名](/docs/concepts/overview/working-with-objects/names#dns-subdomain-names)である必要があります。
Secretオブジェクトの名称は正当な[DNSサブドメイン名](/ja/docs/concepts/overview/working-with-objects/names/#dns-subdomain-names)である必要があります。
```shell
kubectl create secret generic db-user-pass --from-file=./username.txt --from-file=./password.txt