"Kubectl get nodes -o json"의 두 판 사이의 차이

(새 문서: ==개요== {{소문자}} ;kubectl get nodes -o json <syntaxhighlight lang='console'> $ kubectl get no node1 -ojson | jq '.items[].status.capacity' { "attachable-volumes-aws-ebs": "3...)
 
18번째 줄: 18번째 줄:
==같이 보기==
==같이 보기==
* [[kubectl get nodes -o yaml]]
* [[kubectl get nodes -o yaml]]
* [[kubectl describe node]]


==참고==
==참고==

2024년 2월 14일 (수) 18:01 판

1 개요

kubectl get nodes -o json
$ kubectl get no node1 -ojson | jq '.items[].status.capacity'
{
  "attachable-volumes-aws-ebs": "39",
  "cpu": "4",
  "ephemeral-storage": "130045936Ki",
  "hugepages-1Gi": "0",
  "hugepages-2Mi": "0",
  "memory": "16095312Ki",
  "nvidia.com/gpu": "1",
  "pods": "110"
}

2 같이 보기

3 참고

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}