File tree Expand file tree Collapse file tree 1 file changed +6
-7
lines changed
content/zh/docs/reference/kubectl Expand file tree Collapse file tree 1 file changed +6
-7
lines changed Original file line number Diff line number Diff line change @@ -3,17 +3,15 @@ title: JSONPath 支持
3
3
content_type : concept
4
4
---
5
5
<!--
6
- ---
7
6
title: JSONPath Support
8
7
content_type: concept
9
- ---
10
8
-->
11
9
12
10
<!-- overview -->
13
11
<!--
14
12
Kubectl supports JSONPath template.
15
13
-->
16
- Kubectl 支持 JSONPath 模板。
14
+ kubectl 支持 JSONPath 模板。
17
15
18
16
19
17
<!-- body -->
@@ -23,7 +21,8 @@ JSONPath template is composed of JSONPath expressions enclosed by curly braces {
23
21
Kubectl uses JSONPath expressions to filter on specific fields in the JSON object and format the output.
24
22
In addition to the original JSONPath template syntax, the following functions and syntax are valid:
25
23
-->
26
- JSONPath 模板由 {} 包起来的 JSONPath 表达式组成。Kubectl 使用 JSONPath 表达式来过滤 JSON 对象中的特定字段并格式化输出。除了原始的 JSONPath 模板语法,以下函数和语法也是有效的:
24
+ JSONPath 模板由 {} 包起来的 JSONPath 表达式组成。Kubectl 使用 JSONPath 表达式来过滤 JSON 对象中的特定字段并格式化输出。
25
+ 除了原始的 JSONPath 模板语法,以下函数和语法也是有效的:
27
26
28
27
<!--
29
28
1. Use double quotes to quote text inside JSONPath expressions.
@@ -140,8 +139,8 @@ kubectl get pods -o=jsonpath="{range .items[*]}{.metadata.name}{\"\t\"}{.status.
140
139
{{< /note >}}
141
140
-->
142
141
{{< note >}}
143
- 在 Windows 上,对于任何包含空格的 JSONPath 模板,您必须使用双引号 (不是上面 bash 所示的单引号)。
144
- 反过来,这意味着您必须在模板中的所有文字周围使用单引号或转义的双引号 。
142
+ 在 Windows 上,对于任何包含空格的 JSONPath 模板,你必须使用双引号 (不是上面 bash 所示的单引号)。
143
+ 反过来,这意味着你必须在模板中的所有文字周围使用单引号或转义的双引号 。
145
144
例如:
146
145
147
146
``` cmd
@@ -163,7 +162,7 @@ kubectl get pods -o json | jq -r '.items[] | select(.metadata.name | test("test-
163
162
```
164
163
-->
165
164
{{< note >}}
166
- 不支持 JSONPath 正则表达式。如需使用正则表达式进行匹配操作,您可以使用如 ` jq ` 之类的工具。
165
+ 不支持 JSONPath 正则表达式。如需使用正则表达式进行匹配操作,你可以使用如 ` jq ` 之类的工具。
167
166
168
167
``` shell
169
168
# kubectl 的 JSONpath 输出不支持正则表达式
You can’t perform that action at this time.
0 commit comments