Merge pull request #42509 from Arhell/ja-path
[ja] Fix inconsistent command in the JSONPath Support pagepull/42808/head
commit
6df902a611
|
@ -107,6 +107,6 @@ JSONPathの正規表現はサポートされていません。正規表現を利
|
||||||
kubectl get pods -o jsonpath='{.items[?(@.metadata.name=~/^test$/)].metadata.name}'
|
kubectl get pods -o jsonpath='{.items[?(@.metadata.name=~/^test$/)].metadata.name}'
|
||||||
|
|
||||||
# 上のコマンドに期待される結果が欲しい場合、以下のコマンドを使うとよい
|
# 上のコマンドに期待される結果が欲しい場合、以下のコマンドを使うとよい
|
||||||
kubectl get pods -o json | jq -r '.items[] | select(.metadata.name | test("test-")).spec.containers[].image'
|
kubectl get pods -o json | jq -r '.items[] | select(.metadata.name | test("test-")).metadata.name'
|
||||||
```
|
```
|
||||||
{{< /note >}}
|
{{< /note >}}
|
||||||
|
|
Loading…
Reference in New Issue