“Kubectl JQ JSON POD Nombre” Código de respuesta

Kubectl JQ JSON POD Nombre

# 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 Nombre

# 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

Respuestas similares a “Kubectl JQ JSON POD Nombre”

Preguntas similares a “Kubectl JQ JSON POD Nombre”

Más respuestas relacionadas con “Kubectl JQ JSON POD Nombre” en Shell/Bash

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código