From c34cc634b422d88061e359715ed213b353f3f8c0 Mon Sep 17 00:00:00 2001 From: translucens Date: Thu, 30 Jul 2020 06:59:49 +0900 Subject: [PATCH] Update content/ja/docs/concepts/configuration/secret.md Co-authored-by: makocchi --- content/ja/docs/concepts/configuration/secret.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/ja/docs/concepts/configuration/secret.md b/content/ja/docs/concepts/configuration/secret.md index 200b9b7e24..aa27d7bf15 100644 --- a/content/ja/docs/concepts/configuration/secret.md +++ b/content/ja/docs/concepts/configuration/secret.md @@ -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