fix typo in JSON Path Symbols Table

This commit is contained in:
André Möller 2019-04-18 11:38:34 +02:00 committed by GitHub
parent 4142c2478e
commit 768e3ad480
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|
---