“Kubectl jq Json” Ответ

Kubectl jq Json

# kubectl does not support regular expressions for JSONpath output
# The following command does not work
kubectl get pods -o jsonpath='{.items[?(@.metadata.name=~/^test$/)].metadata.name}'

# The following command achieves the desired result
kubectl get pods -o json | jq -r '.items[] | select(.metadata.name | test("test-")).spec.containers[].image'
DreamCoder

Kubectl jq Json

# kubectl does not support regular expressions for JSONpath output
# The following command does not work
kubectl get pods -o jsonpath='{.items[?(@.metadata.name=~/^test$/)].metadata.name}'

# The following command achieves the desired result
kubectl get pods -o json | jq -r '.items[] | select(.metadata.name | test("test-")).spec.containers[].image'
DreamCoder

Ответы похожие на “Kubectl jq Json”

Вопросы похожие на “Kubectl jq Json”

Больше похожих ответов на “Kubectl jq Json” по Shell/Bash

Смотреть популярные ответы по языку

Смотреть другие языки программирования