Merge pull request #645 from anmoel/patch-1

fix typo in JSON Path Symbols Table
This commit is contained in:
Kubernetes Prow Robot 2019-04-22 09:09:45 -07:00 committed by GitHub
commit dcba5d3b94
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -57,7 +57,7 @@ Print the fields from the JSON Path
| [,] | union operator | {.items[*][metadata.name, status.capacity]} |127.0.0.1 127.0.0.2 map[cpu:4] map[cpu:8] |
| ?() | filter | {.users[?(@.name==“e2e”)].user.password} | secret |
| range, end | iterate list | {range .items[*]}[{.metadata.name}, {.status.capacity}] {end} | [127.0.0.1, map[cpu:4]] [127.0.0.2, map[cpu:8]] |
| “ | quote interpreted string |{range .items[*]}{.metadata.name}{\t} | {end} 127.0.0.1 127.0.0.2|
| “ | quote interpreted string | {range .items[*]}{.metadata.name}{\t} {end} | 127.0.0.1 127.0.0.2|
---