“Kubectl JQ JSON Pod Nom” Réponses codées

Kubectl JQ JSON Pod Nom

# 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 Pod Nom

# 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

Réponses similaires à “Kubectl JQ JSON Pod Nom”

Questions similaires à “Kubectl JQ JSON Pod Nom”

Plus de réponses similaires à “Kubectl JQ JSON Pod Nom” dans Shell/Bash

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code