From ad6896c1c092a8a6147e9113a5ba5255e311271f Mon Sep 17 00:00:00 2001 From: lethe2211 Date: Sat, 28 Nov 2020 11:08:05 +0900 Subject: [PATCH] Fix Japanese translation of "Interpreted" in reference/kubectl/jsonpath --- content/ja/docs/reference/kubectl/jsonpath.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/ja/docs/reference/kubectl/jsonpath.md b/content/ja/docs/reference/kubectl/jsonpath.md index e1f5240286..17582b8776 100644 --- a/content/ja/docs/reference/kubectl/jsonpath.md +++ b/content/ja/docs/reference/kubectl/jsonpath.md @@ -75,7 +75,7 @@ kubectlでは、JSONPathの式を使うことで、JSONオブジェクトの特 `[,]` | 和集合 | `{.items[*]['metadata.name', 'status.capacity']}` | `127.0.0.1 127.0.0.2 map[cpu:4] map[cpu:8]` `?()` | フィルター | `{.users[?(@.name=="e2e")].user.password}` | `secret` `range`, `end` | リストの反復 | `{range .items[*]}[{.metadata.name}, {.status.capacity}] {end}` | `[127.0.0.1, map[cpu:4]] [127.0.0.2, map[cpu:8]]` -`''` | (解釈済みの)文字列をクォートする | `{range .items[*]}{.metadata.name}{'\t'}{end}` | `127.0.0.1 127.0.0.2` +`''` | 解釈済みの文字列をクォートする | `{range .items[*]}{.metadata.name}{'\t'}{end}` | `127.0.0.1 127.0.0.2` `kubectl`とJSONPathの式を使った例: