Jsonpath 여러 필드 출력하기

1 개요[ | ]

jsonpath 여러 필드 출력하기
Bash
Copy
kubectl get pods -o jsonpath='{range .items[*]}{@.metadata.name}{" "}{@..containers.image}{" "}{@.status.phase}{" "}{@..startTime}{"\n"}{end}' | column -t

2 같이 보기[ | ]

3 참고[ | ]