쿠버네티스
deployment 로 배포된 pod 이름만 추출하기
알쓸개잡
2023. 7. 30. 22:13
kubectl get pods -n <namespace> -l app=<deployment name> \
--no-headers -o custom-column=":metadata.name"
example>
kubectl get pods -n test-namespace \
-l app=test-deployment --no-headers -o custom-columns=":metadata.name"